/* ═══════════════════════════════════════════════
   kinofilmebi.online - Main Stylesheet
   Cinematic dark theme
   ═══════════════════════════════════════════════ */

:root {
    --primary: #8A2BE2;
    --primary-light: #A855F7;
    --primary-dark: #6B21A8;
    --neon-blue: #6366F1;
    --dark-bg: #030014;
    --dark-card: #0F0A1E;
    --dark-surface: #140E26;
    --accent: #C084FC;
    --text: #e5e7eb;
    --text-muted: #9ca3af;
    --border: rgba(255,255,255,0.06);
    --glass: rgba(17,10,36,0.85);
    --radius: 1rem;
    --radius-sm: 0.65rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark-bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(3,0,20,0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(3,0,20,0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.logo i {
    color: var(--primary);
    font-size: 1.4rem;
}

.logo-accent { color: var(--primary); }

.nav-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.nav-link:hover { color: white; background: rgba(255,255,255,0.05); }
.nav-link.active { color: white; background: rgba(138,43,226,0.15); }
.nav-link i { margin-right: 0.3rem; }

.header-search {
    display: none;
    position: relative;
    flex: 1;
    max-width: 300px;
    margin-left: auto;
}

@media (min-width: 768px) { .header-search { display: block; } }

.header-search i {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.8rem;
}

.header-search input {
    width: 100%;
    padding: 0.5rem 0.75rem 0.5rem 2.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 2rem;
    color: white;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.2s;
}

.header-search input:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
}

.header-search input::placeholder { color: var(--text-muted); }

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: auto;
    border-radius: 0.5rem;
}

.mobile-menu-btn:hover { background: rgba(255,255,255,0.05); }

@media (min-width: 768px) { .mobile-menu-btn { display: none; } }

/* ─── Mobile Menu ─── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(3,0,20,0.98);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-link {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: all 0.2s;
}

.mobile-link:hover, .mobile-link.active {
    color: white;
    background: rgba(138,43,226,0.15);
}

.mobile-search {
    position: relative;
    margin-top: 0.5rem;
}

.mobile-search i {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.mobile-search input {
    width: 100%;
    padding: 0.65rem 0.85rem 0.65rem 2.4rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: white;
    font-size: 0.9rem;
    outline: none;
}

.mobile-search input::placeholder { color: var(--text-muted); }

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    transition: background-image 0.8s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, var(--dark-bg) 0%, var(--dark-bg) 5%, transparent 50%),
        linear-gradient(to right, rgba(3,0,20,0.9) 0%, transparent 70%),
        linear-gradient(to bottom, rgba(3,0,20,0.4) 0%, transparent 30%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem 1rem 3rem;
    width: 100%;
}

@media (min-width: 768px) { .hero-content { padding: 3rem 2rem 4rem; } }

.hero-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    max-width: 600px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.7rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.9);
}

.hero-tag i { font-size: 0.7rem; opacity: 0.7; }

.hero-tag--rating {
    background: rgba(251,191,36,0.15);
    color: #fbbf24;
}

.hero-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.65rem;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--neon-blue));
    color: white;
    box-shadow: 0 8px 24px rgba(138,43,226,0.3);
}

.hero-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(138,43,226,0.4);
}

.hero-btn--ghost {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
}

.hero-btn--ghost:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* Hero skeleton */
.hero-skeleton { padding: 0; }
.skeleton {
    background: linear-gradient(90deg, rgba(15,10,30,0.8) 0%, rgba(30,20,50,0.6) 50%, rgba(15,10,30,0.8) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: var(--radius);
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton-title { height: 2.5rem; width: 60%; margin-bottom: 0.75rem; }
.skeleton-text { height: 1rem; width: 40%; margin-bottom: 1rem; }
.skeleton-btn { height: 2.5rem; width: 120px; border-radius: 0.65rem; }

/* ─── Stats Bar ─── */
.stats-bar {
    position: relative;
    z-index: 20;
    margin-top: -1rem;
    padding: 0 1rem;
}

.stats-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 2rem;
    background: rgba(15,10,30,0.8);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    border: 1px solid var(--border);
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat i { color: var(--primary); font-size: 0.9rem; }
.stat span { color: white; font-weight: 700; }

/* ─── Content Sections ─── */
.content-section {
    margin: 2.5rem 0 1.5rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.section-icon {
    width: 42px;
    height: 42px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.section-icon--gold {
    background: linear-gradient(135deg, #F59E0B, #EF4444);
    box-shadow: 0 4px 16px rgba(245,158,11,0.3);
}

.section-icon--blue {
    background: linear-gradient(135deg, #6366F1, #4F46E5);
    box-shadow: 0 4px 16px rgba(99,102,241,0.3);
}

.section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
}

.section-subtitle {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(138,43,226,0.2), rgba(99,102,241,0.15), transparent);
    margin: 1.5rem 0 2.5rem;
}

/* ─── Movie Card ─── */
.movie-card {
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--dark-card);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(138,43,226,0.25);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 20px rgba(138,43,226,0.1);
}

.mc-poster-wrap {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
}

.mc-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.movie-card:hover .mc-poster { transform: scale(1.05); }

.mc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.movie-card:hover .mc-overlay { opacity: 1; }

.mc-rating {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.5rem;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    border-radius: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fbbf24;
}

.mc-rating i { font-size: 0.6rem; }

.mc-year-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.15rem 0.45rem;
    background: rgba(138,43,226,0.8);
    border-radius: 0.3rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: white;
}

.mc-serial-badge {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    padding: 0.2rem 0.5rem;
    background: rgba(99,102,241,0.85);
    border-radius: 0.3rem;
    font-size: 0.6rem;
    font-weight: 600;
    color: white;
}

.mc-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(138,43,226,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    opacity: 0;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.movie-card:hover .mc-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.mc-info {
    padding: 0.75rem;
}

.mc-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.25rem;
}

.mc-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.mc-genre {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Swiper slide cards */
.swiper .swiper-slide { width: auto; }

.swiper .movie-card {
    width: 100%;
}

@media (min-width: 768px) { .swiper .movie-card { width: 100%; } }

/* ─── Category Bar (Genre Pills) ─── */
.category-bar {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    scrollbar-width: none;
}

.category-bar::-webkit-scrollbar { display: none; }

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(15,10,30,0.6);
    border: 1px solid var(--border);
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cat-pill:hover {
    background: rgba(138,43,226,0.08);
    border-color: rgba(138,43,226,0.2);
    color: rgba(255,255,255,0.85);
}

.cat-pill.active {
    background: linear-gradient(135deg, rgba(138,43,226,0.2), rgba(99,102,241,0.15));
    border-color: rgba(138,43,226,0.35);
    color: white;
    box-shadow: 0 0 16px rgba(138,43,226,0.15);
}

.cat-count {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border-radius: 1rem;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.4);
}

.cat-pill.active .cat-count {
    background: rgba(138,43,226,0.3);
    color: rgba(255,255,255,0.8);
}

/* ─── Filter Bar ─── */
.filter-bar { margin-bottom: 1.5rem; }

.filter-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group { flex: 1; min-width: 160px; }
.filter-group--search { flex: 1.5; min-width: 200px; }

.filter-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.filter-select {
    width: 100%;
    padding: 0.6rem 2.5rem 0.6rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    background-color: rgba(15,10,30,0.6);
    border: 1px solid var(--border);
    color: white;
    outline: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%23FFFFFF"><path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd" /></svg>');
    background-position: right 0.6rem center;
    background-repeat: no-repeat;
    background-size: 1.2em;
    transition: all 0.2s;
}

.filter-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(138,43,226,0.12);
}

.search-wrap { position: relative; }

.search-wrap i {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.82rem;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 0.6rem 0.85rem 0.6rem 2.4rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    background: rgba(15,10,30,0.6);
    border: 1px solid var(--border);
    color: white;
    outline: none;
    transition: all 0.2s;
}

.search-input::placeholder { color: var(--text-muted); }

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(138,43,226,0.12);
    background: rgba(15,10,30,0.8);
}

/* ─── Movie Grid ─── */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 480px) { .movie-grid { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; } }
@media (min-width: 768px) { .movie-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .movie-grid { grid-template-columns: repeat(5, 1fr); gap: 1.5rem; } }
@media (min-width: 1280px) { .movie-grid { grid-template-columns: repeat(6, 1fr); gap: 1.5rem; } }

