/* === ЛОГОТИП И ДАТА СТАРТА (ГОРИЗОНТАЛЬНО, ЛОГОТИП СЛЕВА) === */
.mp-logo-section {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Расстояние между логотипом и датой */
    margin-bottom: 5px !important;
    padding: 0;
}

/* Логотип - идет ПЕРВЫМ (слева) */
.mp-logo-wrap {
    order: 1; 
    width: 280px;
    max-width: 100%;
    display: block;
}

.mp-logo-img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mp-logo-img:hover {
    transform: scale(1.05);
}

/* Дата старта - идет ВТОРОЙ (справа) */
.mp-start-date {
    order: 2; 
    margin-top: 0;
    padding: 10px 24px;
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 170, 51, 0.15), rgba(180, 154, 136, 0.15));
    border: 2px solid #ffaa33;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    animation: mp-pulse-glow 2s ease-in-out infinite;
}

/* Блик, проходящий по блоку */
.mp-start-date::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
    animation: mp-shine 3s linear infinite;
}

.mp-start-text {
    font-family: "Tahoma", sans-serif;
    font-size: 17px;
    font-weight: bold;
    color: #ffaa33;
    text-shadow: 0 0 10px rgba(255, 170, 51, 0.5);
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.mp-start-date .mp-highlight {
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    font-size: 19px;
}

/* Анимация пульсации и свечения */
@keyframes mp-pulse-glow {
    0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 170, 51, 0.5), 0 0 20px rgba(255, 170, 51, 0.3); }
    50% { transform: scale(1.03); box-shadow: 0 0 20px rgba(255, 170, 51, 0.8), 0 0 40px rgba(255, 170, 51, 0.5), 0 0 60px rgba(255, 170, 51, 0.3); }
}

/* Анимация блика */
@keyframes mp-shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Адаптив для мобильных - на маленьких экранах возвращаем вертикальное расположение */
@media (max-width: 768px) {
    .mp-logo-section {
        flex-direction: column;
        gap: 10px;
    }
    
    .mp-start-date {
        order: 2; /* На мобильных дата снизу */
        padding: 8px 16px;
    }
    
    .mp-logo-wrap {
        order: 1; /* На мобильных логотип сверху */
        width: 200px;
    }
    
    .mp-start-text { font-size: 14px; }
    .mp-start-date .mp-highlight { font-size: 16px; }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .mp-start-text { font-size: 12px; }
    .mp-start-date .mp-highlight { font-size: 14px; }
    .mp-start-date { padding: 6px 12px; }
}