/* Общий стиль страницы */
body {
    font-family: 'Rubik', sans-serif;
    background: #1c1c1e;
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

body, html {
    overflow-x: hidden;
}

/* Глобальные стили для ссылок */
a {
    color: white;
    text-decoration: underline;
}

a:hover {
    opacity: 0.8;
}
/* Контейнер */
.container {
    padding: 1.5rem;
    max-width: 1200px; /* больше, если нужно */
    margin: auto;
    overflow-x: hidden; /* ⛔ предотвращает горизонтальный скролл */
    padding-top: 3rem;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
        padding-top: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.75rem;
        padding-top: 1.5rem;
    }
}

/* Шапка */
.modern-header {
    position: relative;
    background: linear-gradient(135deg, #0f0f10, #1c1c1e);
    padding: 1rem 1.5rem 3.5rem; /* extra bottom for overlap */
    border-bottom: 1px solid #222;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 36px;
    width: 36px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    padding-left: 8px;
}

.logo-text .dot {
    font-weight: normal;
}

.nav-buttons {
    display: flex;
    gap: 0.75rem;
}

.nav-button {
    background: #222;
    color: #66aaff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 500;
    transition: background 0.2s;
}

.nav-button:hover {
    background: #333;
}

/* Обёртка кнопки с выпадающим меню */
.nav-button.dropdown {
    position: relative;
}

/* Кнопка-триггер */
.dropdown-toggle {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
    padding: 0.6rem 1rem;
}

/* Меню — скрыто по умолчанию */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1f1f21;
    border: 1px solid #333;
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    display: none;
    flex-direction: column;
    min-width: 160px;
    z-index: 10;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

/* Пункты меню */
.dropdown-menu a {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
}

.dropdown-menu a:hover {
    background: #2b2b2e;
}

/* Показываем меню при наведении */
.nav-button.dropdown:hover .dropdown-menu,
.nav-button.dropdown:focus-within .dropdown-menu {
    display: flex;
}

/* Унифицируем кнопки в хедере */
.nav-buttons a,
.nav-buttons button {
    background: none;
    border: none;
    font: inherit;
    color: inherit;
    cursor: pointer;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.nav-buttons a:hover,
.nav-buttons button:hover {
    background: #2b2b2e;
}

/* Широкий поиск, вылезает из шапки */
.search-bar-wide {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;

    display: flex;
    background: white;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.search-bar-wide input[type="text"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    font-size: 1rem;
    outline: none;
}

.search-bar-wide button {
    background: #6e36ff;
    color: white;
    border: none;
    padding: 0 1.2rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-bar-wide button:hover {
    background: #5930d4;
}

/* Адаптив для шапки */
@media (max-width: 768px) {
    .modern-header {
        padding: 0.75rem 1rem 3rem;
        background: linear-gradient(135deg, #0a0a0b, #1c1c1e); /* Явное изменение для теста */
    }
    
    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .logo img {
        height: 32px;
        width: 32px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .nav-buttons {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        gap: 0.5rem;
    }
    
    .nav-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .search-bar-wide {
        width: 100%;
        max-width: 100%;
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 1rem;
        order: 2;
    }
    
    .dropdown-menu {
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 1rem 1rem 0 0;
        max-height: 50vh;
        overflow-y: auto;
        display: none;
        z-index: 1000;
        background: #1f1f21;
        border: 1px solid #333;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
        padding: 1rem 0;
    }
    
    .dropdown-menu.active {
        display: flex;
        flex-direction: column;
        animation: slideUp 0.3s ease-out;
    }
    
    .dropdown-menu a {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        border-bottom: 1px solid #333;
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    .nav-button.dropdown.active {
        background: #2b2b2e;
    }
    
    /* Оверлей для выпадающего меню */
    .dropdown-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
    }
    
    .dropdown-overlay.active {
        display: block;
        animation: fadeIn 0.3s ease-out;
    }
    
    /* Анимации */
    @keyframes slideUp {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
}

@media (max-width: 480px) {
    .modern-header {
        padding: 0.5rem 0.75rem 2.5rem;
    }
    
    .header-content {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .logo {
        justify-content: center;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .nav-buttons {
        justify-content: space-between;
        gap: 0.25rem;
        flex-wrap: wrap;
    }
    
    .nav-button {
        flex: 1;
        text-align: center;
        justify-content: center;
        padding: 0.35rem 0.5rem;
        font-size: 0.85rem;
        white-space: nowrap;
        min-width: 0; /* Позволяет сжиматься */
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav-button i {
        font-size: 0.8rem;
    }
    
    .search-bar-wide {
        margin-top: 0.75rem;
    }
    
    .search-bar-wide input[type="text"] {
        padding: 0.6rem 0.9rem;
        font-size: 0.9rem;
    }
    
    .search-bar-wide button {
        padding: 0 1rem;
    }
}

@media (max-width: 375px) {
    .modern-header {
        padding: 0.4rem 0.5rem 2.2rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .nav-buttons {
        gap: 0.15rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-button {
        font-size: 0.75rem;
        padding: 0.3rem 0.4rem;
        flex: 0 1 auto; /* Не растягивается, но может сжиматься */
        min-width: 30%; /* Минимальная ширина */
        margin: 0.1rem;
    }
    
    .nav-button i {
        font-size: 0.7rem;
        margin-right: 0.1rem;
    }
    
    .logo-text .dot {
        display: none;
    }
    
    /* Уменьшаем отступы у поисковой строки */
    .search-bar-wide {
        margin-top: 0.5rem;
    }
    
    .search-bar-wide input[type="text"] {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .search-bar-wide button {
        padding: 0 0.8rem;
    }
}

@media (max-width: 360px) {
    .nav-button {
        font-size: 0.7rem;
        padding: 0.25rem 0.3rem;
    }
    
    .nav-button i {
        display: none;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
}

/* Категории */
.app-promo {
    position: relative;
    padding: 4rem 1rem;
    background: linear-gradient(to top, #0f0f10, transparent);
    text-align: center;
    overflow: hidden;
}

.app-promo h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
}

.chip-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.chip-interactive {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    background: #222;
    border-radius: 22px;
    color: white;
    font-weight: 500;
    min-width: 100px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.chip-interactive.active {
    background: #2a2a2d;
    transform: scale(1.05);
    z-index: 1;
}

.chip-interactive:hover {
    box-shadow: 0 2px 10px rgba(255,255,255,0.1);
    transform: scale(1.05);
}

.chip-interactive:not(.active) .cta-popup {
    display: none;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.9);
}
.chip-interactive.active .cta-popup {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}


.chip-interactive.active .cta-popup {
    opacity: 1;
    max-height: 200px;
}



.cta-text {
    font-size: 0.85rem;
    color: #ddd;
    line-height: 1.3;
    padding-bottom: 15px;
}

.cta-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-buttons a {
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: bold;
}

.cta-buttons .google {
    background: #3bcc5f;
    color: #fff;
}

.cta-buttons .apple {
    background: #007aff;
    color: #fff;
}


.chip-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.3rem;
}

.chip-title {
    font-size: 0.9rem;
    white-space: nowrap;
}

.chip-cta {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
    text-align: center;
}

@media (hover: none) and (pointer: coarse) {
    .cta-popup {
        top: 10%;
        left: 5%;
        right: 5%;
        width: auto;
        max-width: none;
        display: none;
        font-size: 1rem;
    }

    .chip-interactive.active .cta-popup {
        display: block;
    }
}

/* Баннер сообщества Telegram */
.telegram-community-banner {
    background: linear-gradient(135deg, #1c1c1e 0%, #2a2a2d 50%, #1c1c1e 100%);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 1000px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.telegram-community-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0088cc, #00b894, #0088cc);
    z-index: 1;
}

.telegram-community-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.telegram-community-banner-icon {
    flex: 0 0 auto;
}

.telegram-community-banner-icon i {
    font-size: 4rem;
    color: #0088cc;
    filter: drop-shadow(0 0 10px rgba(0, 136, 204, 0.5));
}

.telegram-community-banner-text {
    flex: 1;
    text-align: left;
}

.telegram-community-banner-text h3 {
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    color: #fff;
}

.telegram-community-banner-text p {
    font-size: 1.1rem;
    color: #aaa;
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

.telegram-community-banner-button {
    flex: 0 0 auto;
}

.telegram-community-banner-button a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #0088cc, #00b894);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

.telegram-community-banner-button a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.5);
    background: linear-gradient(135deg, #00b894, #0088cc);
}

.telegram-community-banner-button a i {
    font-size: 1.3rem;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .telegram-community-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .telegram-community-banner-text {
        text-align: center;
    }
    
    .telegram-community-banner-text h3 {
        font-size: 1.5rem;
    }
    
    .telegram-community-banner-text p {
        font-size: 1rem;
    }
    
    .telegram-community-banner-button a {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
}

/* Стили для компактного промо с фильтрами по жанрам */
.compact-promo-text {
    font-size: 1.1rem;
    color: #aaa;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.genre-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
}

.genre-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #222;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    min-width: 100px;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid #333;
}

.genre-highlight:hover {
    transform: translateY(-5px);
    background: #2a2a2d;
    border-color: #444;
}

.genre-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.genre-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
}

/* Адаптивность для компактного промо */
@media (max-width: 768px) {
    .genre-highlights {
        gap: 0.75rem;
    }
    
    .genre-highlight {
        padding: 0.75rem 1rem;
        min-width: 80px;
    }
    
    .genre-emoji {
        font-size: 2rem;
    }
    
    .genre-name {
        font-size: 0.8rem;
    }
}

/* Стили для красивых кнопок магазинов в стиле сайта */
.store-buttons-official {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    min-width: 220px;
    justify-content: center;
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.store-btn i {
    font-size: 1.5rem;
}

/* Кнопка Google Play */
.store-btn-google {
    background: linear-gradient(135deg, #3bcc5f, #007aff);
    color: white;
}

.store-btn-google:hover {
    background: linear-gradient(135deg, #007aff, #3bcc5f);
}

/* Кнопка App Store */
.store-btn-apple {
    background: linear-gradient(135deg, #6e36ff, #66aaff);
    color: white;
}

.store-btn-apple:hover {
    background: linear-gradient(135deg, #66aaff, #6e36ff);
}

/* Адаптивность для кнопок магазинов */
@media (max-width: 768px) {
    .store-buttons-official {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .store-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .store-buttons-official {
        gap: 0.75rem;
    }
    
    .store-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        min-width: auto;
    }
    
    .store-btn i {
        font-size: 1.3rem;
    }
}

@media (max-width: 375px) {
    .store-btn {
        padding: 0.8rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .store-btn i {
        font-size: 1.2rem;
    }
}

/* ===== Анимация для категорий в футере ===== */
.genre-highlights {
    position: relative;
}

/* Анимация появления элементов */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(110, 54, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(110, 54, 255, 0.6);
    }
}

/* Задержки для последовательного появления */
.genre-highlight {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.genre-highlight:nth-child(1) { animation-delay: 0.1s; }
.genre-highlight:nth-child(2) { animation-delay: 0.2s; }
.genre-highlight:nth-child(3) { animation-delay: 0.3s; }
.genre-highlight:nth-child(4) { animation-delay: 0.4s; }
.genre-highlight:nth-child(5) { animation-delay: 0.5s; }
.genre-highlight:nth-child(6) { animation-delay: 0.6s; }

/* Волновая анимация при наведении на контейнер */
.genre-highlights:hover .genre-highlight {
    transition: transform 0.3s ease, background 0.3s ease;
}

.genre-highlights:hover .genre-highlight:nth-child(1) { 
    transition-delay: 0s; 
    transform: translateY(-8px);
}
.genre-highlights:hover .genre-highlight:nth-child(2) { 
    transition-delay: 0.05s; 
    transform: translateY(-8px);
}
.genre-highlights:hover .genre-highlight:nth-child(3) { 
    transition-delay: 0.1s; 
    transform: translateY(-8px);
}
.genre-highlights:hover .genre-highlight:nth-child(4) { 
    transition-delay: 0.15s; 
    transform: translateY(-8px);
}
.genre-highlights:hover .genre-highlight:nth-child(5) { 
    transition-delay: 0.2s; 
    transform: translateY(-8px);
}
.genre-highlights:hover .genre-highlight:nth-child(6) { 
    transition-delay: 0.25s; 
    transform: translateY(-8px);
}

/* Пульсирующее свечение для эмодзи */
@keyframes emojiPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.genre-highlight:hover .genre-emoji {
    animation: emojiPulse 0.8s ease infinite;
}

/* Параллакс-эффект при скролле */
.genre-highlights {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.genre-highlight {
    transition: transform 0.5s ease-out;
}

/* Легкое свечение при наведении */
.genre-highlight:hover {
    background: linear-gradient(135deg, #2a2a2d, #333);
    border-color: #6e36ff;
    animation: pulseGlow 2s infinite;
    z-index: 2;
}

/* Анимация для текста при наведении */
.genre-highlight:hover .genre-name {
    color: #66aaff;
    transform: scale(1.05);
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Адаптивность для анимаций */
@media (max-width: 768px) {
    .genre-highlight {
        animation-duration: 0.4s;
    }
    
    .genre-highlights:hover .genre-highlight {
        transform: translateY(-5px);
    }
}

/* Плавное появление при загрузке */
@keyframes containerAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.app-promo {
    animation: containerAppear 0.8s ease-out;
}

/* Анимация появления для динамических категорий */
@keyframes slideInFade {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.genre-highlight.animate-in {
    animation: slideInFade 0.5s ease forwards;
}

/* Кнопки навигации для категорий */
.genre-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(110, 54, 255, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.genre-highlights:hover ~ .genre-nav-btn,
.genre-nav-btn:hover {
    opacity: 1;
}

.genre-nav-prev {
    left: -20px;
}

.genre-nav-next {
    right: -20px;
}

.genre-nav-btn:hover {
    background: rgba(110, 54, 255, 0.9);
    transform: translateY(-50%) scale(1.1);
}

/* Индикатор прогресса ротации */
.genre-rotation-progress {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.genre-progress-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: background 0.3s ease;
}

.genre-progress-dot.active {
    background: #6e36ff;
}

/* Адаптивность для кнопок навигации */
@media (max-width: 768px) {
    .genre-nav-btn {
        display: none;
    }
    
    .genre-rotation-progress {
        bottom: -15px;
    }
}

/* Эффект бесконечной ленты (альтернативный вариант) */
@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.genre-highlights.infinite-scroll {
    display: flex;
    width: max-content;
    animation: infiniteScroll 30s linear infinite;
}

.genre-highlights.infinite-scroll:hover {
    animation-play-state: paused;
}

/* Поддержка Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .genre-highlight,
    .genre-nav-btn,
    .app-promo {
        animation-duration: 0.01s !important;
        transition-duration: 0.01s !important;
    }
    
    .genre-highlights.infinite-scroll {
        animation: none;
    }
}

/* Отключение статических анимаций при динамической загрузке */
.genre-highlights.dynamic-loaded .genre-highlight {
    animation: none !important;
    opacity: 1 !important;
}

.genre-highlights.dynamic-loaded .genre-highlight.animate-in {
    animation: slideInFade 0.5s ease forwards !important;
}
