﻿/* =============================================
   RESET & BASE
   ============================================= */

/* ----------------------------------------------
   CSS CUSTOM PROPERTIES
   ---------------------------------------------- */
:root {
    --font-primary: 'Sora', sans-serif;

    /* Colors */
    --color-dark: #0d0b13;
    --color-darkest: #0a0812;
    --color-blackest: #08070e;
    --color-body: #d0d0e0;
    --color-heading: #ffffff;
    --color-link: #c0c0d8;
    --color-primary: #7b4dff;
    --color-secondary: #a855f7;
    --color-accent: #ce99ff;
    --color-border: rgba(255,255,255,0.06);

    /* Gradients */
    --gradient-primary: linear-gradient(90deg, #7c5cff, #b45eff);
    --gradient-btn: linear-gradient(90deg, #7c5cff, #b45eff);
    --gradient-btn-hover: linear-gradient(90deg, #6a3cff, #a040f7);

    /* Transitions */
    --transition-default: all 0.3s ease;
    --transition-smooth: all 0.4s ease;
    --transition-slow: all 0.6s ease;

    /* Misc */
    --radius-small: 0.6rem;
    --shadow-primary: 0 0.4rem 2rem rgba(123, 77, 255, 0.3);
    }


html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.page-wrapper {
    position: relative;
    z-index: 1;
    overflow: clip;
}

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-body);
    background-color: var(--color-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--color-link);
    text-decoration: none;
    transition: var(--transition-default);
}

a:hover {
    color: var(--color-primary);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ----------------------------------------------
   TYPOGRAPHY
   ---------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--color-heading);
    font-weight: 700;
    line-height: 1.2;
}

.display-one {
    font-size: 7.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.theme-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----------------------------------------------
   PRELOADER
   ---------------------------------------------- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.loader-text {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.08em;
}

.loader-bar-wrap {
    width: 160px;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-primary), #b84dff);
    border-radius: 4px;
    animation: loaderBar 1.6s ease-in-out infinite;
}

@keyframes loaderBar {
    0%   { width: 0%;   margin-left: 0; }
    50%  { width: 100%; margin-left: 0; }
    100% { width: 0%;   margin-left: 100%; }
}

/* ----------------------------------------------
   MOVIE WALL BACKGROUND
   ---------------------------------------------- */
.movie-wall {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.wall-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.movie-wall__columns {
    display: flex;
    gap: 0.6rem;
    height: 100%;
    padding: 0 0.6rem;
}

.movie-wall__columns .column {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.movie-wall__columns .column .strip {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.movie-wall__columns .column .poster {
    width: 100%;
    border-radius: 0.4rem;
    opacity: 0.4;
    display: block;
    object-fit: cover;
    aspect-ratio: 2/3;
}

.movie-wall__columns .column .animate-up > .strip {
    animation: wall-scroll-up 20s linear infinite;
}

.movie-wall__columns .column .animate-down > .strip {
    animation: wall-scroll-down 20s linear infinite;
}

@keyframes wall-scroll-up {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes wall-scroll-down {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

.movie-wall .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(8,8,13,0.9) 0%,
        rgba(8,8,13,0.1) 35%,
        rgba(8,8,13,0.1) 65%,
        rgba(8,8,13,0.9) 100%
    );
    z-index: 2;
}

/* ----------------------------------------------
   HEADER
   ---------------------------------------------- */
.stream-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 1.2rem 2rem;
    transition: padding var(--transition-smooth),
                background-color var(--transition-smooth),
                box-shadow var(--transition-smooth),
                transform var(--transition-slow);
}

/* Glass pill */
.stream-header .header-pill {
    width: 100%;
    max-width: 112rem;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 999px;
    padding: 0.15rem 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: max-width var(--transition-smooth),
                border-radius var(--transition-smooth),
                padding var(--transition-smooth),
                background var(--transition-smooth),
                backdrop-filter var(--transition-smooth),
                -webkit-backdrop-filter var(--transition-smooth),
                border var(--transition-smooth);
}

.stream-header .header-pill .container {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
}

/* Shrunk — floating pill with logo only */
.stream-header.header-shrunk {
    position: fixed;
    padding: 0.8rem 2rem;
    background: transparent;
    box-shadow: none;
    justify-content: flex-start;
    animation: headerSticky 0.95s forwards;
}

.stream-header.header-shrunk .header-pill {
    width: auto;
    max-width: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0 1.6rem;
    box-shadow: 0 0.4rem 2rem rgba(0,0,0,0.25);
}

.stream-header.header-shrunk .header-pill .container {
    padding-left: 0;
    padding-right: 0;
}

.stream-header.header-shrunk .row {
    display: flex;
    justify-content: flex-start;
    --bs-gutter-x: 0;
}

.stream-header.header-shrunk .col-lg-8,
.stream-header.header-shrunk .col-lg-2.position-static {
    display: none !important;
}

.stream-header.header-shrunk .col-lg-2.col-md-6.col-6 {
    width: auto;
    flex: 0 0 auto;
    padding: 0;
}

.stream-header.header-shrunk .logo-text {
    font-size: 1.7rem;
    line-height: 3.6rem;
}

/* Expanded — full pill after clicking logo */
.stream-header.header-expanded {
    position: fixed;
    padding: 0.7rem 2rem;
    background: transparent;
    animation: headerSticky 0.95s forwards;
}

.stream-header.header-expanded .header-pill {
    max-width: 100%;
    border-radius: 999px;
    background: rgba(14, 17, 28, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 0.4rem 2rem rgba(0,0,0,0.4);
}

@keyframes headerSticky {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

.stream-header .row--0 > * {
    padding-left: 0;
    padding-right: 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-heading);
    line-height: 4.8rem;
    letter-spacing: -0.05rem;
    cursor: pointer;
}

/* Navigation */
.mainmenu-nav ul.mainmenu {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.mainmenu-nav ul.mainmenu li {
    position: relative;
}

.mainmenu-nav ul.mainmenu li a {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-link);
    position: relative;
    white-space: nowrap;
    transition: var(--transition-default);
}

.mainmenu-nav ul.mainmenu li a::after {
    content: '';
    position: absolute;
    bottom: 0.1rem;
    left: 1.2rem;
    right: 1.2rem;
    height: 0.2rem;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 0.2rem;
}

.mainmenu-nav ul.mainmenu li a:hover {
    color: var(--color-primary);
}

.mainmenu-nav ul.mainmenu li a:hover::after,
.mainmenu-nav ul.mainmenu li a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.mainmenu-nav ul.mainmenu li a[aria-current="page"] {
    color: var(--color-heading);
}

.mainmenu-nav ul.mainmenu li a i {
    font-size: 1.1rem;
    margin-right: 0.25rem;
    color: var(--color-link);
    transition: color 0.3s ease;
}

.mainmenu-nav ul.mainmenu li a:hover i,
.mainmenu-nav ul.mainmenu li a[aria-current="page"] i {
    color: var(--color-primary);
}

/* TV Shows icon improvement */
.mainmenu-nav ul.mainmenu li a[href="/tv/"] i {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 2px rgba(124,92,255,0.15));
}
.mainmenu-nav ul.mainmenu li a[href="/tv/"] {
    white-space: nowrap;
}

.mainmenu-nav ul.mainmenu li a span {
    font-size: 1.2rem;
    margin-left: 0.4rem;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.6rem;
}

.nav-surprise-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.2rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #7c5cff, #b45eff);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    line-height: 1.4;
}

.nav-surprise-btn:hover {
    background: linear-gradient(90deg, #6a3cff, #a040f7);
    color: #fff;
    transform: scale(1.05);
}

/* Hamburger */
.hamberger-button {
    background: transparent;
    border: none;
    color: var(--color-heading);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.4rem;
    line-height: 1;
    transition: var(--transition-default);
}

.hamberger-button:hover {
    color: var(--color-primary);
}

/* ----------------------------------------------
   POPUP MOBILE MENU
   ---------------------------------------------- */
.popup-mobile-menu {
    position: fixed;
    top: 0;
    left: -30rem;
    width: min(30rem, 85vw);
    height: 100%;
    z-index: 9999;
    background: var(--color-darkest);
    transition: left 0.5s ease-out;
}

.popup-mobile-menu.active {
    left: 0;
}

.popup-mobile-menu .inner-popup {
    height: 100%;
    padding: 3rem 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.popup-mobile-menu .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.popup-mobile-menu .header-top .logo .logo-text {
    font-size: 1.8rem;
    line-height: 1;
}

.popup-mobile-menu .close-button {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    background: var(--color-primary);
    border: none;
    color: var(--color-heading);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-default);
}

.popup-mobile-menu .close-button:hover {
    background: var(--color-accent);
    transform: rotate(90deg);
}

.popup-mobile-menu .content ul.mainmenu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.popup-mobile-menu .content ul.mainmenu li a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.9rem 1rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-link);
    transition: var(--transition-default);
}

