/* roulang page: index */
:root {
            --color-primary: #ff3e68;
            --color-primary-dark: #e92854;
            --color-primary-soft: rgba(255, 62, 104, 0.14);
            --color-secondary: #ff9b42;
            --color-cyan: #47e5c3;
            --color-purple: #8d76ff;
            --color-bg: #080a14;
            --color-bg-soft: #0d1020;
            --color-surface: #111526;
            --color-surface-2: #171c31;
            --color-surface-3: #202641;
            --color-text: #f7f8ff;
            --color-muted: #a9aec4;
            --color-subtle: #777e9b;
            --color-border: rgba(255, 255, 255, 0.09);
            --color-border-strong: rgba(255, 255, 255, 0.16);
            --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.18);
            --shadow-md: 0 24px 60px rgba(0, 0, 0, 0.32);
            --shadow-primary: 0 16px 38px rgba(255, 62, 104, 0.28);
            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --container: 1200px;
            --header-height: 76px;
            --transition: 180ms ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px;
        }

        body {
            margin: 0;
            min-width: 320px;
            color: var(--color-text);
            background:
                radial-gradient(circle at 12% 5%, rgba(255, 62, 104, 0.16), transparent 28rem),
                radial-gradient(circle at 88% 18%, rgba(141, 118, 255, 0.13), transparent 30rem),
                var(--color-bg);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
                "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            font-size: 16px;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        body.menu-open {
            overflow: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        p,
        ul,
        ol,
        figure {
            margin-top: 0;
        }

        h1,
        h2,
        h3,
        h4 {
            line-height: 1.24;
            letter-spacing: -0.02em;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button,
        input {
            font: inherit;
        }

        button {
            color: inherit;
        }

        img,
        svg {
            display: block;
            max-width: 100%;
        }

        ::selection {
            color: #ffffff;
            background: var(--color-primary);
        }

        :focus-visible {
            outline: 3px solid rgba(71, 229, 195, 0.72);
            outline-offset: 3px;
        }

        .container {
            width: min(calc(100% - 40px), var(--container));
            margin-inline: auto;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            min-height: var(--header-height);
            border-bottom: 1px solid var(--color-border);
            background: rgba(8, 10, 20, 0.82);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
            backdrop-filter: blur(18px);
        }

        .nav-shell {
            position: relative;
            display: flex;
            align-items: center;
            min-height: var(--header-height);
            gap: 28px;
        }

        .brand {
            display: inline-flex;
            flex-shrink: 0;
            align-items: center;
            gap: 12px;
            max-width: 285px;
        }

        .brand-mark {
            position: relative;
            display: grid;
            width: 42px;
            height: 42px;
            flex: 0 0 42px;
            place-items: center;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 14px;
            background: linear-gradient(145deg, var(--color-primary), #ff7b44);
            box-shadow: var(--shadow-primary);
        }

        .brand-mark::before {
            width: 0;
            height: 0;
            content: "";
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-left: 13px solid #ffffff;
            transform: translateX(2px);
        }

        .brand-mark::after {
            position: absolute;
            right: 5px;
            bottom: 5px;
            width: 8px;
            height: 8px;
            content: "";
            border-radius: 50%;
            background: var(--color-cyan);
            box-shadow: 0 0 15px rgba(71, 229, 195, 0.8);
        }

        .brand-copy {
            min-width: 0;
        }

        .brand-name {
            display: block;
            overflow: hidden;
            color: #ffffff;
            font-size: 18px;
            font-weight: 800;
            line-height: 1.15;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .brand-description {
            display: block;
            margin-top: 4px;
            overflow: hidden;
            color: var(--color-muted);
            font-size: 11px;
            line-height: 1.2;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .nav-panel {
            display: flex;
            flex: 1;
            align-items: center;
            gap: 26px;
            min-width: 0;
        }

        .nav-links {
            display: flex;
            flex: 1;
            justify-content: center;
            align-items: center;
            gap: 8px;
        }

        .nav-link {
            position: relative;
            padding: 10px 18px;
            border-radius: 12px;
            color: var(--color-muted);
            font-size: 15px;
            font-weight: 700;
            transition:
                color var(--transition),
                background var(--transition);
        }

        .nav-link:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.06);
        }

        .nav-link.active {
            color: #ffffff;
            background: var(--color-primary-soft);
        }

        .nav-link.active::after {
            position: absolute;
            right: 18px;
            bottom: 4px;
            left: 18px;
            height: 2px;
            content: "";
            border-radius: 10px;
            background: var(--color-primary);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-search {
            position: relative;
            display: flex;
            align-items: center;
            width: 220px;
        }

        .nav-search svg {
            position: absolute;
            left: 13px;
            width: 17px;
            color: var(--color-subtle);
            pointer-events: none;
        }

        .nav-search input {
            width: 100%;
            height: 42px;
            padding: 0 14px 0 39px;
            border: 1px solid var(--color-border);
            border-radius: 13px;
            outline: none;
            color: var(--color-text);
            background: rgba(255, 255, 255, 0.055);
            transition:
                border-color var(--transition),
                background var(--transition),
                box-shadow var(--transition);
        }

        .nav-search input::placeholder {
            color: #777d96;
        }

        .nav-search input:hover {
            background: rgba(255, 255, 255, 0.075);
        }

        .nav-search input:focus {
            border-color: rgba(255, 62, 104, 0.7);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 4px rgba(255, 62, 104, 0.12);
        }

        .nav-button,
        .button,
        .mini-button {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            border: 1px solid transparent;
            cursor: pointer;
            font-weight: 800;
            line-height: 1;
            transition:
                transform var(--transition),
                border-color var(--transition),
                background var(--transition),
                color var(--transition),
                box-shadow var(--transition);
        }

        .nav-button {
            min-height: 42px;
            padding: 0 15px;
            border-radius: 13px;
            white-space: nowrap;
        }

        .nav-button.secondary {
            border-color: var(--color-border);
            color: #e5e8f5;
            background: rgba(255, 255, 255, 0.055);
        }

        .nav-button.secondary:hover {
            border-color: var(--color-border-strong);
            background: rgba(255, 255, 255, 0.1);
        }

        .nav-button.primary {
            color: #ffffff;
            background: linear-gradient(135deg, var(--color-primary), #ff7046);
            box-shadow: 0 10px 24px rgba(255, 62, 104, 0.24);
        }

        .nav-button.primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-primary);
        }

        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            margin-left: auto;
            padding: 0;
            border: 1px solid var(--color-border);
            border-radius: 13px;
            color: #ffffff;
            background: rgba(255, 255, 255, 0.06);
            cursor: pointer;
        }

        .menu-toggle span {
            display: block;
            width: 20px;
            height: 2px;
            margin: 5px auto;
            border-radius: 4px;
            background: currentColor;
            transition: transform var(--transition), opacity var(--transition);
        }

        .menu-toggle.is-active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .menu-toggle.is-active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.is-active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .hero {
            position: relative;
            overflow: hidden;
            padding: 70px 0 58px;
        }

        .hero::before {
            position: absolute;
            top: -160px;
            left: 52%;
            width: 700px;
            height: 700px;
            content: "";
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 62, 104, 0.2), transparent 64%);
            filter: blur(10px);
            pointer-events: none;
        }

        .hero::after {
            position: absolute;
            right: -180px;
            bottom: -260px;
            width: 560px;
            height: 560px;
            content: "";
            border: 1px solid rgba(141, 118, 255, 0.14);
            border-radius: 50%;
            box-shadow:
                0 0 0 70px rgba(141, 118, 255, 0.025),
                0 0 0 140px rgba(141, 118, 255, 0.018);
            pointer-events: none;
        }

        .live-strip {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 18px;
            margin-bottom: 32px;
            padding: 10px 14px;
            border: 1px solid rgba(71, 229, 195, 0.16);
            border-radius: 14px;
            color: #d8fff6;
            background: rgba(71, 229, 195, 0.065);
        }

        .live-strip-main,
        .live-strip-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 700;
        }

        .live-dot {
            width: 9px;
            height: 9px;
            flex: 0 0 9px;
            border-radius: 50%;
            background: var(--color-cyan);
            box-shadow: 0 0 0 5px rgba(71, 229, 195, 0.1), 0 0 16px rgba(71, 229, 195, 0.8);
            animation: pulse 1.8s infinite;
        }

        .live-strip-meta {
            color: var(--color-muted);
            font-weight: 500;
        }

        @keyframes pulse {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.55;
                transform: scale(0.78);
            }
        }

        .hero-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
            align-items: center;
            gap: 58px;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 18px;
            color: #ffc2cf;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.08em;
        }

        .eyebrow::before {
            width: 30px;
            height: 2px;
            content: "";
            border-radius: 4px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
        }

        .hero h1 {
            max-width: 760px;
            margin-bottom: 22px;
            font-size: clamp(40px, 5.3vw, 72px);
            font-weight: 900;
            letter-spacing: -0.055em;
        }

        .hero h1 span {
            color: transparent;
            background: linear-gradient(100deg, #ffffff 4%, #ff819d 44%, #ffbc70 82%);
            background-clip: text;
            -webkit-background-clip: text;
        }

        .hero-description {
            max-width: 680px;
            margin-bottom: 28px;
            color: var(--color-muted);
            font-size: 18px;
        }

        .hero-search {
            display: flex;
            max-width: 690px;
            padding: 7px;
            border: 1px solid var(--color-border-strong);
            border-radius: 18px;
            background: rgba(17, 21, 38, 0.86);
            box-shadow: var(--shadow-md);
        }

        .hero-search-field {
            position: relative;
            display: flex;
            flex: 1;
            align-items: center;
            min-width: 0;
        }

        .hero-search-field svg {
            position: absolute;
            left: 16px;
            width: 20px;
            color: var(--color-subtle);
        }

        .hero-search input {
            width: 100%;
            height: 52px;
            padding: 0 14px 0 48px;
            border: 0;
            outline: 0;
            color: #ffffff;
            background: transparent;
        }

        .hero-search input::placeholder {
            color: #747b96;
        }

        .search-submit {
            min-width: 122px;
            border: 0;
            border-radius: 13px;
            color: #ffffff;
            background: linear-gradient(135deg, var(--color-primary), #ff7146);
            box-shadow: 0 10px 26px rgba(255, 62, 104, 0.24);
            cursor: pointer;
            font-weight: 800;
            transition: transform var(--transition), box-shadow var(--transition);
        }

        .search-submit:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-primary);
        }

        .search-suggestions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 9px;
            margin-top: 15px;
            color: var(--color-subtle);
            font-size: 13px;
        }

        .suggestion-button {
            padding: 6px 11px;
            border: 1px solid var(--color-border);
            border-radius: 999px;
            color: var(--color-muted);
            background: rgba(255, 255, 255, 0.04);
            cursor: pointer;
            transition:
                color var(--transition),
                border-color var(--transition),
                background var(--transition);
        }

        .suggestion-button:hover {
            border-color: rgba(255, 62, 104, 0.4);
            color: #ffffff;
            background: var(--color-primary-soft);
        }

        .hero-stats {
            display: grid;
            max-width: 670px;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-top: 32px;
        }

        .stat-card {
            padding: 17px;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.035);
        }

        .stat-number {
            display: block;
            margin-bottom: 3px;
            color: #ffffff;
            font-size: 22px;
            font-weight: 900;
        }

        .stat-label {
            color: var(--color-subtle);
            font-size: 12px;
        }

        .hero-stage {
            position: relative;
            min-height: 535px;
        }

        .stage-glow {
            position: absolute;
            inset: 13% 8%;
            border-radius: 50%;
            background: rgba(255, 62, 104, 0.28);
            filter: blur(80px);
        }

        .featured-poster {
            position: absolute;
            inset: 0 36px 28px 36px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 34px;
            background:
                linear-gradient(180deg, transparent 20%, rgba(8, 10, 20, 0.18) 48%, rgba(8, 10, 20, 0.98) 100%),
                radial-gradient(circle at 67% 23%, rgba(255, 205, 134, 0.82), transparent 10%),
                linear-gradient(145deg, #443d8d 0%, #191936 42%, #e1395f 100%);
            box-shadow: 0 40px 90px rgba(0, 0, 0, 0.48);
        }

        .featured-poster::before {
            position: absolute;
            top: 11%;
            right: -3%;
            width: 66%;
            height: 72%;
            content: "";
            border-radius: 48% 0 0 42%;
            background:
                radial-gradient(circle at 45% 30%, #f9c9af 0 10%, transparent 10.5%),
                linear-gradient(155deg, rgba(16, 17, 41, 0.1), rgba(16, 17, 41, 0.95)),
                linear-gradient(90deg, #f4c090, #55243c);
            opacity: 0.9;
            transform: rotate(-7deg);
        }

        .featured-poster::after {
            position: absolute;
            top: 0;
            left: 0;
            width: 65%;
            height: 60%;
            content: "";
            background:
                linear-gradient(120deg, transparent 44%, rgba(255, 255, 255, 0.08) 45%, transparent 46%),
                linear-gradient(25deg, transparent 30%, rgba(255, 255, 255, 0.05) 31%, transparent 32%);
        }

        .poster-topline {
            position: absolute;
            z-index: 2;
            top: 24px;
            right: 24px;
            left: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .poster-badge,
        .quality-badge,
        .tag {
            display: inline-flex;
            align-items: center;
            width: fit-content;
            border-radius: 999px;
            font-weight: 800;
        }

        .poster-badge {
            gap: 7px;
            padding: 8px 11px;
            color: #ffffff;
            background: rgba(8, 10, 20, 0.58);
            backdrop-filter: blur(12px);
        }

        .poster-badge::before {
            width: 7px;
            height: 7px;
            content: "";
            border-radius: 50%;
            background: var(--color-primary);
            box-shadow: 0 0 12px rgba(255, 62, 104, 0.8);
        }

        .quality-badge {
            padding: 7px 10px;
            color: #09130f;
            background: var(--color-cyan);
            font-size: 11px;
        }

        .featured-content {
            position: absolute;
            z-index: 3;
            right: 28px;
            bottom: 28px;
            left: 28px;
        }

        .featured-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 12px;
        }

        .tag {
            padding: 6px 10px;
            color: #dce0ef;
            background: rgba(255, 255, 255, 0.1);
            font-size: 11px;
            backdrop-filter: blur(10px);
        }

        .featured-title {
            margin-bottom: 8px;
            font-size: 36px;
            font-weight: 900;
        }

        .featured-summary {
            max-width: 390px;
            margin-bottom: 20px;
            color: #c8ccdc;
            font-size: 14px;
        }

        .featured-actions {
            display: flex;
            gap: 10px;
        }

        .button {
            min-height: 48px;
            padding: 0 20px;
            border-radius: 14px;
        }

        .button.primary {
            color: #ffffff;
            background: linear-gradient(135deg, var(--color-primary), #ff7248);
            box-shadow: 0 12px 28px rgba(255, 62, 104, 0.24);
        }

        .button.primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-primary);
        }

        .button.ghost {
            border-color: var(--color-border-strong);
            color: #ffffff;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(12px);
        }

        .button.ghost:hover {
            background: rgba(255, 255, 255, 0.14);
        }

        .floating-score {
            position: absolute;
            z-index: 5;
            top: 80px;
            right: 0;
            width: 118px;
            padding: 15px;
            border: 1px solid var(--color-border-strong);
            border-radius: 18px;
            background: rgba(17, 21, 38, 0.9);
            box-shadow: var(--shadow-md);
            backdrop-filter: blur(18px);
        }

        .score-label {
            color: var(--color-muted);
            font-size: 11px;
        }

        .score-value {
            display: block;
            margin: 4px 0;
            color: var(--color-secondary);
            font-size: 27px;
            font-weight: 900;
        }

        .score-trend {
            color: var(--color-cyan);
            font-size: 11px;
            font-weight: 700;
        }

        .floating-online {
            position: absolute;
            z-index: 5;
            bottom: 0;
            left: 0;
            display: flex;
            align-items: center;
            gap: 11px;
            padding: 13px 16px;
            border: 1px solid var(--color-border-strong);
            border-radius: 16px;
            background: rgba(17, 21, 38, 0.92);
            box-shadow: var(--shadow-sm);
            backdrop-filter: blur(18px);
        }

        .avatar-stack {
            display: flex;
        }

        .avatar {
            display: grid;
            width: 29px;
            height: 29px;
            margin-left: -8px;
            place-items: center;
            border: 2px solid var(--color-surface);
            border-radius: 50%;
            color: #ffffff;
            font-size: 10px;
            font-weight: 800;
        }

        .avatar:first-child {
            margin-left: 0;
        }

        .avatar:nth-child(1) {
            background: #7a68e8;
        }

        .avatar:nth-child(2) {
            background: #e8627f;
        }

        .avatar:nth-child(3) {
            background: #319c8a;
        }

        .online-copy strong,
        .online-copy span {
            display: block;
        }

        .online-copy strong {
            font-size: 12px;
        }

        .online-copy span {
            color: var(--color-subtle);
            font-size: 10px;
        }

        main {
            overflow: hidden;
        }

        .section {
            padding: 92px 0;
        }

        .section.compact {
            padding: 74px 0;
        }

        .section-alt {
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
            background: rgba(255, 255, 255, 0.022);
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 30px;
            margin-bottom: 34px;
        }

        .section-heading {
            max-width: 720px;
        }

        .section-kicker {
            display: block;
            margin-bottom: 10px;
            color: var(--color-primary);
            font-size: 12px;
            font-weight: 900;
            letter-spacing: 0.1em;
        }

        .section-title {
            margin-bottom: 12px;
            font-size: clamp(30px, 4vw, 46px);
            font-weight: 900;
        }

        .section-description {
            max-width: 700px;
            margin-bottom: 0;
            color: var(--color-muted);
        }

        .section-action {
            display: inline-flex;
            flex-shrink: 0;
            align-items: center;
            gap: 8px;
            color: #ffffff;
            font-size: 14px;
            font-weight: 800;
        }

        .section-action span {
            display: grid;
            width: 34px;
            height: 34px;
            place-items: center;
            border: 1px solid var(--color-border);
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
            transition: transform var(--transition), background var(--transition);
        }

        .section-action:hover span {
            background: var(--color-primary);
            transform: translateX(3px);
        }

        .movie-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .movie-card {
            overflow: hidden;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            background: var(--color-surface);
            box-shadow: var(--shadow-sm);
            transition:
                transform var(--transition),
                border-color var(--transition),
                box-shadow var(--transition),
                opacity var(--transition);
        }

        .movie-card:hover {
            border-color: rgba(255, 62, 104, 0.3);
            box-shadow: var(--shadow-md);
            transform: translateY(-7px);
        }

        .movie-card.is-hidden {
            display: none;
        }

        .movie-visual {
            position: relative;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            isolation: isolate;
        }

        .movie-visual::before,
        .movie-visual::after {
            position: absolute;
            content: "";
        }

        .movie-visual::before {
            inset: 0;
            z-index: -1;
            background:
                linear-gradient(180deg, transparent 30%, rgba(7, 9, 19, 0.76) 100%),
                var(--poster-background);
            transition: transform 500ms ease;
        }

        .movie-card:hover .movie-visual::before {
            transform: scale(1.06);
        }

        .movie-visual::after {
            top: 16%;
            right: 11%;
            width: 42%;
            height: 66%;
            border-radius: 50% 50% 24% 24%;
            background:
                radial-gradient(circle at 50% 19%, rgba(255, 226, 200, 0.92) 0 13%, transparent 13.7%),
                linear-gradient(155deg, rgba(255, 255, 255, 0.36), rgba(12, 13, 31, 0.96));
            opacity: 0.76;
            transform: rotate(7deg);
        }

        .poster-one {
            --poster-background:
                radial-gradient(circle at 20% 18%, rgba(255, 214, 112, 0.82), transparent 11%),
                linear-gradient(135deg, #4a3f95, #161932 58%, #df385f);
        }

        .poster-two {
            --poster-background:
                radial-gradient(circle at 72% 25%, rgba(80, 236, 207, 0.44), transparent 18%),
                linear-gradient(145deg, #0d5d64, #10192c 52%, #2b2874);
        }

        .poster-three {
            --poster-background:
                radial-gradient(circle at 25% 29%, rgba(255, 89, 94, 0.58), transparent 15%),
                linear-gradient(145deg, #311b31, #111628 57%, #88412d);
        }

        .poster-four {
            --poster-background:
                radial-gradient(circle at 76% 18%, rgba(255, 214, 141, 0.55), transparent 12%),
                linear-gradient(145deg, #1c3c63, #171832 55%, #772d6a);
        }

        .poster-five {
            --poster-background:
                radial-gradient(circle at 23% 25%, rgba(255, 155, 66, 0.55), transparent 16%),
                linear-gradient(145deg, #72422c, #201729 52%, #8f2944);
        }

        .poster-six {
            --poster-background:
                radial-gradient(circle at 74% 22%, rgba(140, 118, 255, 0.62), transparent 16%),
                linear-gradient(145deg, #182e42, #111526 54%, #4e234b);
        }

        .visual-status {
            position: absolute;
            z-index: 3;
            top: 15px;
            left: 15px;
            display: flex;
            gap: 7px;
        }

        .visual-status .tag {
            color: #ffffff;
            background: rgba(8, 10, 20, 0.58);
        }

        .visual-quality {
            position: absolute;
            z-index: 3;
            top: 15px;
            right: 15px;
        }

        .play-button {
            position: absolute;
            z-index: 4;
            top: 50%;
            left: 50%;
            display: grid;
            width: 58px;
            height: 58px;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, 0.32);
            border-radius: 50%;
            color: #ffffff;
            background: rgba(8, 10, 20, 0.42);
            box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
            opacity: 0;
            transform: translate(-50%, -44%) scale(0.9);
            backdrop-filter: blur(12px);
            transition:
                opacity var(--transition),
                transform var(--transition),
                background var(--transition);
        }

        .play-button::before {
            width: 0;
            height: 0;
            margin-left: 4px;
            content: "";
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-left: 13px solid #ffffff;
        }

        .movie-card:hover .play-button {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        .play-button:hover {
            background: var(--color-primary);
        }

        .movie-body {
            padding: 20px;
        }

        .movie-title-row {
            display: flex;
            justify-content: space-between;
            align-items: start;
            gap: 15px;
        }

        .movie-title {
            margin-bottom: 7px;
            font-size: 21px;
            font-weight: 900;
        }

        .movie-score {
            flex-shrink: 0;
            color: var(--color-secondary);
            font-size: 17px;
            font-weight: 900;
        }

        .movie-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 7px 12px;
            margin-bottom: 14px;
            color: var(--color-subtle);
            font-size: 12px;
        }

        .movie-summary {
            min-height: 50px;
            margin-bottom: 18px;
            color: var(--color-muted);
            font-size: 13px;
        }

        .movie-actions {
            display: flex;
            gap: 9px;
        }

        .mini-button {
            min-height: 38px;
            padding: 0 13px;
            border-radius: 11px;
            font-size: 12px;
        }

        .mini-button.primary {
            flex: 1;
            color: #ffffff;
            background: var(--color-primary);
        }

        .mini-button.primary:hover {
            background: var(--color-primary-dark);
        }

        .mini-button.outline {
            border-color: var(--color-border);
            color: var(--color-muted);
            background: transparent;
        }

        .mini-button.outline:hover,
        .mini-button.outline.is-saved {
            border-color: rgba(71, 229, 195, 0.34);
            color: var(--color-cyan);
            background: rgba(71, 229, 195, 0.08);
        }

        .search-feedback {
            display: none;
            margin-top: 24px;
            padding: 18px;
            border: 1px dashed var(--color-border-strong);
            border-radius: var(--radius-md);
            color: var(--color-muted);
            text-align: center;
        }

        .search-feedback.is-visible {
            display: block;
        }

        .schedule-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
            gap: 26px;
        }

        .schedule-panel,
        .community-panel {
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            background: var(--color-surface);
            box-shadow: var(--shadow-sm);
        }

        .schedule-panel {
            padding: 14px 24px;
        }

        .schedule-item {
            display: grid;
            grid-template-columns: 85px 1fr auto;
            align-items: center;
            gap: 18px;
            padding: 21px 0;
            border-bottom: 1px solid var(--color-border);
        }

        .schedule-item:last-child {
            border-bottom: 0;
        }

        .schedule-time {
            color: #ffffff;
            font-size: 19px;
            font-weight: 900;
        }

        .schedule-time span {
            display: block;
            margin-top: 2px;
            color: var(--color-subtle);
            font-size: 10px;
            font-weight: 600;
        }

        .schedule-info strong,
        .schedule-info span {
            display: block;
        }

        .schedule-info strong {
            margin-bottom: 3px;
            font-size: 16px;
        }

        .schedule-info span {
            color: var(--color-muted);
            font-size: 12px;
        }

        .schedule-state {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 7px 10px;
            border-radius: 999px;
            color: var(--color-cyan);
            background: rgba(71, 229, 195, 0.08);
            font-size: 11px;
            font-weight: 800;
        }

        .schedule-state.upcoming {
            color: #ffc474;
            background: rgba(255, 155, 66, 0.09);
        }

        .schedule-state::before {
            width: 6px;
            height: 6px;
            content: "";
            border-radius: 50%;
            background: currentColor;
        }

        .community-panel {
            position: relative;
            overflow: hidden;
            padding: 28px;
            background:
                radial-gradient(circle at 85% 12%, rgba(255, 62, 104, 0.18), transparent 14rem),
                var(--color-surface);
        }

        .community-panel h3 {
            margin-bottom: 8px;
            font-size: 24px;
        }

        .community-panel > p {
            margin-bottom: 25px;
            color: var(--color-muted);
            font-size: 13px;
        }

        .pulse-chart {
            display: flex;
            height: 150px;
            align-items: end;
            gap: 8px;
            padding: 18px 15px 0;
            border: 1px solid var(--color-border);
            border-radius: 17px;
            background: rgba(8, 10, 20, 0.48);
        }

        .pulse-bar {
            flex: 1;
            min-width: 8px;
            height: var(--height);
            border-radius: 6px 6px 2px 2px;
            background: linear-gradient(180deg, var(--color-primary), rgba(255, 62, 104, 0.24));
            transition: height 400ms ease, filter var(--transition);
        }

        .pulse-bar:nth-child(3n) {
            background: linear-gradient(180deg, var(--color-secondary), rgba(255, 155, 66, 0.22));
        }

        .pulse-bar:hover {
            filter: brightness(1.25);
        }

        .pulse-caption {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
            color: var(--color-subtle);
            font-size: 10px;
        }

        .community-quote {
            margin-top: 22px;
            padding: 17px;
            border-left: 3px solid var(--color-primary);
            border-radius: 0 12px 12px 0;
            color: #d8dbea;
            background: rgba(255, 62, 104, 0.06);
            font-size: 13px;
        }

        .ranking-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
            gap: 26px;
        }

        .ranking-list {
            overflow: hidden;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            background: var(--color-surface);
        }

        .ranking-item {
            display: grid;
            grid-template-columns: 64px 1fr auto;
            align-items: center;
            gap: 18px;
            padding: 19px 22px;
            border-bottom: 1px solid var(--color-border);
            transition: background var(--transition);
        }

        .ranking-item:last-child {
            border-bottom: 0;
        }

        .ranking-item:hover {
            background: rgba(255, 255, 255, 0.035);
        }

        .ranking-number {
            color: #596079;
            font-size: 25px;
            font-weight: 900;
            font-style: italic;
        }

        .ranking-item:nth-child(1) .ranking-number {
            color: var(--color-primary);
        }

        .ranking-item:nth-child(2) .ranking-number {
            color: var(--color-secondary);
        }

        .ranking-item:nth-child(3) .ranking-number {
            color: var(--color-cyan);
        }

        .ranking-copy strong {
            display: block;
            margin-bottom: 4px;
            font-size: 16px;
        }

        .ranking-copy span {
            color: var(--color-subtle);
            font-size: 12px;
        }

        .ranking-trend {
            min-width: 78px;
            color: var(--color-cyan);
            font-size: 12px;
            font-weight: 800;
            text-align: right;
        }

        .ranking-trend.hot {
            color: var(--color-primary);
        }

        .ranking-highlight {
            position: relative;
            display: flex;
            min-height: 100%;
            overflow: hidden;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: var(--radius-lg);
            background:
                linear-gradient(180deg, transparent, rgba(8, 10, 20, 0.94)),
                radial-gradient(circle at 40% 20%, rgba(255, 214, 137, 0.75), transparent 11%),
                linear-gradient(145deg, #34285f, #1b203a 50%, #b43c55);
            box-shadow: var(--shadow-md);
        }

        .ranking-highlight::before {
            position: absolute;
            top: 15%;
            right: -8%;
            width: 76%;
            height: 60%;
            content: "";
            border-radius: 50% 0 0 45%;
            background:
                radial-gradient(circle at 43% 24%, rgba(255, 222, 201, 0.92) 0 13%, transparent 13.6%),
                linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(12, 14, 31, 0.96));
            opacity: 0.68;
            transform: rotate(-8deg);
        }

        .ranking-highlight-content {
            position: relative;
            z-index: 2;
        }

        .ranking-highlight h3 {
            margin: 12px 0 8px;
            font-size: 29px;
        }

        .ranking-highlight p {
            color: #cbd0df;
            font-size: 13px;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .feature-card {
            position: relative;
            overflow: hidden;
            min-height: 260px;
            padding: 28px;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            background: var(--color-surface);
            transition:
                transform var(--transition),
                border-color var(--transition),
                box-shadow var(--transition);
        }

        .feature-card:hover {
            border-color: rgba(141, 118, 255, 0.34);
            box-shadow: var(--shadow-md);
            transform: translateY(-6px);
        }

        .feature-card::after {
            position: absolute;
            right: -50px;
            bottom: -70px;
            width: 190px;
            height: 190px;
            content: "";
            border-radius: 50%;
            background: var(--feature-glow);
            filter: blur(20px);
            opacity: 0.34;
        }

        .feature-card:nth-child(1) {
            --feature-glow: var(--color-primary);
        }

        .feature-card:nth-child(2) {
            --feature-glow: var(--color-purple);
        }

        .feature-card:nth-child(3) {
            --feature-glow: var(--color-cyan);
        }

        .feature-icon {
            display: grid;
            width: 54px;
            height: 54px;
            margin-bottom: 28px;
            place-items: center;
            border: 1px solid var(--color-border);
            border-radius: 17px;
            color: var(--color-primary);
            background: rgba(255, 255, 255, 0.055);
        }

        .feature-card:nth-child(2) .feature-icon {
            color: var(--color-purple);
        }

        .feature-card:nth-child(3) .feature-icon {
            color: var(--color-cyan);
        }

        .feature-icon svg {
            width: 25px;
        }

        .feature-card h3 {
            position: relative;
            z-index: 2;
            margin-bottom: 10px;
            font-size: 22px;
        }

        .feature-card p {
            position: relative;
            z-index: 2;
            margin-bottom: 0;
            color: var(--color-muted);
            font-size: 14px;
        }

        .feature-step {
            position: absolute;
            top: 25px;
            right: 26px;
            color: rgba(255, 255, 255, 0.1);
            font-size: 42px;
            font-weight: 900;
        }

        .collection-band {
            position: relative;
            overflow: hidden;
            padding: 78px 0;
            background:
                linear-gradient(105deg, rgba(255, 62, 104, 0.15), transparent 30%),
                radial-gradient(circle at 92% 20%, rgba(141, 118, 255, 0.2), transparent 30rem),
                #0c0f1d;
        }

        .collection-band::before {
            position: absolute;
            inset: 0;
            content: "";
            opacity: 0.24;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
            background-size: 38px 38px;
        }

        .collection-header,
        .collection-grid {
            position: relative;
            z-index: 2;
        }

        .collection-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .collection-card {
            display: flex;
            min-height: 240px;
            overflow: hidden;
            flex-direction: column;
            justify-content: space-between;
            padding: 22px;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
                var(--collection-bg);
            box-shadow: var(--shadow-sm);
            transition:
                transform var(--transition),
                border-color var(--transition);
        }

        .collection-card:hover {
            border-color: rgba(255, 255, 255, 0.22);
            transform: translateY(-7px);
        }

        .collection-card:nth-child(1) {
            --collection-bg: linear-gradient(145deg, #37204d, #16182b);
        }

        .collection-card:nth-child(2) {
            --collection-bg: linear-gradient(145deg, #183f48, #14182a);
        }

        .collection-card:nth-child(3) {
            --collection-bg: linear-gradient(145deg, #513123, #191625);
        }

        .collection-card:nth-child(4) {
            --collection-bg: linear-gradient(145deg, #232f63, #181526);
        }

        .collection-count {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #cfd3e3;
            font-size: 12px;
        }

        .collection-count span:last-child {
            display: grid;
            width: 32px;
            height: 32px;
            place-items: center;
            border: 1px solid var(--color-border);
            border-radius: 50%;
            transition: background var(--transition), transform var(--transition);
        }

        .collection-card:hover .collection-count span:last-child {
            background: var(--color-primary);
            transform: rotate(-12deg);
        }

        .collection-card h3 {
            margin-bottom: 8px;
            font-size: 24px;
        }

        .collection-card p {
            margin-bottom: 0;
            color: var(--color-muted);
            font-size: 13px;
        }

        .insight-grid {
            display: grid;
            grid-template-columns: 1.35fr 0.65fr;
            gap: 24px;
        }

        .insight-featured {
            display: grid;
            overflow: hidden;
            grid-template-columns: 0.95fr 1.05fr;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            background: var(--color-surface);
            box-shadow: var(--shadow-sm);
        }

        .insight-art {
            position: relative;
            min-height: 390px;
            overflow: hidden;
            background:
                linear-gradient(180deg, transparent, rgba(8, 10, 20, 0.64)),
                radial-gradient(circle at 35% 28%, rgba(255, 208, 134, 0.72), transparent 12%),
                linear-gradient(145deg, #49438b, #1a1e3a 52%, #d73e61);
        }

        .insight-art::before {
            position: absolute;
            right: -6%;
            bottom: -5%;
            width: 83%;
            height: 78%;
            content: "";
            border-radius: 55% 10% 0 0;
            background:
                radial-gradient(circle at 48% 24%, rgba(255, 226, 207, 0.95) 0 13%, transparent 13.6%),
                linear-gradient(150deg, rgba(255, 255, 255, 0.3), rgba(11, 13, 30, 0.98));
            opacity: 0.78;
            transform: rotate(-5deg);
        }

        .insight-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 40px;
        }

        .insight-content h3 {
            margin: 15px 0 13px;
            font-size: 30px;
        }

        .insight-content p {
            color: var(--color-muted);
            font-size: 14px;
        }

        .insight-meta {
            display: flex;
            gap: 16px;
            margin-top: 16px;
            color: var(--color-subtle);
            font-size: 12px;
        }

        .insight-list {
            display: grid;
            gap: 14px;
        }

        .insight-item {
            padding: 22px;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            background: var(--color-surface);
            transition:
                transform var(--transition),
                border-color var(--transition),
                background var(--transition);
        }

        .insight-item:hover {
            border-color: rgba(255, 62, 104, 0.28);
            background: var(--color-surface-2);
            transform: translateX(5px);
        }

        .insight-item h3 {
            margin: 9px 0 8px;
            font-size: 18px;
        }

        .insight-item p {
            margin-bottom: 0;
            color: var(--color-muted);
            font-size: 12px;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            margin-top: 14px;
            color: #ffffff;
            font-size: 12px;
            font-weight: 800;
        }

        .faq-layout {
            display: grid;
            grid-template-columns: 0.7fr 1.3fr;
            gap: 58px;
        }

        .faq-intro {
            position: sticky;
            top: 115px;
            align-self: start;
        }

        .faq-intro h2 {
            margin-bottom: 15px;
            font-size: clamp(32px, 4vw, 48px);
        }

        .faq-intro p {
            color: var(--color-muted);
        }

        .faq-note {
            margin-top: 26px;
            padding: 18px;
            border: 1px solid rgba(71, 229, 195, 0.15);
            border-radius: var(--radius-md);
            color: #c9eae3;
            background: rgba(71, 229, 195, 0.05);
            font-size: 13px;
        }

        .faq-list {
            display: grid;
            gap: 12px;
        }

        .faq-item {
            overflow: hidden;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            background: var(--color-surface);
        }

        .faq-question {
            display: flex;
            width: 100%;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            padding: 21px 23px;
            border: 0;
            color: #ffffff;
            background: transparent;
            cursor: pointer;
            font-weight: 800;
            text-align: left;
            transition: background var(--transition);
        }

        .faq-question:hover {
            background: rgba(255, 255, 255, 0.035);
        }

        .faq-icon {
            position: relative;
            width: 26px;
            height: 26px;
            flex: 0 0 26px;
            border: 1px solid var(--color-border);
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
        }

        .faq-icon::before,
        .faq-icon::after {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 10px;
            height: 2px;
            content: "";
            border-radius: 3px;
            background: var(--color-muted);
            transform: translate(-50%, -50%);
            transition: transform var(--transition);
        }

        .faq-icon::after {
            transform: translate(-50%, -50%) rotate(90deg);
        }

        .faq-item.is-open .faq-icon::after {
            transform: translate(-50%, -50%) rotate(0);
        }

        .faq-answer {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 260ms ease;
        }

        .faq-answer > div {
            overflow: hidden;
        }

        .faq-answer p {
            margin: 0;
            padding: 0 23px 22px;
            color: var(--color-muted);
            font-size: 14px;
        }

        .faq-item.is-open .faq-answer {
            grid-template-rows: 1fr;
        }

        .cta-section {
            padding: 32px 0 92px;
        }

        .cta-card {
            position: relative;
            display: grid;
            overflow: hidden;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 40px;
            padding: 48px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: var(--radius-xl);
            background:
                radial-gradient(circle at 13% 15%, rgba(255, 255, 255, 0.12), transparent 18rem),
                linear-gradient(120deg, #e82d58, #9e376e 52%, #4f3d9f);
            box-shadow: 0 30px 80px rgba(255, 62, 104, 0.22);
        }

        .cta-card::before,
        .cta-card::after {
            position: absolute;
            content: "";
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 50%;
        }

        .cta-card::before {
            top: -120px;
            right: 21%;
            width: 310px;
            height: 310px;
        }

        .cta-card::after {
            right: -100px;
            bottom: -170px;
            width: 360px;
            height: 360px;
        }

        .cta-copy,
        .subscribe-form {
            position: relative;
            z-index: 2;
        }

        .cta-copy h2 {
            max-width: 650px;
            margin-bottom: 11px;
            font-size: clamp(30px, 4vw, 47px);
        }

        .cta-copy p {
            max-width: 650px;
            margin-bottom: 0;
            color: rgba(255, 255, 255, 0.82);
        }

        .subscribe-form {
            width: 360px;
        }

        .subscribe-fields {
            display: flex;
            padding: 6px;
            border: 1px solid rgba(255, 255, 255, 0.24);
            border-radius: 16px;
            background: rgba(8, 10, 20, 0.24);
            backdrop-filter: blur(10px);
        }

        .subscribe-fields input {
            min-width: 0;
            flex: 1;
            height: 48px;
            padding: 0 13px;
            border: 0;
            outline: 0;
            color: #ffffff;
            background: transparent;
        }

        .subscribe-fields input::placeholder {
            color: rgba(255, 255, 255, 0.62);
        }

        .subscribe-fields button {
            min-width: 104px;
            border: 0;
            border-radius: 12px;
            color: #202035;
            background: #ffffff;
            cursor: pointer;
            font-weight: 900;
            transition: transform var(--transition), background var(--transition);
        }

        .subscribe-fields button:hover {
            background: #fff3f6;
            transform: translateY(-2px);
        }

        .form-message {
            min-height: 21px;
            margin: 8px 4px 0;
            color: rgba(255, 255, 255, 0.8);
            font-size: 11px;
        }

        .site-footer {
            border-top: 1px solid var(--color-border);
            background: #070912;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.4fr 0.6fr 0.8fr;
            gap: 50px;
            padding: 54px 0 42px;
        }

        .footer-brand {
            max-width: 520px;
        }

        .footer-brand .brand {
            max-width: 430px;
            margin-bottom: 19px;
        }

        .footer-brand p {
            max-width: 500px;
            color: var(--color-muted);
            font-size: 13px;
        }

        .footer-column h3 {
            margin-bottom: 17px;
            color: #ffffff;
            font-size: 14px;
        }

        .footer-links {
            display: grid;
            gap: 10px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .footer-links a,
        .footer-text {
            color: var(--color-muted);
            font-size: 13px;
            transition: color var(--transition);
        }

        .footer-links a:hover {
            color: var(--color-primary);
        }

        .footer-domain {
            display: inline-flex;
            margin-top: 10px;
            padding: 7px 10px;
            border: 1px solid var(--color-border);
            border-radius: 9px;
            color: var(--color-subtle);
            background: rgba(255, 255, 255, 0.03);
            font-size: 11px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 25px;
            padding: 20px 0 26px;
            border-top: 1px solid var(--color-border);
            color: var(--color-subtle);
            font-size: 12px;
        }

        .footer-bottom p {
            margin: 0;
        }

        .toast {
            position: fixed;
            z-index: 2000;
            right: 24px;
            bottom: 24px;
            display: flex;
            max-width: calc(100% - 48px);
            align-items: center;
            gap: 11px;
            padding: 14px 17px;
            border: 1px solid var(--color-border-strong);
            border-radius: 14px;
            color: #ffffff;
            background: rgba(17, 21, 38, 0.96);
            box-shadow: var(--shadow-md);
            opacity: 0;
            pointer-events: none;
            transform: translateY(15px);
            backdrop-filter: blur(18px);
            transition: opacity var(--transition), transform var(--transition);
        }

        .toast::before {
            display: grid;
            width: 25px;
            height: 25px;
            content: "✓";
            place-items: center;
            border-radius: 50%;
            color: #07120f;
            background: var(--color-cyan);
            font-size: 13px;
            font-weight: 900;
        }

        .toast.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 1100px) {
            .nav-shell {
                gap: 18px;
            }

            .brand {
                max-width: 220px;
            }

            .nav-search {
                width: 180px;
            }

            .nav-button.secondary {
                display: none;
            }

            .hero-grid {
                grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
                gap: 35px;
            }

            .hero h1 {
                font-size: clamp(38px, 5vw, 59px);
            }

            .hero-stage {
                min-height: 480px;
            }

            .featured-poster {
                right: 18px;
                left: 18px;
            }

            .collection-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 900px) {
            .menu-toggle {
                display: block;
            }

            .nav-panel {
                position: fixed;
                top: var(--header-height);
                right: 20px;
                left: 20px;
                display: flex;
                max-height: calc(100vh - 100px);
                overflow-y: auto;
                flex-direction: column;
                align-items: stretch;
                gap: 16px;
                padding: 18px;
                border: 1px solid var(--color-border-strong);
                border-radius: 20px;
                background: rgba(13, 16, 32, 0.98);
                box-shadow: var(--shadow-md);
                opacity: 0;
                pointer-events: none;
                transform: translateY(-12px);
                backdrop-filter: blur(20px);
                transition: opacity var(--transition), transform var(--transition);
            }

            .nav-panel.is-open {
                opacity: 1;
                pointer-events: auto;
                transform: translateY(0);
            }

            .nav-links {
                justify-content: stretch;
            }

            .nav-link {
                width: 100%;
                text-align: center;
            }

            .nav-actions {
                display: grid;
                grid-template-columns: 1fr 1fr;
            }

            .nav-search {
                width: auto;
                grid-column: 1 / -1;
            }

            .nav-button.secondary {
                display: inline-flex;
            }

            .hero {
                padding-top: 42px;
            }

            .hero-grid {
                grid-template-columns: 1fr;
            }

            .hero-copy {
                text-align: center;
            }

            .hero-description,
            .hero-search,
            .hero-stats {
                margin-right: auto;
                margin-left: auto;
            }

            .eyebrow {
                justify-content: center;
            }

            .search-suggestions {
                justify-content: center;
            }

            .hero-stage {
                width: min(100%, 560px);
                min-height: 570px;
                margin: 12px auto 0;
            }

            .movie-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .schedule-layout,
            .ranking-layout,
            .faq-layout {
                grid-template-columns: 1fr;
            }

            .feature-grid {
                grid-template-columns: 1fr;
            }

            .feature-card {
                min-height: 220px;
            }

            .insight-grid {
                grid-template-columns: 1fr;
            }

            .faq-intro {
                position: static;
            }

            .cta-card {
                grid-template-columns: 1fr;
            }

            .subscribe-form {
                width: 100%;
                max-width: 520px;
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 680px) {
            .container {
                width: min(calc(100% - 28px), var(--container));
            }

            .brand {
                max-width: calc(100% - 62px);
            }

            .brand-name {
                font-size: 16px;
            }

            .brand-description {
                display: none;
            }

            .live-strip {
                align-items: flex-start;
                flex-direction: column;
                gap: 4px;
            }

            .hero {
                padding-bottom: 38px;
            }

            .hero h1 {
                font-size: clamp(36px, 11vw, 52px);
            }

            .hero-description {
                font-size: 16px;
            }

            .hero-search {
                flex-direction: column;
                gap: 6px;
                border-radius: 17px;
            }

            .hero-search-field {
                width: 100%;
            }

            .search-submit {
                width: 100%;
                min-height: 48px;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }

            .hero-stage {
                min-height: 490px;
            }

            .featured-poster {
                inset: 0 0 26px;
                border-radius: 25px;
            }

            .featured-title {
                font-size: 29px;
            }

            .featured-summary {
                font-size: 12px;
            }

            .floating-score {
                top: 65px;
                right: -7px;
                width: 103px;
                padding: 12px;
            }

            .floating-online {
                left: -5px;
            }

            .section {
                padding: 68px 0;
            }

            .section.compact {
                padding: 60px 0;
            }

            .section-header {
                align-items: flex-start;
                flex-direction: column;
                gap: 12px;
            }

            .section-title {
                font-size: 32px;
            }

            .movie-grid,
            .collection-grid {
                grid-template-columns: 1fr;
            }

            .schedule-panel {
                padding: 8px 18px;
            }

            .schedule-item {
                grid-template-columns: 68px 1fr;
                gap: 12px;
            }

            .schedule-state {
                grid-column: 2;
                justify-self: start;
            }

            .ranking-item {
                grid-template-columns: 44px 1fr;
                padding: 17px;
            }

            .ranking-trend {
                grid-column: 2;
                text-align: left;
            }

            .ranking-highlight {
                min-height: 380px;
            }

            .insight-featured {
                grid-template-columns: 1fr;
            }

            .insight-art {
                min-height: 280px;
            }

            .insight-content {
                padding: 28px;
            }

            .cta-card {
                padding: 31px 23px;
                border-radius: 24px;
            }

            .subscribe-fields {
                flex-direction: column;
                gap: 6px;
            }

            .subscribe-fields button {
                min-height: 46px;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-brand {
                grid-column: auto;
            }

            .footer-bottom {
                align-items: flex-start;
                flex-direction: column;
                gap: 8px;
            }
        }

        @media (max-width: 420px) {
            .nav-actions {
                grid-template-columns: 1fr;
            }

            .nav-search {
                grid-column: auto;
            }

            .hero-stage {
                min-height: 455px;
            }

            .featured-content {
                right: 19px;
                bottom: 22px;
                left: 19px;
            }

            .featured-actions {
                flex-direction: column;
            }

            .featured-actions .button {
                width: 100%;
            }

            .floating-score {
                display: none;
            }

            .movie-actions {
                flex-direction: column;
            }

            .mini-button {
                width: 100%;
            }

            .community-panel,
            .feature-card {
                padding: 23px;
            }

            .collection-card {
                min-height: 210px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                scroll-behavior: auto !important;
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
