.page { display: none; width: 100%; }
.page.active { display: block; animation: fadeIn 0.4s ease-out; }

/* ГЛАВНЫЙ МИКС (БАННЕР) */
.hero-mix { 
    background: linear-gradient(-45deg, #ffcc00, #ff6600, #ff0080, #7928ca); 
    background-size: 400% 400%; 
    height: 200px; 
    border-radius: 24px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    cursor: pointer; 
    animation: gradientBG 15s ease infinite; 
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}



/* ПОИСКОВЫЙ ОВЕРЛЕЙ */
.search-overlay { 
    position: absolute; 
    top: 0; left: 0; right: 0; bottom: 0; 
    background: var(--bg-main); 
    z-index: 1001; 
    padding: 40px; 
    overflow-y: auto; 
    display: none; 
}

/* АКТИВНЫЙ ТРЕК В ТАБЛИЦЕ */
tr.track-active {
    background: rgba(255, 204, 0, 0.1) !important;
    border-left: 4px solid var(--accent);
}

tr.track-active b { color: var(--accent); }

/* ХОРУС АРТИСТОВ (СКРОЛЛ) */
.artist-scroll { 
    display: flex; 
    gap: 20px; 
    overflow-x: auto; 
    padding: 10px 0 20px; 
    scrollbar-width: none; 
}
.artist-scroll::-webkit-scrollbar { display: none; }


/* ГЛАВНЫЙ МИКС (БАННЕР) */
.hero-mix { 
    background: linear-gradient(-45deg, #ffcc00, #9900ff, #ffcc00, #9900ff); 
    background-size: 300% 300%; 
    height: 200px; 
    border-radius: 24px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    cursor: pointer; 
    animation: gradientShift 8s ease infinite; 
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Анимация для градиента */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Эффект при наведении - ускоряем анимацию */
.hero-mix:hover {
    animation: gradientShift 2s ease infinite;
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(153, 0, 255, 0.4);
}

/* Эффект при движении мыши - добавляем блик */
.hero-mix::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(255, 255, 255, 0.4) 0%, 
                rgba(255, 204, 0, 0.2) 30%,
                transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.hero-mix:hover::before {
    opacity: 1;
}

/* Текст внутри кнопки */
.hero-mix h1 {
    color: white;
    font-weight: 900;
    font-size: 40px;
    text-shadow: 0 2px 10px rgba(153, 0, 255, 0.5), 0 0 20px rgba(255, 204, 0, 0.5);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.hero-mix:hover h1 {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.8), 0 0 40px rgba(153, 0, 255, 0.8);
}

/* Активное состояние (при клике) */
.hero-mix:active {
    transform: scale(0.98);
    animation: gradientShift 0.5s ease infinite;
}

/* Для мобилок */
@media (max-width: 768px) {
    .hero-mix {
        height: 120px;
    }
    
    .hero-mix h1 {
        font-size: 20px;
    }
}