.popup-mobile-menu .content ul.mainmenu li a:hover {
    color: var(--color-primary);
    padding-left: 1.3rem;
}

.popup-mobile-menu .content ul.mainmenu li a[aria-current="page"] {
    color: var(--color-heading);
    background: rgba(123, 77, 255, 0.08);
    border-left: 3px solid var(--color-primary);
    padding-left: calc(1rem - 3px);
    position: relative;
}

.popup-mobile-menu .content ul.mainmenu li a[aria-current="page"] i {
    color: var(--color-primary);
}

.popup-mobile-menu .content ul.mainmenu li a i {
    width: 1.8rem;
    text-align: center;
    color: var(--color-link);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.popup-mobile-menu .content ul.mainmenu li a:hover i {
    color: var(--color-primary);
}

.popup-mobile-menu .content ul.mainmenu li a[href="/tv/"] i {
    font-size: 1.45rem;
    filter: drop-shadow(0 0 2px rgba(124,92,255,0.15));
}

/* ----------------------------------------------
   HERO / SLIDER AREA
   ---------------------------------------------- */
.slider-area {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    z-index: 1;
    padding: 15rem 0 12rem;
    overflow: hidden;
    background: #0d0b13;
}

.slider-area::before,
.slider-area::after {
    content: '';
    position: absolute;
    top: 0;
    width: 35rem;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.slider-area::before {
    left: 0;
    background: radial-gradient(ellipse at left center, rgba(123, 77, 255, 0.12) 0%, transparent 70%);
}

.slider-area::after {
    right: 0;
    background: radial-gradient(ellipse at right center, rgba(123, 77, 255, 0.12) 0%, transparent 70%);
}

.slider-area .inner {
    position: relative;
    z-index: 5;
}

.slider-area .title.display-one {
    font-size: 7.5rem;
    margin-bottom: 2rem;
}

/* Text Rotation */
.cd-headline.rotate-1 .cd-words-wrapper {
    display: inline-block;
    perspective: 30rem;
    position: relative;
}

.cd-headline.rotate-1 b {
    display: inline-block;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    opacity: 0;
    transform: rotateX(180deg);
    transform-origin: 50% 0;
}

.cd-headline.rotate-1 b.is-visible {
    position: relative;
    opacity: 1;
    transform: rotateX(0deg);
    animation: cd-rotate-1-in 1.2s;
}

.cd-headline.rotate-1 b.is-hidden {
    animation: cd-rotate-1-out 1.2s;
}

@keyframes cd-rotate-1-in {
    0% { transform: rotateX(180deg); opacity: 0; }
    35% { transform: rotateX(120deg); opacity: 0; }
    65% { opacity: 0; }
    100% { transform: rotateX(0deg); opacity: 1; }
}

@keyframes cd-rotate-1-out {
    0% { transform: rotateX(0deg); opacity: 1; }
    35% { transform: rotateX(-40deg); opacity: 1; }
    65% { opacity: 0; }
    100% { transform: rotateX(180deg); opacity: 0; }
}

/* Description */
.slider-area .description {
    font-size: 2rem;
    color: var(--color-link);
    margin-bottom: 3rem;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.slider-area .description b {
    color: var(--color-heading);
    font-weight: 600;
}

.hero-bottom-text {
    font-size: 1.8rem;
    color: var(--color-link);
    text-align: center;
    max-width: 65rem;
    margin: 3rem auto 0;
    line-height: 1.6;
    position: relative;
    z-index: 5;
}

.hero-bottom-text b {
    color: var(--color-heading);
    font-weight: 600;
}

.hero-btn {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 1.4rem 3.2rem;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: #fff;
    background: linear-gradient(90deg, #7b4dff, #a855f7);
    border: none;
    border-radius: 0.8rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0.4rem 2rem rgba(123, 77, 255, 0.3);
    position: relative;
    z-index: 5;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.6rem 2.5rem rgba(123, 77, 255, 0.5);
}

/* Trust Badge */
.hero-badge {
    position: absolute;
    top: -0.5rem;
    right: 0;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.4rem;
    background: rgba(14, 17, 28, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 999px;
    border: 1px solid rgba(124, 92, 255, 0.12);
    font-size: 1.2rem;
    color: #d0d0e0;
    white-space: nowrap;
    animation: badgeFloat 4s ease-in-out infinite;
}

.hero-badge i {
    color: #fbbf24;
    font-size: 1.1rem;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-0.5rem); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    font-size: 1rem;
    color: var(--color-link);
    letter-spacing: 0.3rem;
    text-transform: uppercase;
}

.scroll-indicator i {
    font-size: 1.6rem;
    color: var(--color-primary);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(0.6rem); }
}

/* ----------------------------------------------
   HERO BACKGROUND SHAPES
   ---------------------------------------------- */
.bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.bg-shape-one {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50rem;
    height: 50rem;
    background: radial-gradient(circle, rgba(128,90,245,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: moveVertical 12s ease-in-out infinite;
}

.bg-shape-two {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 40rem;
    height: 40rem;
    background: radial-gradient(circle, rgba(206,153,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: moveHorizental 15s ease-in-out infinite;
}

@keyframes moveVertical {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3rem); }
}

@keyframes moveHorizental {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3rem); }
}

/* ----------------------------------------------
    FIND YOUR MOVIE — SPLIT SECTION
    ---------------------------------------------- */
.find-section {
    position: relative;
    background: #0d0b13;
    padding: 80px 0;
    overflow: hidden;
}

.find-grid-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    max-width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(124, 92, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 92, 255, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.find-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* ---------- Left: Content ---------- */
.find-content {
    flex: 0 0 45%;
    max-width: 45%;
}

/* Animated Icon */
.find-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(124,92,255,0.2), rgba(180,94,255,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2.2rem;
    color: #b45eff;
    animation: iconPulse 3s ease-in-out infinite;
    border: 1px solid rgba(124,92,255,0.2);
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(124,92,255,0.2), 0 0 0 0 rgba(124,92,255,0.1); }
    50% { box-shadow: 0 0 0 10px rgba(124,92,255,0), 0 0 0 20px rgba(124,92,255,0); }
}

.find-title {
    font-size: 3.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.find-desc {
    font-size: 1.6rem;
    color: var(--color-link);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 44rem;
}

.find-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.find-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    color: #d0d0e0;
    font-weight: 500;
}

.find-feature i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(90deg, #7c5cff, #b45eff);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Stats */
.find-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.find-stat {
    display: flex;
    flex-direction: column;
}

.find-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.find-stat-label {
    font-size: 1.1rem;
    color: var(--color-link);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.find-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.08);
}

.find-example {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #6a6a80;
}

.find-example span {
    color: #b45eff;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.find-example span:hover {
    color: #d080ff;
}

/* ---------- Right: Form Card ---------- */
.find-form-wrap {
    flex: 1;
    max-width: 420px;
    margin-left: auto;
}

.find-form-card {
    position: relative;
    background: rgba(22, 26, 40, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Subtle breathe border */
.find-form-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(124,92,255,0.3), transparent 30%, transparent 70%, rgba(180,94,255,0.2));
    z-index: -2;
    animation: borderBreathe 6s ease-in-out infinite alternate;
}

.find-form-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(22, 26, 40, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: -1;
}

@keyframes borderBreathe {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Tabs */
.find-tabs {
    position: relative;
    display: flex;
    width: 200px;
    height: 44px;
    background: rgba(14, 17, 28, 0.8);
    border-radius: 999px;
    padding: 4px;
    margin: 0 auto 24px;
}

.find-tab {
    flex: 1;
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-primary);
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.find-tab-indicator {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: linear-gradient(90deg, #7c5cff, #b45eff);
    border-radius: 999px;
    z-index: 1;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 16px rgba(124, 92, 255, 0.35);
}

.find-tab-indicator.tv {
    left: calc(50% + 4px);
}

/* Fields */
.find-field {
    margin-bottom: 16px;
}

.find-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #b0b0c8;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.find-field input {
    width: 100%;
    height: 48px;
    background: rgba(14, 17, 28, 0.9);
    border: 1px solid rgba(124, 92, 255, 0.1);
    border-radius: 10px;
    padding: 0 14px;
    font-size: 14px;
    font-family: var(--font-primary);
    color: #fff;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.find-field input:focus {
    border-color: rgba(124, 92, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.12);
}

.find-field input::placeholder {
    color: #5a5f72;
}

/* TV fields */
.find-tv-fields {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.35s ease;
}

.mode-tv .find-tv-fields {
    max-height: 90px;
    opacity: 1;
}

.find-tv-row {
    display: flex;
    gap: 12px;
}

.find-field.half {
    flex: 1;
}

/* Alert */
.find-alert {
    min-height: 28px;
    margin-bottom: 4px;
}

.find-alert .alert-msg {
    padding: 8px 14px;
    font-size: 12px;
    border-radius: 8px;
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.25);
    text-align: center;
}

.find-alert .alert-msg.success {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.25);
}

/* Submit */
.find-submit {
    width: 100%;
    height: 50px;
    background: linear-gradient(90deg, #7c5cff, #b45eff);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    box-shadow: 0 4px 20px rgba(124, 92, 255, 0.3);
}

.find-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 92, 255, 0.5);
    filter: brightness(1.15);
}

.find-submit:active {
    transform: translateY(0);
}

/* ---------- Result Card ---------- */
.find-result {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.3s ease;
    margin-top: 0;
}

.find-result.show {
    max-height: 500px;
    opacity: 1;
    margin-top: 16px;
}

.find-result-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: rgba(14, 17, 28, 0.7);
    border-radius: 14px;
    border: 1px solid rgba(124, 92, 255, 0.12);
}

