/* ===== STYLE UNTUK KONTEN UTAMA ===== */
/* Tanpa mengubah style header yang sudah ada */

/* ===== VARIABLES ===== */
:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --primary-glow: rgba(59, 130, 246, 0.3);
    --bg-dark: #0a0c14;
    --bg-card: #141a24;
    --bg-card-hover: #1a1f2b;
    --border-color: #2a313e;
    --border-light: #232b38;
    --text-light: #e5e7eb;
    --text-gray: #9ca3af;
    --text-muted: #6b7280;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --transition-fast: all 0.2s ease;
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0a0c14 0%, #0e1119 100%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    padding-top: 70px;
    min-height: 100vh;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ===== HIDE UNWANTED ELEMENTS ===== */
.iklan, .home .rvad h1, #sidebar, .slider-genres, #footer, #rvod, .rvad, #switch, .mirrorstream, .iklanpost, .tambahan, .likekami {
    display: none !important;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

/* ===== JUDUL HALAMAN ===== */
section.col-md-12 > h1,
section.col-md-12 > h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 1rem 0 1.5rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

section.col-md-12 > h1::after,
section.col-md-12 > h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 3px;
}

/* ===== GENRE LIST ===== */
.genres {
    list-style: none;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1rem 0 2rem;
    backdrop-filter: blur(4px);
}

.genres a {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: #1f2937;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-fast);
    border: 1px solid #2d3748;
}

.genres a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--primary-glow);
}

/* ===== GRID SYSTEM ===== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

/* Desktop: 4 columns (25%) */
.col-md-2,
.col-md-4 {
    padding: 0 12px;
    margin-bottom: 24px;
}

.col-md-2 {
    width: 25%; /* 4 columns */
}

.col-md-4 {
    width: 33.333%;
}

/* ===== CARD CONTAINER - HEIGHT UNIFORM ===== */
.list-movie,
.col-anime {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
    min-height: 480px;
    border: 1px solid var(--border-light);
    position: relative;
    display: flex;
    flex-direction: column;
}

.list-movie:hover,
.col-anime:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md), 0 0 0 1px var(--primary);
    border-color: transparent;
}

/* Thumbnail Container - Fixed Height */
.detpost,
.col-anime-cover {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #1a1f2b, #0f1219);
    flex-shrink: 0;
}

.thumb,
.col-anime-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.list-movie:hover .thumb img,
.col-anime:hover .col-anime-cover img {
    transform: scale(1.08);
}

/* Title Overlay */
.thumb h2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    color: white !important;
    padding: 2rem 0.8rem 0.8rem !important;
    margin: 0 !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
}
.col-md-4 {
    float: left;
}
/* Col Anime Title */
.col-anime-title {
    padding: 0.8rem 0.8rem 0.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
    flex-shrink: 0;
    height: 70px;
}

.col-anime-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.col-anime-title a:hover {
    color: var(--primary);
}

/* Badges */
.epz, .epztipe, .newnime {
    position: absolute;
    z-index: 2;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.epz {
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    border: 1px solid var(--primary);
}

.epztipe {
    top: 10px;
    right: 10px;
    background: rgba(59, 130, 246, 0.9);
    color: white;
}

.newnime {
    bottom: 50px;
    right: 10px;
    background: var(--danger);
    color: white;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* Play Button Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
    cursor: pointer;
}

.overlay::before {
    content: '▶';
    font-size: 1.5rem;
    color: white;
    background: rgba(59, 130, 246, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: var(--transition);
}

.list-movie:hover .overlay,
.col-anime:hover .overlay {
    opacity: 1;
}

.list-movie:hover .overlay::before,
.col-anime:hover .overlay::before {
    transform: scale(1);
}

/* Anime Info - Flex Row */
.col-anime-studio,
.col-anime-eps,
.col-anime-rating,
.col-anime-date {
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    color: var(--text-gray);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    margin: 0.1rem;
}
.col-anime-date {
    margin: 10px;
}

.info-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.5rem 0.8rem;
    border-bottom: 1px solid var(--border-light);
    flex-shrink: 0;
}

.col-anime-studio::before { content: '🏢'; font-size: 0.65rem; }
.col-anime-eps::before { content: '📺'; font-size: 0.65rem; }
.col-anime-rating::before { content: '⭐'; font-size: 0.65rem; }
.col-anime-date::before { content: '📅'; font-size: 0.65rem; }



/* ===== DESKRIPSI SECTION - FIXED HEIGHT WITH SCROLL ===== */
.col-synopsis {
    padding: 0.8rem;
    display: block;
    height: 100px;
    width: 100%;
    overflow: overlay;
    font-size: smaller;
}

.synopsis-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.synopsis-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.synopsis-text {
    font-size: 0.75rem;
    color: var(--text-gray);
    line-height: 1.5;
    text-align: justify;
    overflow-y: auto;
    max-height: 120px;
    padding-right: 5px;
    flex: 1;
}

/* Custom scrollbar for description */
.synopsis-text::-webkit-scrollbar {
    width: 4px;
}

.synopsis-text::-webkit-scrollbar-track {
    background: var(--border-light);
    border-radius: 4px;
}

.synopsis-text::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.synopsis-text::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Read More Button */
.read-more-wrapper {
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    cursor: pointer;
    transition: var(--transition-fast);
    width: 100%;
    border-radius: 20px;
    background: rgba(59, 130, 246, 0.1);
}

.read-more-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary-light);
    gap: 10px;
}

