/* roulang page: index */
:root {
            --bg: #080a13;
            --bg-soft: #0e1120;
            --surface: #131728;
            --surface-light: #191e33;
            --surface-glass: rgba(19, 23, 40, .78);
            --primary: #ff4fa3;
            --primary-dark: #dc287e;
            --secondary: #7c5cff;
            --cyan: #36d9ff;
            --success: #62e6a7;
            --warning: #ffc857;
            --text: #f7f7fb;
            --muted: #a7acc0;
            --border: rgba(255, 255, 255, .09);
            --border-bright: rgba(255, 79, 163, .36);
            --radius-sm: 12px;
            --radius-md: 18px;
            --radius-lg: 28px;
            --shadow-sm: 0 10px 30px rgba(0, 0, 0, .22);
            --shadow-lg: 0 30px 80px rgba(0, 0, 0, .42);
            --glow: 0 0 28px rgba(255, 79, 163, .26);
            --transition: all .28s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            min-width: 320px;
            color: var(--text);
            background:
                radial-gradient(circle at 10% 5%, rgba(124, 92, 255, .13), transparent 30%),
                radial-gradient(circle at 90% 20%, rgba(255, 79, 163, .11), transparent 28%),
                var(--bg);
            font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            overflow-x: hidden;
        }

        body::before {
            position: fixed;
            inset: 0;
            z-index: -1;
            pointer-events: none;
            content: "";
            opacity: .24;
            background-image:
                linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
            background-size: 48px 48px;
            mask-image: linear-gradient(to bottom, #000, transparent 80%);
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        img {
            display: block;
            max-width: 100%;
        }

        button,
        input {
            font: inherit;
        }

        button,
        a,
        input {
            outline: none;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 3px solid rgba(54, 217, 255, .62);
            outline-offset: 3px;
        }

        ::selection {
            color: #fff;
            background: var(--primary);
        }

        .container {
            max-width: 1220px;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 1030;
            background: rgba(7, 9, 18, .88);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 12px 36px rgba(0, 0, 0, .18);
            backdrop-filter: blur(18px);
        }

        .site-header::after {
            position: absolute;
            right: 0;
            bottom: -1px;
            left: 0;
            height: 1px;
            content: "";
            background: linear-gradient(90deg, transparent, var(--primary), var(--cyan), transparent);
            opacity: .56;
        }

        .navbar {
            min-height: 78px;
            padding: 12px 0;
        }

        .navbar-brand {
            display: inline-flex;
            align-items: center;
            gap: 11px;
            max-width: 440px;
            padding: 0;
            color: #fff !important;
            font-size: 1.05rem;
            font-weight: 800;
            letter-spacing: -.02em;
        }

        .brand-icon {
            position: relative;
            display: grid;
            flex: 0 0 42px;
            width: 42px;
            height: 42px;
            place-items: center;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, .2);
            border-radius: 14px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            box-shadow: var(--glow);
        }

        .brand-icon::after {
            position: absolute;
            inset: -5px;
            z-index: -1;
            content: "";
            border: 1px solid rgba(255, 79, 163, .22);
            border-radius: 17px;
        }

        .brand-text {
            display: block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .navbar-toggler {
            padding: 9px 11px;
            color: #fff;
            border: 1px solid var(--border-bright);
            border-radius: 12px;
            background: rgba(255, 255, 255, .05);
            box-shadow: none !important;
        }

        .navbar-toggler:hover {
            background: rgba(255, 79, 163, .14);
        }

        .navbar-nav {
            gap: 8px;
        }

        .navbar .nav-link {
            position: relative;
            padding: 10px 17px !important;
            color: var(--muted);
            border-radius: 12px;
            font-size: .95rem;
            font-weight: 700;
        }

        .navbar .nav-link:hover,
        .navbar .nav-link.active {
            color: #fff;
            background: rgba(255, 79, 163, .1);
            text-shadow: 0 0 16px rgba(255, 79, 163, .72);
        }

        .navbar .nav-link.active::after {
            position: absolute;
            right: 18px;
            bottom: 4px;
            left: 18px;
            height: 2px;
            content: "";
            border-radius: 10px;
            background: var(--primary);
            box-shadow: 0 0 12px var(--primary);
        }

        .nav-search {
            position: relative;
            width: 230px;
        }

        .nav-search i {
            position: absolute;
            top: 50%;
            left: 15px;
            z-index: 2;
            color: #8d93aa;
            transform: translateY(-50%);
        }

        .nav-search .form-control {
            height: 44px;
            padding: 10px 15px 10px 42px;
            color: #fff;
            border: 1px solid var(--border);
            border-radius: 14px;
            background: rgba(255, 255, 255, .05);
            box-shadow: none;
        }

        .nav-search .form-control::placeholder {
            color: #777e96;
        }

        .nav-search .form-control:focus {
            border-color: var(--primary);
            background: rgba(255, 255, 255, .08);
            box-shadow: 0 0 0 4px rgba(255, 79, 163, .12);
        }

        .btn-neon,
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            min-height: 48px;
            padding: 12px 22px;
            border: 1px solid transparent;
            border-radius: 14px;
            font-weight: 800;
            transition: var(--transition);
        }

        .btn-neon {
            color: #fff;
            border-color: rgba(255, 255, 255, .16);
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            box-shadow: 0 12px 28px rgba(255, 79, 163, .26);
        }

        .btn-neon:hover,
        .btn-neon:active {
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 18px 38px rgba(255, 79, 163, .36);
        }

        .btn-ghost {
            color: #fff;
            border-color: var(--border);
            background: rgba(255, 255, 255, .055);
        }

        .btn-ghost:hover,
        .btn-ghost:active {
            color: #fff;
            border-color: rgba(54, 217, 255, .36);
            background: rgba(54, 217, 255, .09);
            transform: translateY(-2px);
        }

        .hero {
            position: relative;
            min-height: 720px;
            display: flex;
            align-items: center;
            overflow: hidden;
            border-bottom: 1px solid var(--border);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(8, 10, 19, .98) 0%, rgba(8, 10, 19, .86) 44%, rgba(8, 10, 19, .3) 100%),
                linear-gradient(0deg, var(--bg) 0%, transparent 35%),
                url("https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?auto=format&fit=crop&w=1900&q=86") center/cover no-repeat;
        }

        .hero-bg::after {
            position: absolute;
            inset: 0;
            content: "";
            background:
                radial-gradient(circle at 70% 35%, rgba(255, 79, 163, .18), transparent 26%),
                linear-gradient(110deg, transparent 55%, rgba(124, 92, 255, .15));
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 100px 0 110px;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 22px;
            padding: 8px 13px;
            color: #ffb2d5;
            border: 1px solid rgba(255, 79, 163, .28);
            border-radius: 999px;
            background: rgba(255, 79, 163, .09);
            font-size: .85rem;
            font-weight: 800;
            letter-spacing: .04em;
            box-shadow: inset 0 0 20px rgba(255, 79, 163, .05);
        }

        .eyebrow-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: 0 0 12px var(--primary);
            animation: pulse 1.8s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: .45; transform: scale(.8); }
            50% { opacity: 1; transform: scale(1.16); }
        }

        .hero h1 {
            max-width: 780px;
            margin: 0 0 24px;
            font-size: clamp(2.7rem, 6vw, 5.8rem);
            font-weight: 900;
            line-height: 1.04;
            letter-spacing: -.06em;
        }

        .hero h1 .gradient-text {
            display: block;
            color: transparent;
            background: linear-gradient(90deg, #fff 0%, #ff9dcc 36%, #9c8aff 70%, #60e5ff 100%);
            background-clip: text;
            -webkit-background-clip: text;
            filter: drop-shadow(0 0 24px rgba(255, 79, 163, .2));
        }

        .hero-description {
            max-width: 660px;
            margin-bottom: 30px;
            color: #c3c7d6;
            font-size: 1.08rem;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 13px;
            margin-bottom: 36px;
        }

        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 13px;
        }

        .meta-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            color: #c8ccda;
            border: 1px solid var(--border);
            border-radius: 999px;
            background: rgba(8, 10, 19, .48);
            font-size: .85rem;
            backdrop-filter: blur(10px);
        }

        .meta-chip i {
            color: var(--cyan);
        }

        .hero-float-card {
            position: absolute;
            right: 7%;
            bottom: 11%;
            z-index: 3;
            width: min(360px, 32vw);
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, .13);
            border-radius: 24px;
            background: rgba(14, 17, 32, .72);
            box-shadow: var(--shadow-lg);
            backdrop-filter: blur(18px);
        }

        .float-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .float-card-title {
            font-size: .9rem;
            font-weight: 800;
        }

        .live-badge {
            padding: 5px 9px;
            color: #b8ffe0;
            border: 1px solid rgba(98, 230, 167, .25);
            border-radius: 999px;
            background: rgba(98, 230, 167, .1);
            font-size: .72rem;
            font-weight: 800;
        }

        .float-card-item {
            display: grid;
            grid-template-columns: 58px 1fr auto;
            gap: 12px;
            align-items: center;
            padding: 11px 0;
            border-top: 1px solid var(--border);
        }

        .float-thumb {
            width: 58px;
            height: 42px;
            overflow: hidden;
            border-radius: 10px;
        }

        .float-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .float-name {
            margin: 0;
            font-size: .85rem;
            font-weight: 800;
        }

        .float-info {
            margin: 2px 0 0;
            color: var(--muted);
            font-size: .72rem;
        }

        .float-score {
            color: var(--warning);
            font-size: .8rem;
            font-weight: 900;
        }

        main {
            position: relative;
        }

        .section {
            position: relative;
            padding: 94px 0;
        }

        .section-sm {
            padding: 68px 0;
        }

        .section-dark {
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            background:
                linear-gradient(135deg, rgba(124, 92, 255, .055), transparent 46%),
                var(--bg-soft);
        }

        .section-header {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 38px;
        }

        .section-kicker {
            display: block;
            margin-bottom: 8px;
            color: var(--primary);
            font-size: .82rem;
            font-weight: 900;
            letter-spacing: .13em;
        }

        .section-title {
            margin: 0;
            font-size: clamp(1.85rem, 3.2vw, 3rem);
            font-weight: 900;
            letter-spacing: -.04em;
        }

        .section-intro {
            max-width: 560px;
            margin: 12px 0 0;
            color: var(--muted);
        }

        .section-link {
            display: inline-flex;
            flex: 0 0 auto;
            align-items: center;
            gap: 8px;
            color: #dce0ed;
            font-size: .9rem;
            font-weight: 800;
        }

        .section-link i {
            color: var(--primary);
            transition: var(--transition);
        }

        .section-link:hover {
            color: #fff;
        }

        .section-link:hover i {
            transform: translateX(4px);
        }

        .feature-card {
            height: 100%;
            padding: 28px;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            background: linear-gradient(145deg, rgba(25, 30, 51, .88), rgba(15, 18, 32, .9));
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .feature-card:hover {
            border-color: rgba(255, 79, 163, .28);
            transform: translateY(-7px);
            box-shadow: 0 22px 50px rgba(0, 0, 0, .3), var(--glow);
        }

        .feature-icon {
            display: grid;
            width: 52px;
            height: 52px;
            margin-bottom: 22px;
            place-items: center;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(255, 79, 163, .92), rgba(124, 92, 255, .9));
            box-shadow: 0 12px 26px rgba(124, 92, 255, .19);
        }

        .feature-card:nth-child(2) .feature-icon {
            background: linear-gradient(135deg, #1fb5d5, #6264ea);
        }

        .feature-card:nth-child(3) .feature-icon {
            background: linear-gradient(135deg, #e88935, #ee4c8b);
        }

        .feature-card h3 {
            margin-bottom: 10px;
            font-size: 1.15rem;
            font-weight: 850;
        }

        .feature-card p {
            margin: 0;
            color: var(--muted);
            font-size: .92rem;
        }

        .poster-card {
            position: relative;
            height: 100%;
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            background: var(--surface);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .poster-card:hover {
            border-color: rgba(255, 79, 163, .32);
            transform: translateY(-8px);
            box-shadow: 0 25px 55px rgba(0, 0, 0, .36), var(--glow);
        }

        .poster-image {
            position: relative;
            height: 265px;
            overflow: hidden;
        }

        .poster-image::after {
            position: absolute;
            inset: 0;
            content: "";
            background: linear-gradient(to top, rgba(12, 14, 26, .98), transparent 60%);
        }

        .poster-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease;
        }

        .poster-card:hover .poster-image img {
            transform: scale(1.065);
        }

        .poster-badges {
            position: absolute;
            top: 14px;
            right: 14px;
            left: 14px;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .content-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 5px 9px;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: 999px;
            background: rgba(8, 10, 19, .72);
            font-size: .72rem;
            font-weight: 800;
            backdrop-filter: blur(8px);
        }

        .content-badge.hot {
            border-color: rgba(255, 79, 163, .34);
            background: rgba(220, 40, 126, .82);
        }

        .poster-play {
            position: absolute;
            right: 18px;
            bottom: 18px;
            z-index: 3;
            display: grid;
            width: 48px;
            height: 48px;
            place-items: center;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, .24);
            border-radius: 50%;
            background: rgba(255, 79, 163, .84);
            box-shadow: 0 10px 25px rgba(255, 79, 163, .28);
            transform: translateY(8px);
            opacity: 0;
            transition: var(--transition);
        }

        .poster-card:hover .poster-play {
            transform: translateY(0);
            opacity: 1;
        }

        .poster-body {
            padding: 20px;
        }

        .poster-type {
            margin-bottom: 7px;
            color: var(--cyan);
            font-size: .76rem;
            font-weight: 850;
        }

        .poster-title {
            margin-bottom: 8px;
            font-size: 1.08rem;
            font-weight: 850;
        }

        .poster-summary {
            min-height: 48px;
            margin-bottom: 14px;
            color: var(--muted);
            font-size: .86rem;
            line-height: 1.65;
        }

        .poster-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 14px;
            color: #9298ac;
            border-top: 1px solid var(--border);
            font-size: .78rem;
        }

        .poster-score {
            color: var(--warning);
            font-weight: 900;
        }

        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 9px;
            margin-bottom: 28px;
        }

        .filter-button {
            padding: 9px 15px;
            color: var(--muted);
            border: 1px solid var(--border);
            border-radius: 999px;
            background: rgba(255, 255, 255, .035);
            font-size: .85rem;
            font-weight: 800;
            transition: var(--transition);
        }

        .filter-button:hover,
        .filter-button.active {
            color: #fff;
            border-color: rgba(255, 79, 163, .36);
            background: rgba(255, 79, 163, .13);
            box-shadow: 0 0 18px rgba(255, 79, 163, .1);
        }

        .editorial-card {
            position: relative;
            min-height: 480px;
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            background:
                linear-gradient(to top, rgba(7, 9, 18, .98), rgba(7, 9, 18, .12)),
                url("https://images.unsplash.com/photo-1485846234645-a62644f84728?auto=format&fit=crop&w=1200&q=85") center/cover;
            box-shadow: var(--shadow-lg);
        }

        .editorial-content {
            position: absolute;
            right: 0;
            bottom: 0;
            left: 0;
            padding: 40px;
        }

        .editorial-content h3 {
            max-width: 620px;
            margin: 14px 0;
            font-size: clamp(1.65rem, 3vw, 2.75rem);
            font-weight: 900;
            line-height: 1.2;
            letter-spacing: -.04em;
        }

        .editorial-content p {
            max-width: 650px;
            margin-bottom: 22px;
            color: #c4c8d7;
        }

        .update-panel {
            height: 100%;
            padding: 28px;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            background: var(--surface);
            box-shadow: var(--shadow-sm);
        }

        .update-panel h3 {
            margin-bottom: 22px;
            font-size: 1.2rem;
            font-weight: 850;
        }

        .update-item {
            display: grid;
            grid-template-columns: 42px 1fr auto;
            gap: 13px;
            align-items: center;
            padding: 16px 0;
            border-bottom: 1px solid var(--border);
        }

        .update-item:last-child {
            border-bottom: 0;
        }

        .update-index {
            color: var(--primary);
            font-size: 1rem;
            font-weight: 900;
            font-variant-numeric: tabular-nums;
        }

        .update-name {
            margin: 0 0 3px;
            font-size: .92rem;
            font-weight: 800;
        }

        .update-desc {
            margin: 0;
            color: var(--muted);
            font-size: .76rem;
        }

        .update-tag {
            padding: 5px 8px;
            color: #b8ffe0;
            border-radius: 8px;
            background: rgba(98, 230, 167, .09);
            font-size: .7rem;
            font-weight: 800;
        }

        .stats-wrap {
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            background:
                radial-gradient(circle at 15% 20%, rgba(255, 79, 163, .14), transparent 26%),
                radial-gradient(circle at 85% 80%, rgba(54, 217, 255, .11), transparent 30%),
                var(--surface);
            box-shadow: var(--shadow-lg);
        }

        .stat-item {
            position: relative;
            padding: 38px 25px;
            text-align: center;
        }

        .stat-item:not(:last-child)::after {
            position: absolute;
            top: 28px;
            right: 0;
            bottom: 28px;
            width: 1px;
            content: "";
            background: var(--border);
        }

        .stat-value {
            margin-bottom: 5px;
            color: #fff;
            font-size: clamp(2rem, 4vw, 3.6rem);
            font-weight: 950;
            line-height: 1;
            letter-spacing: -.05em;
        }

        .stat-value span {
            color: var(--primary);
        }

        .stat-label {
            color: var(--muted);
            font-size: .86rem;
        }

        .step-card {
            position: relative;
            height: 100%;
            padding: 28px;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            background: rgba(19, 23, 40, .78);
            transition: var(--transition);
        }

        .step-card:hover {
            border-color: rgba(54, 217, 255, .27);
            background: var(--surface-light);
            transform: translateY(-5px);
        }

        .step-number {
            display: grid;
            width: 45px;
            height: 45px;
            margin-bottom: 20px;
            place-items: center;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: 14px;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            font-weight: 900;
            box-shadow: 0 10px 26px rgba(124, 92, 255, .24);
        }

        .step-card h3 {
            margin-bottom: 10px;
            font-size: 1.08rem;
            font-weight: 850;
        }

        .step-card p {
            margin: 0;
            color: var(--muted);
            font-size: .9rem;
        }

        .notice-box {
            display: flex;
            gap: 15px;
            align-items: flex-start;
            margin-top: 28px;
            padding: 18px 20px;
            color: #c8ccda;
            border: 1px solid rgba(54, 217, 255, .18);
            border-radius: 16px;
            background: rgba(54, 217, 255, .055);
            font-size: .86rem;
        }

        .notice-box i {
            margin-top: 3px;
            color: var(--cyan);
        }

        .faq-wrap {
            max-width: 900px;
            margin: 0 auto;
        }

        .accordion-item {
            margin-bottom: 13px;
            overflow: hidden;
            color: var(--text);
            border: 1px solid var(--border) !important;
            border-radius: 16px !important;
            background: var(--surface);
        }

        .accordion-button {
            padding: 20px 22px;
            color: #fff;
            background: var(--surface);
            box-shadow: none !important;
            font-weight: 850;
        }

        .accordion-button:not(.collapsed) {
            color: #fff;
            background: linear-gradient(90deg, rgba(255, 79, 163, .1), rgba(124, 92, 255, .05));
        }

        .accordion-button::after {
            filter: invert(1) grayscale(1);
        }

        .accordion-button:focus {
            border-color: transparent;
            box-shadow: inset 0 0 0 2px rgba(255, 79, 163, .18) !important;
        }

        .accordion-body {
            padding: 2px 22px 22px;
            color: var(--muted);
            background: var(--surface);
            font-size: .92rem;
        }

        .cta-section {
            padding: 50px 0 100px;
        }

        .cta-box {
            position: relative;
            overflow: hidden;
            padding: 62px;
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 32px;
            background:
                radial-gradient(circle at 80% 20%, rgba(54, 217, 255, .23), transparent 24%),
                radial-gradient(circle at 10% 90%, rgba(255, 79, 163, .26), transparent 30%),
                linear-gradient(135deg, #1d173d, #20112c 55%, #112539);
            box-shadow: var(--shadow-lg);
        }

        .cta-box::before {
            position: absolute;
            top: -120px;
            right: -80px;
            width: 300px;
            height: 300px;
            content: "";
            border: 1px solid rgba(255, 255, 255, .11);
            border-radius: 50%;
            box-shadow: 0 0 0 35px rgba(255, 255, 255, .025), 0 0 0 70px rgba(255, 255, 255, .018);
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 760px;
        }

        .cta-box h2 {
            margin-bottom: 14px;
            font-size: clamp(2rem, 4vw, 3.8rem);
            font-weight: 950;
            line-height: 1.12;
            letter-spacing: -.05em;
        }

        .cta-box p {
            max-width: 650px;
            margin-bottom: 28px;
            color: #d1d4df;
        }

        .site-footer {
            padding: 52px 0 28px;
            border-top: 1px solid var(--border);
            background: #070911;
        }

        .footer-brand {
            display: inline-flex;
            align-items: center;
            gap: 11px;
            margin-bottom: 16px;
            font-size: 1.05rem;
            font-weight: 900;
        }

        .footer-description {
            max-width: 560px;
            margin-bottom: 0;
            color: var(--muted);
            font-size: .88rem;
        }

        .footer-title {
            margin-bottom: 14px;
            font-size: .9rem;
            font-weight: 850;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 9px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .footer-links a {
            color: var(--muted);
            font-size: .86rem;
        }

        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(3px);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin-top: 38px;
            padding-top: 24px;
            color: #747b91;
            border-top: 1px solid var(--border);
            font-size: .78rem;
        }

        .footer-status {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .footer-status::before {
            width: 7px;
            height: 7px;
            content: "";
            border-radius: 50%;
            background: var(--success);
            box-shadow: 0 0 10px var(--success);
        }

        .back-top {
            position: fixed;
            right: 22px;
            bottom: 22px;
            z-index: 1020;
            display: grid;
            width: 46px;
            height: 46px;
            place-items: center;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, .16);
            border-radius: 14px;
            background: rgba(19, 23, 40, .85);
            box-shadow: var(--shadow-sm);
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            backdrop-filter: blur(14px);
            transition: var(--transition);
        }

        .back-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-top:hover {
            color: #fff;
            border-color: var(--primary);
            background: var(--primary);
            box-shadow: var(--glow);
        }

        .empty-result {
            display: none;
            padding: 38px;
            color: var(--muted);
            border: 1px dashed var(--border-bright);
            border-radius: var(--radius-md);
            background: rgba(255, 79, 163, .045);
            text-align: center;
        }

        @media (max-width: 1199.98px) {
            .navbar-brand {
                max-width: 330px;
            }

            .nav-search {
                width: 190px;
            }

            .hero-float-card {
                right: 3%;
                width: 330px;
            }
        }

        @media (max-width: 991.98px) {
            .navbar {
                min-height: 70px;
            }

            .navbar-collapse {
                margin-top: 14px;
                padding: 18px;
                border: 1px solid var(--border);
                border-radius: 17px;
                background: rgba(14, 17, 32, .97);
                box-shadow: var(--shadow-lg);
            }

            .navbar-nav {
                margin-bottom: 14px;
            }

            .navbar .nav-link {
                padding: 11px 14px !important;
            }

            .navbar .nav-link.active::after {
                right: auto;
                bottom: 8px;
                left: 3px;
                width: 3px;
                height: 24px;
            }

            .nav-search {
                width: 100%;
            }

            .hero {
                min-height: auto;
            }

            .hero-bg {
                background:
                    linear-gradient(90deg, rgba(8, 10, 19, .98), rgba(8, 10, 19, .65)),
                    linear-gradient(0deg, var(--bg), transparent 55%),
                    url("https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?auto=format&fit=crop&w=1400&q=84") center/cover;
            }

            .hero-content {
                padding: 105px 0 95px;
            }

            .hero h1 {
                max-width: 720px;
            }

            .hero-float-card {
                display: none;
            }

            .section {
                padding: 76px 0;
            }

            .section-header {
                align-items: flex-start;
                flex-direction: column;
                gap: 16px;
            }

            .editorial-card {
                min-height: 430px;
            }

            .stat-item:nth-child(2)::after {
                display: none;
            }

            .stat-item:nth-child(-n+2) {
                border-bottom: 1px solid var(--border);
            }

            .cta-box {
                padding: 48px 38px;
            }
        }

        @media (max-width: 767.98px) {
            .navbar-brand {
                max-width: calc(100vw - 105px);
                font-size: .93rem;
            }

            .brand-icon {
                flex-basis: 38px;
                width: 38px;
                height: 38px;
            }

            .hero-content {
                padding: 86px 0 82px;
            }

            .hero h1 {
                font-size: clamp(2.45rem, 12vw, 4.2rem);
            }

            .hero-description {
                font-size: .98rem;
            }

            .hero-actions .btn-neon,
            .hero-actions .btn-ghost {
                flex: 1 1 190px;
            }

            .section,
            .section-sm {
                padding: 64px 0;
            }

            .poster-image {
                height: 310px;
            }

            .editorial-card {
                min-height: 460px;
            }

            .editorial-content {
                padding: 28px;
            }

            .stat-item::after {
                display: none !important;
            }

            .stat-item {
                border-bottom: 1px solid var(--border);
            }

            .stat-item:last-child {
                border-bottom: 0;
            }

            .cta-section {
                padding-bottom: 70px;
            }

            .cta-box {
                padding: 38px 26px;
                border-radius: 24px;
            }

            .footer-bottom {
                align-items: flex-start;
                flex-direction: column;
                gap: 8px;
            }
        }

        @media (max-width: 519.98px) {
            .navbar-brand {
                max-width: calc(100vw - 88px);
            }

            .brand-text {
                font-size: .84rem;
            }

            .hero {
                text-align: left;
            }

            .hero h1 {
                font-size: 2.42rem;
            }

            .hero-meta {
                gap: 8px;
            }

            .meta-chip {
                padding: 7px 10px;
                font-size: .76rem;
            }

            .section-title {
                font-size: 1.85rem;
            }

            .section-header {
                margin-bottom: 28px;
            }

            .feature-card,
            .step-card,
            .update-panel {
                padding: 22px;
            }

            .poster-image {
                height: 280px;
            }

            .editorial-card {
                min-height: 510px;
            }

            .editorial-content {
                padding: 24px;
            }

            .filter-bar {
                flex-wrap: nowrap;
                overflow-x: auto;
                padding-bottom: 8px;
                scrollbar-width: none;
            }

            .filter-bar::-webkit-scrollbar {
                display: none;
            }

            .filter-button {
                flex: 0 0 auto;
            }

            .notice-box {
                padding: 16px;
            }

            .accordion-button {
                padding: 17px 18px;
                font-size: .92rem;
            }

            .accordion-body {
                padding: 0 18px 18px;
            }

            .back-top {
                right: 15px;
                bottom: 15px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                scroll-behavior: auto !important;
                animation-duration: .01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: .01ms !important;
            }
        }