.find-result-poster {
    flex-shrink: 0;
    width: 100px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(124, 92, 255, 0.08);
}

.find-result-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.find-result-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.find-result-badge {
    display: inline-block;
    width: fit-content;
    padding: 2px 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(124, 92, 255, 0.1);
    border: 1px solid rgba(124, 92, 255, 0.15);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.find-result-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.find-result-meta {
    font-size: 1.2rem;
    color: var(--color-link);
    display: flex;
    align-items: center;
    gap: 4px;
}

.find-result-dot {
    opacity: 0.4;
}

.find-result-overview {
    font-size: 1.2rem;
    color: var(--color-link);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    flex: 1;
}

.find-result-actions {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.find-result-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(90deg, #7c5cff, #b45eff);
    border-radius: 8px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-primary);
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.find-result-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(124, 92, 255, 0.4);
    color: #fff;
}

.find-result-btn-alt {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(124, 92, 255, 0.25);
    border-radius: 8px;
    color: #c0c0d8;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-primary);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.find-result-btn-alt:hover {
    background: rgba(124, 92, 255, 0.1);
    border-color: rgba(124, 92, 255, 0.4);
    color: #fff;
}

/* ---------- Entrance Animations ---------- */
[data-animate] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

[data-animate="fade-left"] {
    transform: translateX(-40px);
}

[data-animate="fade-right"] {
    transform: translateX(40px);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="scale-in"] {
    transform: scale(0.8);
}

/* ----------------------------------------------
   SHARED SECTION HEADER
   ---------------------------------------------- */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1.4rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(123, 77, 255, 0.1);
    border: 1px solid rgba(123, 77, 255, 0.15);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 1.6rem;
}

.section-title {
    font-size: 3.6rem;
    font-weight: 800;
    color: var(--color-heading);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.section-desc {
    font-size: 1.6rem;
    color: var(--color-link);
    max-width: 54rem;
    margin: 0 auto;
}

/* ----------------------------------------------
   HOW IT WORKS
   ---------------------------------------------- */
.how-section {
    position: relative;
    background: #0d0b13;
    padding: 8rem 0;
    overflow: hidden;
}

.how-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.how-blob-1 {
    width: 40rem;
    height: 40rem;
    background: radial-gradient(circle, rgba(123, 77, 255, 0.08), transparent);
    top: -10rem;
    left: -10rem;
    animation: blobFloat 8s ease-in-out infinite alternate;
}

.how-blob-2 {
    width: 50rem;
    height: 50rem;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.06), transparent);
    bottom: -15rem;
    right: -10rem;
    animation: blobFloat 10s ease-in-out infinite alternate-reverse;
}

@keyframes blobFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(4rem, -3rem) scale(1.1); }
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
    position: relative;
    z-index: 1;
}

.how-grid::before {
    content: '';
    position: absolute;
    top: 4.4rem;
    left: calc(16.66% + 3.2rem);
    width: calc(66.66% - 6.4rem);
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-primary));
    z-index: 0;
    opacity: 0.3;
}

.how-card {
    position: relative;
    text-align: center;
    padding: 3.2rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 1.6rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.how-card::before {
    content: '';
    position: absolute;
    top: 4.4rem;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    box-shadow: 0 0 1.6rem rgba(123, 77, 255, 0.4);
    z-index: 1;
}

.how-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.6rem;
    background: linear-gradient(135deg, rgba(123, 77, 255, 0.04), transparent 40%, transparent 60%, rgba(168, 85, 247, 0.04));
    pointer-events: none;
    z-index: 0;
}

.how-card:hover {
    transform: translateY(-0.6rem);
    border-color: rgba(123, 77, 255, 0.2);
    box-shadow: 0 0.8rem 3rem rgba(123, 77, 255, 0.08);
}

.how-number-bg {
    position: absolute;
    top: -0.4rem;
    right: 1.2rem;
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, rgba(123, 77, 255, 0.12), rgba(168, 85, 247, 0.04));
    -webkit-background-clip: text;
    background-clip: text;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}

.how-icon {
    position: relative;
    width: 6.4rem;
    height: 6.4rem;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(123, 77, 255, 0.12), rgba(168, 85, 247, 0.04));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--color-primary);
    z-index: 1;
    border: 1px solid rgba(123, 77, 255, 0.06);
}

.how-card h3 {
    position: relative;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 1rem;
    z-index: 1;
}

.how-card p {
    position: relative;
    font-size: 1.4rem;
    color: var(--color-link);
    line-height: 1.6;
    max-width: 28rem;
    margin: 0 auto 1.6rem;
    z-index: 1;
}

.how-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
    z-index: 1;
    transition: gap 0.3s ease, color 0.3s ease;
}

.how-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.how-card:hover .how-link {
    gap: 1rem;
    color: var(--color-secondary);
}

.how-card:hover .how-link i {
    transform: translateX(3px);
}

/* How It Works → Documentation Link */
.how-docs-link {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}
.how-docs-label {
    font-size: 1.4rem;
    color: var(--color-heading);
}
.how-docs-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid transparent;
}
.how-docs-link a:hover {
    gap: 1rem;
    border-bottom-color: rgba(123,77,255,0.2);
}
.how-docs-link a i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}
.how-docs-link a:hover i {
    transform: translateX(3px);
}

.find-input-highlight {
    box-shadow: 0 0 0 2px var(--color-primary), 0 0 20px rgba(123, 77, 255, 0.3) !important;
    transition: box-shadow 0.3s ease;
}

.find-btn-highlight {
    box-shadow: 0 0 0 2px var(--color-primary), 0 0 25px rgba(123, 77, 255, 0.4) !important;
    transition: box-shadow 0.3s ease;
}

/* ----------------------------------------------
   SURPRISE ME
   ---------------------------------------------- */
.surprise-section {
    position: relative;
    background: #0d0b13;
    padding: 8rem 0;
    overflow: hidden;
}

.surprise-dice-rain {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.dice {
    position: absolute;
    top: -10%;
    left: var(--left);
    font-size: var(--size, 2rem);
    opacity: 0;
    line-height: 1;
    text-shadow: var(--glow, none);
    will-change: transform;
    animation: diceFall var(--dur, 12s) linear infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes diceFall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    8% {
        opacity: var(--opacity, 0.04);
    }
    50% {
        transform: translateY(50vh) translateX(20px) rotate(360deg);
    }
    92% {
        opacity: var(--opacity, 0.04);
    }
    100% {
        transform: translateY(110vh) translateX(-10px) rotate(720deg);
        opacity: 0;
    }
}

.surprise-section > .container {
    position: relative;
    z-index: 1;
}

.surprise-wrapper {
    max-width: 80rem;
    margin: 0 auto;
}

.surprise-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2.4rem;
}

.surprise-chip {
    padding: 0.5rem 1.4rem;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--color-link);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition-default);
}

.surprise-chip:hover {
    color: var(--color-heading);
    border-color: rgba(255, 255, 255, 0.15);
}

.surprise-chip.active {
    color: #fff;
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.surprise-type-toggle {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 1.6rem;
}

.surprise-type-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.6rem;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--color-link);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition-default);
}

.surprise-type-btn:hover {
    color: var(--color-heading);
    border-color: rgba(255, 255, 255, 0.15);
}

.surprise-type-btn.active {
    color: #fff;
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.surprise-card {
    position: relative;
    border-radius: 1.6rem;
    overflow: hidden;
    background: #100d1a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 0.8rem 3rem rgba(0, 0, 0, 0.4);
    min-height: 34rem;
    transition: box-shadow var(--transition-smooth);
}

.surprise-card:hover {
    box-shadow: 0 0.8rem 4rem rgba(123, 77, 255, 0.15);
}

.surprise-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transition: background-image 0.5s ease;
}

.surprise-backdrop::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 11, 19, 0.92) 0%, rgba(13, 11, 19, 0.6) 50%, rgba(13, 11, 19, 0.4) 100%);
}