.read-more-btn::after {
    content: '▼';
    font-size: 0.65rem;
    transition: transform var(--transition-fast);
}

.read-more-btn.expanded::after {
    transform: rotate(180deg);
}

/* ===== TRAILER BUTTON ===== */
.col-anime-trailer {
    padding: 0.8rem;
    text-align: center;
    margin-top: auto;
    flex-shrink: 0;
    border-top: 1px solid var(--border-light);
}

.col-anime-trailer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
}

.col-anime-trailer a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--primary-glow);
    gap: 12px;
}

.col-anime-trailer a::before {
    content: '▶';
    font-size: 0.7rem;
}

/* ===== PAGINATION ===== */
.pagination,
.pagipagi {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin: 3rem 0 2rem !important;
    flex-wrap: wrap !important;
}

.pagenavix {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.pagenavix .page-numbers,
.pagination a,
.pagination span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 40px !important;
    height: 40px !important;
    padding: 0 0.8rem !important;
    background: var(--bg-card) !important;
    color: var(--text-gray) !important;
    text-decoration: none !important;
    border-radius: var(--radius-md) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: var(--transition) !important;
    border: 1px solid var(--border-light) !important;
}

.pagenavix .page-numbers:hover,
.pagination a:hover {
    background: var(--primary) !important;
    color: white !important;
    border-color: var(--primary) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px var(--primary-glow) !important;
}

.pagenavix .current,
.pagination .current {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: white !important;
    border-color: var(--primary) !important;
    box-shadow: 0 4px 12px var(--primary-glow) !important;
}

.pagenavix .dots,
.pagination .dots {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    pointer-events: none;
}