/* ─── Pagination ─── */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    padding: 2.5rem 0;
    flex-wrap: wrap;
}

.page-btn {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    border-radius: 0.5rem;
    background: rgba(15,10,30,0.6);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.page-btn:hover {
    border-color: var(--primary);
    color: white;
    background: rgba(138,43,226,0.1);
}

.page-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--neon-blue));
    border-color: transparent;
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(138,43,226,0.3);
}

.page-dots {
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 0 0.25rem;
}

/* ─── Footer ─── */
.site-footer {
    margin-top: 4rem;
    border-top: 1px solid var(--border);
    background: rgba(3,0,20,0.95);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand .logo { margin-bottom: 1rem; }

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.3rem 0;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--primary-light); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.5rem 1rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─── Back Button ─── */
.back-btn {
    position: fixed;
    top: 80px;
    left: 1rem;
    z-index: 100;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .hero { min-height: 380px; }
    .hero-content { padding: 2rem 1rem 1.5rem; }
    .stats-inner { gap: 1rem; padding: 0.75rem 1rem; }
    .stat { font-size: 0.78rem; }
    .filter-row { flex-direction: column; gap: 0.5rem; }
    .filter-group { min-width: 100%; }
}

@media (max-width: 480px) {
    .hero { min-height: 320px; }
    .hero-desc { -webkit-line-clamp: 2; }
    .hero-actions { flex-direction: column; }
    .hero-btn { justify-content: center; }
}

/* ─── Loading State ─── */
.loading-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ─── No Results ─── */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.no-results h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.5rem;
}

.no-results p { font-size: 0.9rem; }

/* ═══════════════════════════════════════════════
   Additional UI Components
   ═══════════════════════════════════════════════ */

/* ─── Scroll to Top ─── */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--neon-blue));
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(139,92,246,0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139,92,246,0.6);
}

/* ─── Swiper Navigation Arrows ─── */
.swiper-button-prev,
.swiper-button-next {
    color: white !important;
    background: rgba(0,0,0,0.5);
    width: 36px !important;
    height: 36px !important;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 14px !important;
    font-weight: 700;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--primary);
    box-shadow: 0 4px 15px rgba(139,92,246,0.4);
}

/* ─── Swiper Slide Sizing ─── */
.content-section .swiper-slide {
    width: auto;
}

.content-section .swiper-slide .movie-card {
    width: 100%;
}

/* ─── Section Header ─── */
.section-header .section-title {
    margin-bottom: 0;
}

.section-header .section-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* ─── Reveal Animation ─── */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.23,1,0.32,1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