.surprise-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
    z-index: 1;
}

.surprise-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 4rem;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.surprise-card.fading .surprise-content {
    opacity: 0;
    transform: scale(0.97);
}

.surprise-poster-wrap {
    flex: 0 0 16rem;
    width: 16rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.4);
}

.surprise-poster {
    display: block;
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
}

.surprise-poster-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 2/3;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 1rem;
    color: var(--color-link);
    font-size: 3rem;
}

.surprise-poster-fallback.show {
    display: flex;
}

.surprise-info {
    flex: 1;
    min-width: 0;
}

.surprise-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-accent);
    background: rgba(206, 153, 255, 0.1);
    border: 1px solid rgba(206, 153, 255, 0.15);
    border-radius: 999px;
}

.surprise-badge i {
    font-size: 1rem;
}

.surprise-badge-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.surprise-trailer-link {
    display: none;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff3333;
    font-family: var(--font-primary);
    text-decoration: none;
    transition: color 0.25s ease;
}

.surprise-trailer-link:hover {
    color: #ff6666;
}

.surprise-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.surprise-year {
    font-weight: 400;
    font-size: 1.8rem;
    color: var(--color-link);
}

.surprise-meta {
    font-size: 1.4rem;
    color: #f5c518;
    margin-bottom: 0.8rem;
}

.surprise-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}

.surprise-genre {
    padding: 0.2rem 0.8rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-accent);
    background: rgba(206, 153, 255, 0.08);
    border: 1px solid rgba(206, 153, 255, 0.1);
    border-radius: 999px;
}

.surprise-overview {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--color-link);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 2rem;
}

.surprise-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.surprise-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.4rem;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: #fff;
    background: linear-gradient(90deg, #7b4dff, #a855f7);
    border: none;
    border-radius: 0.8rem;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0.4rem 1.6rem rgba(123, 77, 255, 0.3);
}

.surprise-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.6rem 2.4rem rgba(123, 77, 255, 0.5);
    color: #fff;
}

.surprise-btn-alt {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--color-link);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.8rem;
    cursor: pointer;
    transition: var(--transition-default);
}

.surprise-btn-alt:hover {
    color: var(--color-heading);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.surprise-auto-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    font-size: 1.2rem;
    color: var(--color-link);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-default);
    margin-left: auto;
    font-family: var(--font-primary);
}

.surprise-auto-btn:hover {
    color: var(--color-heading);
    border-color: rgba(255, 255, 255, 0.2);
}

.surprise-auto-btn.active {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: rgba(123, 77, 255, 0.1);
}

@keyframes pulse-ring {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.surprise-auto-btn.active i {
    animation: pulse-ring 2s ease-in-out infinite;
}

.surprise-footer {
    text-align: center;
    margin-top: 2.4rem;
}

.surprise-browse {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-link);
    text-decoration: none;
    transition: var(--transition-default);
}

.surprise-browse:hover {
    color: var(--color-primary);
    gap: 1rem;
}

.surprise-empty {
    text-align: center;
    padding: 4rem;
    color: var(--color-link);
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .surprise-content {
        flex-direction: column;
        padding: 2.4rem;
        gap: 2rem;
    }

    .surprise-poster-wrap {
        flex: 0 0 12rem;
        width: 12rem;
    }

    .surprise-title {
        font-size: 2.2rem;
    }

    .surprise-year {
        font-size: 1.5rem;
    }

    .surprise-card {
        min-height: auto;
    }

    .surprise-actions {
        flex-wrap: wrap;
    }

    .surprise-chip {
        font-size: 1.05rem;
        padding: 0.4rem 1rem;
    }
}

/* ----------------------------------------------
   CINEMATIC SPOTLIGHT
   ---------------------------------------------- */
.spotlight-section {
    position: relative;
    background: #0d0b13;
    padding: 8rem 0;
    overflow: hidden;
}

.spotlight-wrapper {
    position: relative;
    border-radius: 1.2rem;
    overflow: hidden;
    min-height: 50rem;
}

.spotlight-backdrop-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.spotlight-backdrop-layer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0d0b13 20%, rgba(13,11,19,0.2) 55%, rgba(13,11,19,0.6) 100%),
                linear-gradient(0deg, #0d0b13 0%, transparent 50%);
}

.spotlight-hero {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 3rem;
    padding: 3rem;
    align-items: flex-end;
    min-height: 50rem;
}

/* Progress bar */
.spotlight-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 5;
    overflow: hidden;
}

.spotlight-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-primary), #a855f7);
    border-radius: 0 2px 2px 0;
    transition: none;
}

.spotlight-progress-bar.animate {
    width: 100%;
    transition: width 3s linear;
}

/* Badge */
.spotlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.6rem;
    text-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.3);
}

.spotlight-badge::before {
    content: '';
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0.8rem rgba(123, 77, 255, 0.6);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Poster */
.spotlight-poster-wrap {
    flex: 0 0 22rem;
    max-width: 22rem;
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 1rem 4rem rgba(0,0,0,0.6);
    transform: translateY(4rem);
}

.spotlight-poster {
    width: 100%;
    display: block;
    border-radius: 0.8rem;
}

.spotlight-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 2rem;
}

.spotlight-title {
    font-size: 3.6rem;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 0.6rem;
    line-height: 1.1;
    text-shadow: 0 0.2rem 1rem rgba(0,0,0,0.4);
}

.spotlight-title-year {
    font-size: 2rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    margin-left: 0.8rem;
    text-shadow: none;
}

/* Meta — star rating style */
.spotlight-meta {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 1.2rem;
    text-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.3);
}

.spotlight-overview {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 1.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 65rem;
    text-shadow: 0 0.1rem 0.4rem rgba(0,0,0,0.3);
}

.spotlight-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: wrap;
}

.spotlight-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.4rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #7c5cff, #b45eff);
    border: none;
    border-radius: 0.8rem;
    width: fit-content;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spotlight-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0.4rem 2rem rgba(123, 77, 255, 0.3);
    color: #fff;
}

/* Navigation */
.spotlight-nav {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 3rem 0.8rem;
    background: linear-gradient(0deg, rgba(13,11,19,0.6), transparent);
}

.spotlight-nav-btn {
    width: 3.2rem;
    height: 3.2rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.3);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
}

.spotlight-nav-btn:hover {
    background: rgba(123, 77, 255, 0.2);
    border-color: rgba(123, 77, 255, 0.3);
}

.spotlight-thumbs-wrap {
    flex: 1;
    overflow: hidden;
}

.spotlight-thumbs {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.4rem 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.spotlight-thumbs::-webkit-scrollbar {
    display: none;
}

.spotlight-thumb {
    flex: 0 0 4rem;
    width: 4rem;
    height: 4rem;
    border-radius: 0.6rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.spotlight-thumb:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-2px);
}

.spotlight-thumb.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 0 1.6rem rgba(123, 77, 255, 0.4);
}

/* Fallback text */
.spotlight-fallback {
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.08);
    letter-spacing: 0.05em;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.spotlight-dots {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.6rem 3rem 1.6rem;
    background: linear-gradient(0deg, rgba(13,11,19,0.4), transparent);
}

.spotlight-dot-item {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.spotlight-dot-item.active {
    background: var(--color-primary);
    transform: scale(1.3);
}

/* Self-contained entrance animation */
.spotlight-section {
    opacity: 0;
    transform: translateY(4rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.spotlight-section.spotlight-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------------------------
   TRUST / BRANDS
   ---------------------------------------------- */
.trust-section {
    position: relative;
    background: #0d0b13;
    padding: 8rem 0;
    overflow: hidden;
}

.trust-marquee {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0, #000 4rem, #000 calc(100% - 4rem), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 4rem, #000 calc(100% - 4rem), transparent 100%);
}

.trust-track {
    display: flex;
    gap: 1.6rem;
    width: fit-content;
    will-change: transform;
}

.trust-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 2rem 2.4rem;
    min-width: 12rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.2rem;
    transition: var(--transition-default);
}

.trust-card:hover {
    border-color: var(--brand, var(--color-primary));
    box-shadow: 0 0 2rem rgba(123, 77, 255, 0.1);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04);
}

.trust-icon {
    font-size: 2.8rem;
    color: var(--brand, var(--color-heading));
    line-height: 1;
    perspective: 800px;
}

.trust-icon i {
    color: var(--brand, var(--color-heading));
    display: inline-block;
}

.trust-card:hover .trust-icon i {
    animation: trustIconPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes trustIconPop {
    0%   { transform: translateY(0) rotateY(0deg) scale(1); }
    30%  { transform: translateY(-14px) rotateY(180deg) scale(1.2); }
    60%  { transform: translateY(-8px) rotateY(270deg) scale(1.08); }
    100% { transform: translateY(0) rotateY(360deg) scale(1); }
}

.trust-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.05rem;
}

.trust-name {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-link);
    white-space: nowrap;
}