/* ===== BREADCRUMB / NOTE ===== */
section.col-md-12 > center {
    display: block;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 0.5rem 0 2rem;
    padding: 0.6rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ===== CLEARFIX ===== */
.clear {
    clear: both;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

/* ===== RESPONSIVE DESIGN ===== */
/* Desktop Large (1200px+) - 4 columns */
@media (min-width: 1200px) {
    .col-md-2 {
        width: 25%; /* 4 columns */
    }
    .col-md-4 {
        width: 25%; /* 4 columns for genre pages */
    }
}

/* Desktop (992px - 1199px) - 4 columns */
@media (min-width: 992px) and (max-width: 1199px) {
    .col-md-2 {
        width: 25%; /* 4 columns */
    }
    .col-md-4 {
        width: 33.333%; /* 3 columns for genre pages */
    }
}

/* Tablet (768px - 991px) - 2-3 columns */
@media (min-width: 768px) and (max-width: 991px) {
    .col-md-2 {
        width: 33.333%; /* 3 columns */
    }
    .col-md-4 {
        width: 50%; /* 2 columns for genre pages */
    }
    
    .list-movie,
    .col-anime {
        min-height: 460px;
    }
}

/* Mobile Landscape (576px - 767px) - 2 columns */
@media (min-width: 576px) and (max-width: 767px) {
    .col-md-2,
    .col-md-4 {
        width: 50%; /* 2 columns */
        padding: 0 10px;
        margin-bottom: 20px;
    }
    
    .row {
        margin: 0 -10px;
    }
    
    .list-movie,
    .col-anime {
        min-height: 440px;
    }
}

/* Mobile Portrait (max 575px) - 1 column */
@media (max-width: 575px) {
    .col-md-2,
    .col-md-4 {
        width: 100%; /* 1 column */
        padding: 0 12px;
        margin-bottom: 20px;
    }
    
    .list-movie,
    .col-anime {
        min-height: auto;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .synopsis-text {
        max-height: 100px;
    }
}

/* Extra Small (max 480px) */
@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }
    
    section.col-md-12 > h1,
    section.col-md-12 > h2 {
        font-size: 1.5rem;
        display: block;
        text-align: center;
    }
    
    section.col-md-12 > h1::after,
    section.col-md-12 > h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
    }
    
    .genres {
        padding: 1rem;
        gap: 0.4rem;
    }
    
    .genres a {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .thumb h2 {
        font-size: 0.8rem !important;
    }
    
    .col-anime-title {
        font-size: 0.85rem !important;
    }
    
    .info-wrapper {
        gap: 0.2rem;
    }
    
    .col-anime-studio,
    .col-anime-eps,
    .col-anime-rating,
    .col-anime-date {
        font-size: 0.6rem;
        padding: 0.15rem 0.5rem;
    }
    
    .col-anime-genre a {
        font-size: 0.6rem;
        padding: 0.15rem 0.5rem;
    }
    
    .synopsis-text {
        font-size: 0.7rem;
        max-height: 90px;
    }
    
    .read-more-btn {
        font-size: 0.65rem;
    }
    
    .col-anime-trailer a {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Very Small (max 360px) */
@media (max-width: 360px) {
    .col-md-2,
    .col-md-4 {
        padding: 0 8px;
    }
    
    .thumb h2 {
        font-size: 0.7rem !important;
    }
    
    .col-anime-title {
        font-size: 0.75rem !important;
    }
    
    .synopsis-text {
        max-height: 80px;
    }
}

/* ===== SCROLLBAR KUSTOM ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #2d3748;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.list-movie,
.col-anime {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: calc(var(--item-index, 0) * 0.05s);
    opacity: 0;
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-glass {
    background: rgba(20, 26, 36, 0.8);
    backdrop-filter: blur(10px);
}

.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }




/* ===== GENRE TAGS - HORIZONTAL SCROLL ===== */
/* Untuk class .col-anime-genre yang sudah ada di HTML */

.col-anime-genre {
    padding: 0.5rem 0.8rem;
    display: block;
    overflow: overlay;
    scrollbar-width: thin;
    white-space: nowrap;
    max-width: 100%;
    min-height: 52px;
    align-items: center;
}
.list-movie, .col-anime {
    min-height: 793px;
}

/* Hide scrollbar for Chrome/Safari but still functional */
.col-anime-genre::-webkit-scrollbar {
    height: 4px;
}

.col-anime-genre::-webkit-scrollbar-track {
    background: var(--border-light);
    border-radius: 4px;
}

.col-anime-genre::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.col-anime-genre::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Style untuk link genre */
.col-anime-genre a {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    background: #1f2937;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 20px;
    transition: var(--transition-fast);
    flex-shrink: 0; /* Prevent shrinking */
    white-space: nowrap;
}

.col-anime-genre a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Indicator that there's more content to scroll */
.col-anime-genre::after {
    content: '';
    position: sticky;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(to right, transparent, var(--bg-card));
    pointer-events: none;
    flex-shrink: 0;
}

/* Optional: Add scroll hint for mobile */
@media (max-width: 768px) {
    .col-anime-genre {
        position: relative;
        cursor: grab;
        scroll-snap-type: x mandatory;
    }
    
    .col-anime-genre:active {
        cursor: grabbing;
    }
    
    .col-anime-genre a {
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    
    /* Add fade effect on edges for better UX */
    .col-anime-genre {
        mask-image: linear-gradient(to right, 
            transparent 0%,
            black 10%,
            black 90%,
            transparent 100%);
        -webkit-mask-image: linear-gradient(to right, 
            transparent 0%,
            black 10%,
            black 90%,
            transparent 100%);
    }
}

/* ===== GENRE SECTION DI DETAIL ANIME (info list) ===== */
/* Untuk genre tags di bagian info anime */

.genre-tags {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0.6rem;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 4px;
}

.genre-tags::-webkit-scrollbar {
    height: 4px;
}

.genre-tags::-webkit-scrollbar-track {
    background: var(--border-light);
    border-radius: 4px;
}

.genre-tags::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.genre-tag {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.genre-tag:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE UNTUK GENRE SCROLL ===== */
@media (max-width: 768px) {
    .col-anime-genre {
        gap: 0.4rem;
        padding: 0.4rem 0.6rem;
        min-height: 44px;
    }
    
    .col-anime-genre a {
        font-size: 0.65rem;
        padding: 0.25rem 0.7rem;
    }
    
    .genre-tags {
        gap: 0.4rem;
    }
    
    .genre-tag {
        padding: 0.3rem 0.8rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .container {
        margin: 0px!important;
        padding: 0px!important;
    }
    .col-anime-genre {
        gap: 0.3rem;
        padding: 0.3rem 0.5rem;
    }
    
    .col-anime-genre a {
        font-size: 0.6rem;
        padding: 0.2rem 0.6rem;
    }
    
    .genre-tag {
        padding: 0.25rem 0.7rem;
        font-size: 0.7rem;
    }
}

/* ===== SCROLL HINT ANIMATION (Opsional) ===== */
@keyframes scrollHint {
    0% {
        opacity: 0.5;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(20px);
    }
}

/* Add scroll hint only for mobile if needed */
@media (max-width: 768px) {

    .col-anime-genre.has-overflow::before {
        content: '→';
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--primary);
        font-size: 0.8rem;
        opacity: 0;
        pointer-events: none;
        z-index: 2;
        background: var(--bg-card);
        padding: 0 5px;
        border-radius: 20px;
        animation: scrollHint 1.5s ease-in-out infinite;
    }
    
    .col-anime-genre.has-overflow:hover::before {
        opacity: 0.7;
    }
}