.trust-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 3rem;
    font-size: 1.25rem;
    color: var(--color-link);
}

@media (max-width: 768px) {
    .trust-track {
        gap: 1rem;
    }

    .trust-card {
        padding: 1.5rem 1.6rem;
        min-width: 9rem;
    }

    .trust-icon {
        font-size: 2.2rem;
    }

    .trust-text {
        font-size: 1.5rem;
    }
}

/* ----------------------------------------------
   FAQ
   ---------------------------------------------- */
.faq-section {
    position: relative;
    background: #0a0812;
    padding: 8rem 0;
    overflow: hidden;
}

.faq-list {
    max-width: 90rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    align-items: start;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 1.2rem;
    margin-bottom: 1.2rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item[open] {
    border-color: rgba(123, 77, 255, 0.3);
    transform: scale(1.015);
    box-shadow: 0 1rem 3rem rgba(123, 77, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    animation: faqPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes faqPop {
    0%   { transform: scale(1); box-shadow: 0 0 0 rgba(123, 77, 255, 0); }
    60%  { transform: scale(1.025); box-shadow: 0 1.2rem 3.6rem rgba(123, 77, 255, 0.18); }
    100% { transform: scale(1.015); box-shadow: 0 1rem 3rem rgba(123, 77, 255, 0.12); }
}

.faq-item summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.8rem 2.4rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-heading);
    cursor: pointer;
    list-style: none;
    transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    margin-left: auto;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-item summary i {
    font-size: 1.4rem;
    color: var(--color-primary);
    flex-shrink: 0;
    opacity: 0.7;
}

.faq-item[open] summary i {
    opacity: 1;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.faq-item[open] .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer p {
    overflow: hidden;
    padding: 0 2.4rem 1.8rem;
    font-size: 1.4rem;
    color: var(--color-link);
    line-height: 1.7;
}

.faq-answer p strong {
    color: var(--color-heading);
    font-weight: 600;
}

.faq-footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.3rem;
    color: var(--color-link);
    position: relative;
    z-index: 1;
}

.faq-footer i {
    color: var(--color-primary);
    margin-right: 0.4rem;
}

.faq-footer a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-footer a:hover {
    color: var(--color-accent);
}

/* ----------------------------------------------
   GRAIN OVERLAY
   ---------------------------------------------- */
.grain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    mix-blend-mode: overlay;
}

/* ----------------------------------------------
   SECTION RESPONSIVE
   ---------------------------------------------- */
@media (max-width: 768px) {
    .how-grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .how-grid::before {
        display: none;
    }

    .how-card::before {
        display: none;
    }

    .how-section {
        padding: 6rem 0;
    }

    .how-number-bg {
        font-size: 4rem;
    }

    .spotlight-section {
        padding: 6rem 0;
    }

    .spotlight-wrapper {
        min-height: auto;
    }

    .spotlight-hero {
        flex-direction: column;
        padding: 3rem 2rem 1rem;
        min-height: auto;
        align-items: flex-start;
    }

    .spotlight-poster-wrap {
        flex: 0 0 14rem;
        max-width: 14rem;
        transform: translateY(0);
    }

    .spotlight-title {
        font-size: 2.4rem;
    }

    .spotlight-title-year {
        font-size: 1.4rem;
    }

    .spotlight-overview {
        -webkit-line-clamp: 2;
        max-width: 100%;
    }

    .spotlight-actions {
        gap: 0.8rem;
    }

    .spotlight-btn {
        padding: 0.8rem 1.6rem;
        font-size: 1.2rem;
    }

    .spotlight-thumb {
        flex: 0 0 3.6rem;
        width: 3.6rem;
        height: 3.6rem;
        font-size: 1.2rem;
    }

    .spotlight-fallback {
        font-size: 0.9rem;
        bottom: 0.6rem;
        right: 1.2rem;
    }

    .spotlight-nav {
        padding: 0.8rem 2rem 0.4rem;
    }

    .spotlight-dots {
        padding: 0.4rem 2rem 1.2rem;
    }

    .faq-section {
        padding: 6rem 0;
    }

    .faq-list {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .faq-item summary {
        padding: 1.4rem 1.6rem;
        font-size: 1.3rem;
    }

    .faq-item p {
        padding: 0 1.6rem 1.4rem;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .how-section {
        padding: 4rem 0;
    }

    .spotlight-section {
        padding: 4rem 0;
    }

    .spotlight-wrapper {
        min-height: auto;
    }

    .spotlight-hero {
        padding: 2rem 1.6rem 0.5rem;
        gap: 1.2rem;
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
    }

    .spotlight-poster-wrap {
        flex: 0 0 10rem;
        max-width: 10rem;
        transform: translateY(0);
    }

    .spotlight-title {
        font-size: 1.8rem;
    }

    .spotlight-title-year {
        font-size: 1.2rem;
    }

    .spotlight-overview {
        font-size: 1.1rem;
        -webkit-line-clamp: 2;
        max-width: 100%;
    }

    .spotlight-actions {
        gap: 0.6rem;
    }

    .spotlight-btn {
        padding: 0.7rem 1.4rem;
        font-size: 1.1rem;
    }

    .spotlight-nav {
        padding: 0.4rem 1.6rem 0.2rem;
        gap: 0.4rem;
    }

    .spotlight-thumb {
        flex: 0 0 3rem;
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
    }

    .spotlight-fallback {
        display: none;
    }

    .spotlight-dots {
        padding: 0.2rem 1.6rem 1rem;
    }

    .faq-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .how-card {
        padding: 2.4rem 1.6rem;
    }

    .how-card h3 {
        font-size: 1.7rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .find-section {
        padding: 60px 0;
    }

    .find-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .find-content {
        flex: none;
        max-width: 100%;
        text-align: center;
    }

    .find-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .find-desc {
        max-width: 100%;
    }

    .find-features {
        align-items: center;
    }

    .find-stats {
        justify-content: center;
    }

    .find-example {
        text-align: center;
    }

    .find-form-wrap {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .find-section {
        padding: 40px 0;
    }

    .find-title {
        font-size: 2.6rem;
    }

    .find-form-card {
        padding: 24px 20px;
    }

    .find-stats {
        gap: 14px;
    }

    .find-stat-num {
        font-size: 1.6rem;
    }

    .find-result-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .find-result-poster {
        width: 80px;
        height: 120px;
    }

    .find-result-actions {
        justify-content: center;
    }

    .find-result-btn-alt {
        font-size: 1.1rem;
        padding: 6px 12px;
    }

    .find-result-btn {
        font-size: 1.1rem;
        padding: 6px 12px;
    }

    .find-result.show {
        max-height: 420px;
    }
}

/* ----------------------------------------------
   COPYRIGHT / FOOTER
   ---------------------------------------------- */
.copyright-area {
    position: relative;
    z-index: 5;
    border-top: 0.1rem solid hsla(0,0%,100%,0.05);
    padding: 2rem 0;
    background: var(--color-blackest);
}

.copyright-area .copyright-left .ft-menu {
    display: flex;
    gap: 2rem;
}

.copyright-area .copyright-left .ft-menu li a {
    font-size: 1.4rem;
    color: var(--color-link);
    font-weight: 400;
    transition: var(--transition-default);
}

.copyright-area .copyright-left .ft-menu li a:hover {
    color: var(--color-primary);
}

.copyright-text {
    font-size: 1.4rem;
    color: var(--color-link);
    margin: 0;
}

.link-hover a {
    position: relative;
    display: inline-block;
}

.link-hover a::after {
    content: '';
    position: absolute;
    bottom: -0.2rem;
    left: 0;
    width: 0;
    height: 0.1rem;
    background: var(--color-primary);
    transition: width var(--transition-smooth);
}

.link-hover a:hover::after {
    width: 100%;
}

/* ----------------------------------------------
   TRAILER MODAL
   ---------------------------------------------- */
.trailer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.trailer-modal.active {
    opacity: 1;
    visibility: visible;
}

.trailer-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.trailer-modal-wrap {
    position: relative;
    width: 90%;
    max-width: 900px;
    z-index: 2;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.trailer-modal.active .trailer-modal-wrap {
    transform: scale(1) translateY(0);
}

.trailer-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 0 1rem;
}

.trailer-modal-label {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}

.trailer-modal-close {
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.trailer-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.trailer-modal-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.trailer-modal-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.trailer-modal-footer {
    display: flex;
    justify-content: center;
    padding: 1.2rem 0 0;
}

.trailer-modal-direct {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff0033;
    background: rgba(255, 0, 51, 0.08);
    border: 1px solid rgba(255, 0, 51, 0.2);
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.trailer-modal-direct:hover {
    background: rgba(255, 0, 51, 0.15);
    border-color: rgba(255, 0, 51, 0.35);
    color: #ff0033;
}

/* ----------------------------------------------
   BACK TO TOP
   ---------------------------------------------- */
.rbt-progress-parent {
    position: fixed;
    right: 3rem;
    bottom: 3rem;
    height: 4.6rem;
    width: 4.6rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(2rem);
    transition: opacity var(--transition-smooth), visibility var(--transition-smooth), transform var(--transition-smooth);
}

.rbt-progress-parent.rbt-backto-top-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.rbt-back-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--color-blackest);
    border: 0.2rem solid var(--color-primary);
    box-shadow: 0 0 2rem rgba(128, 90, 245, 0.2);
    transition: var(--transition-smooth);
}

.rbt-back-circle path {
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 0.4rem;
    stroke-dasharray: 308;
    stroke-dashoffset: 308;
    transition: stroke-dashoffset 0.3s linear;
}

.rbt-progress-parent:hover .rbt-back-circle {
    box-shadow: 0 0 3rem rgba(128, 90, 245, 0.4);
    transform: scale(1.05);
}

/* Arrow inside the circle using pseudo-element */
.rbt-progress-parent {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rbt-progress-parent::after {
    content: '\f077';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--color-primary);
    position: absolute;
    z-index: 1;
    transition: var(--transition-default);
}

.rbt-progress-parent:hover::after {
    color: var(--color-heading);
}

/* ----------------------------------------------
   RESPONSIVE
   ---------------------------------------------- */
@media (max-width: 1200px) {
    .slider-area .title.display-one {
        font-size: 5.5rem;
    }
}

@media (max-width: 991px) {
    .stream-header {
        padding: 1rem 1rem;
    }

    .stream-header .header-pill {
        border-radius: 3rem;
        padding: 0 0.3rem;
    }

    .stream-header.header-shrunk {
        padding: 0.7rem 1rem;
    }

    .stream-header.header-shrunk .header-pill {
        padding: 0 1.2rem;
    }

    .stream-header.header-shrunk .logo-text {
        font-size: 1.6rem;
        line-height: 3rem;
    }
}

@media (max-width: 768px) {
    .slider-area .title.display-one {
        font-size: 4rem;
    }

    .slider-area .description {
        font-size: 1.6rem;
    }

    .stream-header {
        padding: 1rem 0.6rem;
    }

    .stream-header .header-pill {
        border-radius: 2rem;
    }

    .stream-header .header-pill .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .stream-header.header-shrunk {
        padding: 1rem 0.6rem;
    }

    .stream-header.header-shrunk .header-pill {
        padding: 0 1.2rem;
    }

    .stream-header.header-shrunk .logo-text {
        font-size: 1.6rem;
        line-height: 3.2rem;
    }

    .header-right {
        gap: 0.5rem;
    }

    .slider-area .inner {
        padding-top: 4rem;
    }

    .hero-badge {
        top: -0.5rem;
        right: 0;
        left: auto;
        transform: none;
        animation: none;
    }
}

@media (max-width: 480px) {
    .slider-area .title.display-one {
        font-size: 3rem;
    }

    .slider-area .description {
        font-size: 1.4rem;
    }

    .slider-area {
        padding: 10rem 0 4rem;
    }

    .hero-bottom-text {
        font-size: 1.4rem;
        margin-top: 1.5rem;
    }

    .hero-btn {
        margin-top: 1.2rem;
        padding: 1rem 2rem;
        font-size: 1.3rem;
    }

    .stream-header {
        padding: 0.8rem 0.4rem;
    }

    .stream-header .header-pill {
        border-radius: 1.6rem;
    }

    .stream-header.header-shrunk {
        padding: 0.8rem 0.4rem;
    }

    .stream-header.header-shrunk .header-pill {
        padding: 0 1rem;
    }

    .stream-header.header-shrunk .logo-text {
        font-size: 1.4rem;
        line-height: 2.8rem;
    }

    .stream-header .logo-text {
        font-size: 2rem;
        line-height: 4rem;
    }

    .hero-badge {
        font-size: 1rem;
        padding: 0.4rem 1rem;
        top: -0.5rem;
        right: 0;
        left: auto;
        transform: none;
        animation: none;
    }

    .slider-area .inner {
        padding-top: 3.5rem;
    }

    .scroll-indicator {
        bottom: 1.5rem;
    }

    .scroll-indicator span {
        display: none;
    }

    .rbt-progress-parent {
        right: 1.5rem;
        bottom: 1.5rem;
        width: 4rem;
        height: 4rem;
    }

    .rbt-progress-parent::after {
        font-size: 1.4rem;
    }

    .trailer-modal-wrap {
        width: 95%;
    }

    .trailer-modal-header {
        padding: 1rem 0 0.6rem;
    }

    .trailer-modal-label {
        font-size: 1.3rem;
    }

    .trailer-modal-close {
        width: 3rem;
        height: 3rem;
        font-size: 1.6rem;
    }

    .trailer-modal-direct {
        font-size: 1.1rem;
        padding: 0.6rem 1.4rem;
    }
}

/* ----------------------------------------------
   HEADER SEARCH
   ---------------------------------------------- */
.header-search {
    position: relative;
    display: flex;
    align-items: center;
}

.header-search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    margin-right: 0.3rem;
}

.header-search-toggle:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.header-search-toggle.active {
    color: var(--color-accent);
    border-color: rgba(123, 77, 255, 0.25);
    background: rgba(123, 77, 255, 0.08);
}

.header-search-drop {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 100;
    width: 320px;
    display: none;
}

.header-search-drop.open {
    display: block;
    animation: searchDropIn 0.2s ease-out;
}

@keyframes searchDropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.header-search-input {
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: #fff;
    background: rgba(22, 19, 32, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.25s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.header-search-input:focus {
    border-color: rgba(123, 77, 255, 0.3);
}

.header-search-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.header-search-results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    max-height: 360px;
    overflow-y: auto;
    background: rgba(22, 19, 32, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    display: none;
}

.header-search-results.open {
    display: block;
}

.header-search-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.55rem 0.8rem;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.header-search-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.header-search-item-img {
    width: 36px;
    height: 54px;
    object-fit: cover;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    flex-shrink: 0;
}

.header-search-item-img-fallback {
    width: 36px;
    height: 54px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.header-search-item-info {
    flex: 1;
    min-width: 0;
}

.header-search-item-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-search-item-year {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 0.1rem;
}

.header-search-item-badge {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    background: rgba(123, 77, 255, 0.15);
    color: var(--color-accent);
    text-transform: uppercase;
    margin-left: auto;
    flex-shrink: 0;
}

.header-search-empty {
    padding: 1.2rem;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
    .header-search-drop {
        position: fixed;
        top: 6rem;
        left: 1rem;
        right: 1rem;
        width: auto;
    }
}

/* ----------------------------------------------
   MY LIST PAGE
   ---------------------------------------------- */
.mylist-section {
    position: relative;
    margin-top: 6rem;
    min-height: calc(100vh - 6rem);
    background: #0d0b13;
    padding: 6rem 0 6rem;
    overflow: hidden;
}

.mylist-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.mylist-blob-1 {
    width: 40rem;
    height: 40rem;
    background: radial-gradient(circle, rgba(123, 77, 255, 0.08), transparent);
    top: -10rem;
    left: -10rem;
    animation: blobFloat 8s ease-in-out infinite alternate;
}

.mylist-blob-2 {
    width: 50rem;
    height: 50rem;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.06), transparent);
    bottom: -15rem;
    right: -10rem;
    animation: blobFloat 10s ease-in-out infinite alternate-reverse;
}


.mylist-section .container {
    position: relative;
    z-index: 1;
}

/* --- Header --- */
.mylist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.mylist-header-left {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.mylist-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-heading);
    margin: 0;
}

.mylist-count {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

/* --- Search in header --- */
.mylist-search {
    position: relative;
    width: 200px;
    transition: width 0.3s ease;
}

.mylist-search:focus-within {
    width: 260px;
}

.mylist-search input {
    width: 100%;
    padding: 0.6rem 0.9rem 0.6rem 2.2rem;
    font-size: 0.88rem;
    font-family: inherit;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.mylist-search input:focus {
    border-color: rgba(123, 77, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.mylist-search i {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.15);
    pointer-events: none;
    transition: color 0.25s ease;
}

.mylist-search:focus-within i {
    color: rgba(123, 77, 255, 0.4);
}

/* --- Empty state --- */
.mylist-empty {
    text-align: center;
    padding: 6rem 0;
    color: rgba(255, 255, 255, 0.3);
}

.mylist-empty i {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    display: block;
    opacity: 0.3;
    color: var(--color-accent);
}

.mylist-empty h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.6rem;
}

.mylist-empty p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.mylist-empty .watch-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--color-accent), #9b6dff);
    border: none;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mylist-empty .watch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 77, 255, 0.35);
}

/* ==========================================
   GRID - NETFLIX STYLE
   ========================================== */
.mylist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
    gap: 1rem;
}

.mylist-card {
    position: relative;
    display: block;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
    animation: mylistFadeIn 0.35s ease both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@keyframes mylistFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mylist-card:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.mylist-card-img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
    background: rgba(255, 255, 255, 0.02);
}

.mylist-card-fallback {
    width: 100%;
    aspect-ratio: 2/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

/* --- Title overlay (always visible, bottom of poster) --- */
.mylist-card-title-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 0.7rem 0.6rem;
    background: linear-gradient(to top, rgba(13, 11, 19, 0.92) 0%, transparent 100%);
    pointer-events: none;
}

.mylist-card-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- Hover overlay (full details) --- */
.mylist-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 11, 19, 0.97) 10%, rgba(13, 11, 19, 0.7) 50%, rgba(13, 11, 19, 0.3) 80%, transparent 95%);
    opacity: 0;
    transition: opacity 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem 0.9rem 0.9rem;
    pointer-events: none;
}

.mylist-card:hover .mylist-card-overlay {
    opacity: 1;
}

.mylist-card-overlay-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mylist-card-overlay-meta {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin-bottom: 0.35rem;
}

.mylist-card-overlay-badge {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.12rem 0.4rem;
    border-radius: 3px;
    background: linear-gradient(135deg, var(--color-accent), #9b6dff);
    color: #fff;
    text-transform: uppercase;
}

.mylist-card-overlay-rating {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.mylist-card-overlay-rating i {
    color: #f5c518;
    font-size: 0.65rem;
    margin-right: 0.1rem;
}

.mylist-card-overlay-year {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
}

.mylist-card-overlay-cw {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    background: rgba(123, 77, 255, 0.12);
    color: var(--color-accent);
    display: inline-block;
}

/* --- Remove button --- */
.mylist-card-remove {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    width: 1.6rem;
    height: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.4);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.25s ease, background 0.2s ease;
    z-index: 3;
}

.mylist-card:hover .mylist-card-remove {
    opacity: 1;
}

.mylist-card-remove:hover {
    color: #fff;
    background: rgba(220, 38, 38, 0.7);
}

/* ==========================================
   FEATURES — Why Movorastar
   ========================================== */
.features-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    padding: 2.8rem 2.4rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.2rem;
    transition: var(--transition-default);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120px circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    border-color: var(--feature, var(--color-primary));
    box-shadow: 0 0 2.4rem rgba(123, 77, 255, 0.08);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04);
}

.feature-icon {
    font-size: 2.4rem;
    color: var(--feature, var(--color-primary));
    margin-bottom: 1.2rem;
    line-height: 1;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 0.6rem;
}

.feature-desc {
    font-size: 1.15rem;
    color: var(--color-link);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================
   STATS — By the Numbers
   ========================================== */
.stats-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
    position: relative;
    z-index: 1;
    counter-reset: stat;
}

.stat-card {
    text-align: center;
    padding: 3.2rem 1.6rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.2rem;
    transition: var(--transition-default);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    counter-increment: stat;
    content: '0' counter(stat);
    position: absolute;
    top: 0.6rem;
    right: 1.2rem;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    font-family: 'Sora', sans-serif;
}

.stat-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 2rem rgba(123, 77, 255, 0.08);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04);
}

.stat-icon {
    font-size: 3.2rem;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
    line-height: 1;
}

.stat-number {
    display: block;
    font-size: 3.6rem;
    font-weight: 800;
    color: var(--color-heading);
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 1.15rem;
    color: var(--color-link);
    margin-top: 0.4rem;
    font-weight: 500;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .stat-number {
        font-size: 2.8rem;
    }
    .mylist-search {
        width: 160px;
    }
    .mylist-search:focus-within {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .stat-card {
        padding: 2.4rem 1rem;
    }
    .stat-icon {
        font-size: 2.4rem;
    }
    .stat-number {
        font-size: 2.4rem;
    }
    .mylist-title {
        font-size: 1.4rem;
    }
    .mylist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
}

/* ----------------------------------------------
   SITE FOOTER
   ---------------------------------------------- */
.site-footer {
    position: relative;
    z-index: 5;
    background: #08070e;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 4rem;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.site-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-decoration: none;
    color: #fff;
    line-height: 1;
    transition: transform 0.3s ease;
}

.site-footer-logo i {
    font-size: 1.6rem;
    color: var(--color-primary);
    animation: footerLogoPulse 3s ease-in-out infinite;
}

@keyframes footerLogoPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.12); opacity: 1; filter: drop-shadow(0 0 8px rgba(123,77,255,0.5)); }
}

.site-footer-logo:hover {
    transform: scale(1.03);
    color: #fff;
}

.site-footer-logo:hover i {
    animation: none;
    transform: scale(1.15);
    color: #fff;
    filter: drop-shadow(0 0 12px rgba(123,77,255,0.7));
}

.site-footer-logo:hover .theme-gradient {
    background-size: 200% 200%;
    animation: shimmerText 1.2s ease infinite;
}

@keyframes shimmerText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.site-footer-desc {
    font-size: 1.1rem;
    color: var(--color-link);
    line-height: 1.7;
    margin: 1rem 0 1.4rem;
    max-width: 32rem;
}

.site-footer-social {
    display: flex;
    gap: 0.8rem;
}

.site-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    color: var(--color-link);
    font-size: 1.3rem;
    transition: var(--transition-default);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.06);
}

.site-footer-social a:hover {
    background: rgba(123,77,255,0.12);
    color: var(--color-primary);
    border-color: rgba(123,77,255,0.2);
    transform: translateY(-2px);
}

.site-footer-tmdb {
    font-size: 1rem;
    color: rgba(255,255,255,0.25);
    margin: -0.4rem 0 1.2rem;
}

.site-footer-tmdb i { margin-right: 0.3rem; }

.site-footer-tmdb a {
    color: #01d277;
    text-decoration: none;
    font-weight: 600;
}

.site-footer-tmdb a:hover { text-decoration: underline; }

.site-footer-stats {
    display: flex;
    gap: 2.2rem;
    margin-top: 1.6rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.site-footer-stat {
    display: flex;
    flex-direction: column;
}

.site-footer-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.site-footer-stat-label {
    font-size: 0.85rem;
    color: var(--color-link);
    margin-top: 0.1rem;
}

.site-footer-heart {
    font-size: 1.05rem;
    color: var(--color-link);
}

.site-footer-heart i {
    color: #ff4747;
}

.site-footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.site-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.site-footer-col ul li a {
    font-size: 1.1rem;
    color: var(--color-link);
    text-decoration: none;
    transition: var(--transition-default);
}

.site-footer-col ul li a:hover {
    color: var(--color-primary);
    padding-left: 0.3rem;
}

.site-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 1.4rem 0;
}

.site-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-footer-copy {
    font-size: 1.1rem;
    color: var(--color-link);
    margin: 0;
}

@media (max-width: 768px) {
    .site-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .site-footer-brand {
        grid-column: 1 / -1;
    }
    .site-footer-desc {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .site-footer-grid {
        grid-template-columns: 1fr;
    }
    .site-footer-bottom-inner {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* ----------------------------------------------
   LEGAL CONSENT OVERLAY
   ---------------------------------------------- */
.legal-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.legal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.legal-overlay-card {
    background: #12101a;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 1.6rem;
    padding: 3.2rem 3rem;
    max-width: 48rem;
    width: 90%;
    text-align: center;
    transform: translateY(2rem) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
    box-shadow: 0 0 6rem rgba(0,0,0,0.5);
}

.legal-overlay.active .legal-overlay-card {
    transform: translateY(0) scale(1);
}

.legal-overlay-icon {
    font-size: 3.6rem;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
}

.legal-overlay-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 0.4rem;
}

.legal-overlay-desc {
    font-size: 1.1rem;
    color: var(--color-link);
    line-height: 1.6;
    margin-bottom: 1.6rem;
}

.legal-overlay-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
    text-align: left;
}

.legal-overlay-links a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    font-size: 1.1rem;
    color: var(--color-body);
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 0.8rem;
    text-decoration: none;
    transition: var(--transition-default);
}

.legal-overlay-links a i {
    width: 1.6rem;
    color: var(--color-primary);
    font-size: 1.2rem;
}

.legal-overlay-links a:hover {
    background: rgba(123,77,255,0.06);
    border-color: rgba(123,77,255,0.12);
    color: var(--color-primary);
}

.legal-overlay-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    background: var(--gradient-primary);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-overlay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123,77,255,0.35);
}

.legal-overlay-note {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.2);
    margin-top: 1rem;
}

@media (max-width: 480px) {
    .legal-overlay-card {
        padding: 2.4rem 1.6rem;
    }
    .legal-overlay-title {
        font-size: 1.5rem;
    }
    .legal-overlay-links a {
        font-size: 1rem;
        padding: 0.7rem 1rem;
    }
}

/* ----------------------------------------------
   BLOCKED CONTENT OVERLAY
   ---------------------------------------------- */
.blocked-overlay {
    position: fixed;
    inset: 0;
    z-index: 999998;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.blocked-overlay.active {
    opacity: 1;
    visibility: visible;
}

.blocked-overlay-card {
    background: #0d0b18;
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: 1.6rem;
    padding: 3.2rem 3rem;
    max-width: 48rem;
    width: 90%;
    text-align: center;
    transform: translateY(2rem) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
    box-shadow: 0 0 6rem rgba(59,130,246,0.08);
}

.blocked-overlay.active .blocked-overlay-card {
    transform: translateY(0) scale(1);
}

.blocked-overlay-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.2rem;
    background: rgba(59,130,246,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: #3b82f6;
}

.blocked-overlay-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
}

.blocked-overlay-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.4rem;
}

.blocked-overlay-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.blocked-overlay-desc strong {
    color: #fff;
}

.blocked-overlay-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.4rem;
}

.blocked-overlay-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    color: #3b82f6;
    background: rgba(59,130,246,0.06);
    border: 1px solid rgba(59,130,246,0.12);
    border-radius: 999px;
    text-decoration: none;
    transition: var(--transition-default);
}

.blocked-overlay-links a i {
    color: #3b82f6;
    font-size: 1rem;
}

.blocked-overlay-links a:hover {
    background: rgba(59,130,246,0.12);
    border-color: rgba(59,130,246,0.25);
    color: #5b9cf6;
}

.blocked-overlay-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 1.4rem;
    text-align: left;
    justify-content: center;
}

.blocked-overlay-checkbox input[type="checkbox"] {
    width: 1.15rem;
    height: 1.15rem;
    margin-top: 0.2rem;
    accent-color: var(--color-primary);
    cursor: pointer;
    flex-shrink: 0;
}

.blocked-overlay-checkbox label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
}

.blocked-overlay-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    background: var(--gradient-primary);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.blocked-overlay-btn:disabled {
    opacity: 0.35;
    cursor: default;
    transform: none !important;
    box-shadow: none !important;
}

.blocked-overlay-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123,77,255,0.35);
}

.blocked-overlay-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blocked-overlay-back:hover {
    color: var(--color-primary);
    gap: 0.6rem;
}

.blocked-overlay-note {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.15);
    margin-top: 1rem;
}

.blocked-overlay-divider {
    width: 100%;
    height: 1px;
    background: rgba(59,130,246,0.08);
    margin: 1.2rem 0;
}

@media (max-width: 480px) {
    .blocked-overlay-card {
        padding: 2.4rem 1.6rem;
    }
    .blocked-overlay-title {
        font-size: 1.5rem;
    }
    .blocked-overlay-links a {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* ==========================================
   GO FURTHER - Extension Section
   ========================================== */
.further-section {
    position: relative;
    background: #0b0914;
    padding: 8rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.further-section .section-tag i {
    color: #5ac8fa;
}

/* Extension icon styling */
.further-icon {
    background: linear-gradient(135deg, rgba(90, 200, 250, 0.15), rgba(90, 200, 250, 0.03));
    border-color: rgba(90, 200, 250, 0.1);
    color: #5ac8fa;
}

.how-card.further-card::before {
    background: #5ac8fa;
    box-shadow: 0 0 1.6rem rgba(90, 200, 250, 0.4);
}

.how-card.further-card::after {
    background: linear-gradient(135deg, rgba(90, 200, 250, 0.04), transparent 40%, transparent 60%, rgba(90, 200, 250, 0.04));
}

.how-card.further-card:hover {
    border-color: rgba(90, 200, 250, 0.2);
    box-shadow: 0 0.8rem 3rem rgba(90, 200, 250, 0.08);
}

.further-card .how-link {
    color: #5ac8fa;
}

.further-card .how-link:hover {
    color: #7dd3fc;
}

/* Further footer */
.further-footer {
    text-align: center;
    margin-top: 2.4rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    font-size: 1.3rem;
    color: var(--color-link);
    opacity: 0.8;
}

.further-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5ac8fa;
    text-decoration: none;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(90, 200, 250, 0.15);
    border-radius: 2rem;
    transition: var(--transition-default);
}

.further-footer-link:hover {
    background: rgba(90, 200, 250, 0.06);
    border-color: rgba(90, 200, 250, 0.3);
    color: #7dd3fc;
    gap: 0.8rem;
}

/* How It Works → Extension hint */
.how-further-hint {
    text-align: center;
    margin-top: 1.2rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 1.25rem;
    color: var(--color-link);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.how-further-hint:hover {
    opacity: 0.9;
}

.how-further-hint i {
    color: #5ac8fa;
    font-size: 1.1rem;
}

.how-further-hint a {
    color: #5ac8fa;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(90, 200, 250, 0.2);
    transition: var(--transition-default);
}

.how-further-hint a:hover {
    border-bottom-color: rgba(90, 200, 250, 0.5);
    color: #7dd3fc;
}

/* Download link variant */
.how-card.further-card .how-link-download,
.how-card.further-card .how-link-download i {
    color: #34c759;
}

.how-card.further-card:hover .how-link-download {
    gap: 1rem;
}

/* Responsive for further section */
@media (max-width: 768px) {
    .further-section {
        padding: 6rem 0;
    }
    .further-footer {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* =============================================
   ACCESSIBILITY
   ============================================= */

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    z-index: 10000;
    padding: 0.8rem 1.6rem;
    background: var(--color-primary);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 0.4rem 0;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =============================================
   CAROUSEL SECTIONS (Continue Watching, Trending)
   ============================================= */

.carousel-section {
    padding: 4rem 0 2rem;
}

.carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.6rem;
}

.carousel-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-heading);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.carousel-title i {
    color: var(--color-primary);
}

.carousel-controls {
    display: flex;
    gap: 0.6rem;
}

.carousel-btn {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: rgba(255,255,255,0.05);
    color: var(--color-body);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-default);
}

.carousel-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-track-wrap {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.8rem;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    flex: 0 0 auto;
    width: 15rem;
    scroll-snap-align: start;
    cursor: pointer;
    border-radius: var(--radius-small);
    overflow: hidden;
    transition: var(--transition-default);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border);
    text-decoration: none;
    display: block;
}

.carousel-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: 0 0.8rem 2.4rem rgba(123,77,255,0.2);
}

.carousel-card-poster {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
    background: rgba(255,255,255,0.05);
}

.carousel-card-body {
    padding: 0.8rem 1rem 1rem;
}

.carousel-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.2rem;
}

.carousel-card-meta {
    font-size: 1.1rem;
    color: var(--color-body);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.carousel-card-rating {
    color: #fbbf24;
}

.carousel-empty {
    padding: 4rem 2rem;
    text-align: center;
    color: var(--color-body);
    font-size: 1.4rem;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-small);
    border: 1px dashed var(--color-border);
}

.carousel-empty i {
    font-size: 2.4rem;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
    display: block;
}

@media (max-width: 768px) {
    .carousel-card {
        width: 13rem;
    }
    .carousel-section {
        padding: 2rem 0 1rem;
    }
}

/* ============================================
   REPORT SECTION (Documentation page)
   ============================================ */
.docs-report-section {
    padding: var(--section-padding, 6rem 0);
}

.docs-report-section .section-header {
    margin-bottom: 4rem;
}

.docs-report-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.docs-report-step {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-small);
    padding: 2.4rem;
    text-align: center;
    transition: var(--transition-default);
}

.docs-report-step:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.docs-report-step .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.docs-report-step h4 {
    font-size: 1.6rem;
    color: var(--color-heading);
    margin-bottom: 0.4rem;
}

.docs-report-step p {
    font-size: 1.3rem;
    color: var(--color-body);
    margin: 0;
}

.docs-report-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
    gap: 2rem;
}

.docs-report-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-small);
    padding: 2.4rem;
    transition: var(--transition-default);
}

.docs-report-card:hover {
    border-color: var(--color-primary);
}

.docs-report-card .card-icon {
    font-size: 2.4rem;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
}

.docs-report-card h4 {
    font-size: 1.5rem;
    color: var(--color-heading);
    margin-bottom: 0.4rem;
}

.docs-report-card p {
    font-size: 1.3rem;
    color: var(--color-body);
    margin: 0;
}

.docs-report-card a {
    display: inline-block;
    margin-top: 0.8rem;
    font-size: 1.3rem;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.docs-report-card a:hover {
    text-decoration: underline;
}

.doc-feature-card {
    height: 100%;
}
