/* roulang page: index */
:root {
            --lava: #FF4D2E;
            --lava-light: #FF6B4D;
            --thunder: #9D2EF4;
            --thunder-light: #B355F7;
            --abyss: #0A0E16;
            --abyss-deeper: #03050A;
            --gold: #F0B90B;
            --cyan-data: #00F7F7;
            --card-bg: #121A24;
            --text-soft: #94A3B8;
            --text-bright: #E2E8F0;
            --text-heading: #F8FAFC;
            --border-subtle: rgba(157, 46, 244, 0.2);
            --border-strong: rgba(157, 46, 244, 0.45);
            --radius-card: 16px;
            --radius-dock: 40px;
            --shadow-glow-purple: 0 0 25px rgba(157, 46, 244, 0.35);
            --shadow-glow-purple-sm: 0 0 10px rgba(157, 46, 244, 0.2);
            --shadow-card-hover: 0 0 30px rgba(157, 46, 244, 0.45);
            --shadow-dock: 0 8px 40px rgba(0, 0, 0, 0.6);
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'Inter', 'Noto Sans SC', sans-serif;
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-soft);
            background: var(--abyss);
            background-image: radial-gradient(ellipse at 50% 30%, #0f1525 0%, #0A0E16 40%, #03050A 100%);
            background-attachment: fixed;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--thunder-light);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
            transition: all var(--transition-smooth);
        }
        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--thunder-light);
            outline-offset: 3px;
            border-radius: 8px;
        }
        input {
            font-family: inherit;
            border: none;
            outline: none;
        }

        ::selection {
            background: rgba(157, 46, 244, 0.4);
            color: #F8FAFC;
        }
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--abyss);
        }
        ::-webkit-scrollbar-thumb {
            background: rgba(157, 46, 244, 0.35);
            border-radius: 3px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: rgba(157, 46, 244, 0.6);
        }

        .container-main {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        @media (max-width: 768px) {
            .container-main {
                padding: 0 16px;
            }
        }

        /* Dock Navigation */
        .dock-nav {
            position: fixed;
            top: 16px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            width: calc(100% - 32px);
            max-width: 720px;
            background: rgba(10, 14, 22, 0.75);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-dock);
            padding: 10px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            box-shadow: var(--shadow-dock);
            transition: all var(--transition-smooth);
        }
        .dock-nav.scrolled {
            transform: translateX(-50%) scale(0.98);
            background: rgba(10, 14, 22, 0.9);
            border-color: rgba(255, 255, 255, 0.15);
        }
        .dock-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 800;
            font-size: 1.15rem;
            color: var(--text-heading);
            white-space: nowrap;
            flex-shrink: 0;
        }
        .dock-logo .logo-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--lava), var(--thunder));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            position: relative;
            overflow: hidden;
        }
        .dock-logo .logo-icon::after {
            content: '';
            position: absolute;
            top: -2px;
            right: -2px;
            width: 10px;
            height: 10px;
            background: var(--gold);
            border-radius: 50%;
            animation: logo-pulse 2s ease-in-out infinite;
        }
        @keyframes logo-pulse {
            0%,
            100% {
                transform: scale(1);
                opacity: 0.8;
            }
            50% {
                transform: scale(1.6);
                opacity: 1;
            }
        }
        .dock-nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: nowrap;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .dock-nav-links::-webkit-scrollbar {
            display: none;
        }
        .dock-nav-links a {
            display: inline-block;
            padding: 8px 14px;
            border-radius: 24px;
            font-size: 0.875rem;
            font-weight: 600;
            color: #cbd5e1;
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
        }
        .dock-nav-links a:hover,
        .dock-nav-links a.active {
            color: #fff;
            background: rgba(157, 46, 244, 0.25);
            box-shadow: 0 0 12px rgba(157, 46, 244, 0.2);
        }
        .dock-nav-links a.active {
            background: rgba(157, 46, 244, 0.35);
            box-shadow: 0 0 16px rgba(157, 46, 244, 0.3);
        }
        .dock-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 18px;
            border-radius: 28px;
            font-size: 0.85rem;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(135deg, var(--lava), var(--thunder));
            white-space: nowrap;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 18px rgba(255, 77, 46, 0.3);
            transition: all var(--transition-smooth);
        }
        .dock-cta-btn:hover {
            box-shadow: 0 0 28px rgba(255, 77, 46, 0.5), 0 0 35px rgba(157, 46, 244, 0.3);
            transform: translateY(-1px);
            color: #fff;
        }
        .dock-cta-btn::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
            animation: btn-shine 2.5s ease-in-out infinite;
        }
        @keyframes btn-shine {
            0%,
            100% {
                transform: translate(0, 0);
            }
            50% {
                transform: translate(30%, 20%);
            }
        }
        .dock-cta-btn span {
            position: relative;
            z-index: 1;
        }
        .dock-mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            padding: 4px;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .dock-nav {
                max-width: calc(100% - 16px);
                padding: 10px 16px;
                border-radius: 32px;
            }
            .dock-nav-links {
                display: none;
            }
            .dock-nav-links.mobile-open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: calc(100% + 12px);
                left: 0;
                right: 0;
                background: rgba(18, 26, 36, 0.95);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 20px;
                padding: 12px;
                gap: 4px;
                box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
            }
            .dock-nav-links.mobile-open a {
                width: 100%;
                text-align: center;
                padding: 12px 16px;
                border-radius: 14px;
            }
            .dock-mobile-toggle {
                display: block;
            }
            .dock-cta-btn {
                font-size: 0.78rem;
                padding: 8px 14px;
            }
        }

        /* Hero Section */
        .hero-section {
            padding-top: 120px;
            padding-bottom: 60px;
            position: relative;
            min-height: 85vh;
            display: flex;
            align-items: center;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 40% 50%, rgba(10, 14, 22, 0.55) 0%, rgba(10, 14, 22, 0.85) 60%, #03050A 100%);
            z-index: 1;
        }
        .hero-section>* {
            position: relative;
            z-index: 2;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .hero-section {
                padding-top: 100px;
                min-height: auto;
            }
        }
        .hero-left-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr 1fr;
            gap: 12px;
        }
        @media (max-width: 520px) {
            .hero-left-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto;
                gap: 8px;
            }
        }
        .hero-mini-card {
            background: rgba(18, 26, 36, 0.8);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 14px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            backdrop-filter: blur(8px);
            transition: all var(--transition-smooth);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .hero-mini-card:hover {
            border-color: var(--thunder);
            box-shadow: var(--shadow-glow-purple-sm);
            transform: translateY(-2px);
        }
        .hero-mini-card .live-dot {
            position: absolute;
            top: 8px;
            right: 10px;
            width: 8px;
            height: 8px;
            background: var(--lava);
            border-radius: 50%;
            animation: live-blink 1s ease-in-out infinite;
        }
        @keyframes live-blink {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 6px var(--lava);
            }
            50% {
                opacity: 0.25;
                box-shadow: 0 0 2px var(--lava);
            }
        }
        .hero-mini-card .match-tag {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }
        .hero-mini-card .match-teams {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-heading);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .hero-mini-card .match-score {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--cyan-data);
            text-shadow: 0 0 8px rgba(0, 247, 247, 0.5);
        }
        .hero-right {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .hero-h1 {
            font-size: 3.6rem;
            font-weight: 900;
            line-height: 1.15;
            color: var(--text-heading);
            background: linear-gradient(180deg, #fff 0%, #fca5a5 30%, #c084fc 70%, #fff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            letter-spacing: -0.02em;
        }
        @media (max-width: 768px) {
            .hero-h1 {
                font-size: 2.2rem;
            }
        }
        .hero-subtitle {
            font-size: 1.05rem;
            color: #cbd5e1;
            line-height: 1.6;
            max-width: 480px;
        }
        .hero-subtitle .data-highlight {
            color: var(--cyan-data);
            font-weight: 700;
            font-family: 'JetBrains Mono', monospace;
        }
        .hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 32px;
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            background: linear-gradient(135deg, #FF5C3A 0%, var(--lava) 40%, var(--thunder) 100%);
            box-shadow: 0 0 22px rgba(255, 77, 46, 0.35);
            transition: all var(--transition-smooth);
            border: none;
            cursor: pointer;
        }
        .btn-primary:hover {
            box-shadow: 0 0 35px rgba(255, 77, 46, 0.55), 0 0 40px rgba(157, 46, 244, 0.3);
            transform: translateY(-2px);
            color: #fff;
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 32px;
            font-weight: 700;
            font-size: 1rem;
            color: #e2e8f0;
            background: transparent;
            border: 2px solid var(--thunder);
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .btn-secondary:hover {
            background: rgba(157, 46, 244, 0.18);
            border-color: var(--thunder-light);
            color: #fff;
            box-shadow: 0 0 18px rgba(157, 46, 244, 0.25);
        }

        /* Section Common */
        .section-block {
            padding: 70px 0;
        }
        @media (max-width: 768px) {
            .section-block {
                padding: 44px 0;
            }
        }
        .section-title {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--text-heading);
            margin-bottom: 8px;
            letter-spacing: -0.01em;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 60%;
            height: 4px;
            background: linear-gradient(90deg, var(--thunder), transparent);
            border-radius: 2px;
        }
        .section-subtitle {
            font-size: 1rem;
            color: #94a3b8;
            margin-bottom: 32px;
        }

        /* Data Grid */
        .data-grid-8 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }
        @media (max-width: 1024px) {
            .data-grid-8 {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .data-grid-8 {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
        }
        .data-mini-card {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            transition: all var(--transition-smooth);
            cursor: pointer;
            position: relative;
        }
        .data-mini-card:hover {
            border-color: var(--thunder);
            box-shadow: var(--shadow-glow-purple-sm);
            transform: translateY(-2px);
        }
        .data-mini-card .live-badge {
            position: absolute;
            top: 10px;
            right: 12px;
            font-size: 0.65rem;
            font-weight: 800;
            color: #fff;
            background: var(--lava);
            padding: 3px 8px;
            border-radius: 10px;
            letter-spacing: 0.05em;
            animation: live-blink 1.2s ease-in-out infinite;
        }
        .data-mini-card .data-label {
            font-size: 0.75rem;
            color: #94a3b8;
            font-weight: 500;
        }
        .data-mini-card .data-value {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.5rem;
            font-weight: 800;
            color: #e2e8f0;
            text-shadow: 0 0 6px rgba(0, 247, 247, 0.3);
        }
        .data-mini-card .data-trend {
            font-size: 0.75rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .data-trend.up {
            color: #4ade80;
        }
        .data-trend.down {
            color: #f87171;
        }

        /* Hot List */
        .hotlist {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .hotlist-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 14px 18px;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .hotlist-item:hover {
            border-color: var(--thunder);
            box-shadow: var(--shadow-glow-purple-sm);
        }
        .hotlist-rank {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(180deg, var(--lava), var(--thunder));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            min-width: 50px;
            text-align: center;
            flex-shrink: 0;
        }
        .hotlist-content {
            flex: 1;
            min-width: 0;
        }
        .hotlist-content h3 {
            font-size: 0.95rem;
            font-weight: 700;
            color: #e2e8f0;
            margin-bottom: 2px;
        }
        .hotlist-content .hot-meta {
            font-size: 0.75rem;
            color: #94a3b8;
        }
        .hotlist-heat {
            font-family: 'JetBrains Mono', monospace;
            font-weight: 700;
            color: var(--lava);
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        /* News Grid */
        .news-magazine {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 20px;
        }
        @media (max-width: 768px) {
            .news-magazine {
                grid-template-columns: 1fr;
            }
        }
        .news-hero-card {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .news-hero-card:hover {
            border-color: var(--thunder);
            box-shadow: var(--shadow-card-hover);
        }
        .news-hero-card img {
            width: 100%;
            height: 240px;
            object-fit: cover;
        }
        .news-hero-body {
            padding: 20px;
        }
        .news-hero-body h3 {
            font-size: 1.3rem;
            font-weight: 800;
            color: #e2e8f0;
            margin-bottom: 8px;
        }
        .news-hero-body p {
            font-size: 0.9rem;
            color: #94a3b8;
            line-height: 1.6;
        }
        .news-list-side {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .news-list-item {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: 10px;
            padding: 14px 16px;
            transition: all var(--transition-smooth);
            cursor: pointer;
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }
        .news-list-item:hover {
            border-color: var(--thunder);
            box-shadow: var(--shadow-glow-purple-sm);
        }
        .news-list-item .news-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--thunder);
            flex-shrink: 0;
            margin-top: 6px;
        }
        .news-list-item h3 {
            font-size: 0.9rem;
            font-weight: 700;
            color: #e2e8f0;
            margin-bottom: 3px;
        }
        .news-list-item .news-meta {
            font-size: 0.72rem;
            color: #94a3b8;
        }

        /* Topic Cards */
        .topic-scroll {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            overflow-x: auto;
            scrollbar-width: thin;
            scrollbar-color: rgba(157, 46, 244, 0.3) transparent;
        }
        @media (max-width: 1024px) {
            .topic-scroll {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .topic-scroll {
                grid-template-columns: 1fr;
                gap: 12px;
            }
        }
        .topic-card {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: all var(--transition-smooth);
            cursor: pointer;
            flex-shrink: 0;
            min-width: 0;
        }
        .topic-card:hover {
            border-color: var(--thunder);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .topic-card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
        }
        .topic-card-body {
            padding: 16px;
        }
        .topic-card-body .topic-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 14px;
            margin-bottom: 8px;
            color: #fff;
            background: linear-gradient(135deg, var(--lava), var(--thunder));
        }
        .topic-card-body h3 {
            font-size: 1rem;
            font-weight: 700;
            color: #e2e8f0;
            margin-bottom: 4px;
        }
        .topic-card-body p {
            font-size: 0.8rem;
            color: #94a3b8;
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
        }
        .service-card {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 24px;
            text-align: center;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .service-card:hover {
            border-color: var(--thunder);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .service-card .svc-icon {
            font-size: 2.5rem;
            margin-bottom: 12px;
        }
        .service-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #e2e8f0;
            margin-bottom: 6px;
        }
        .service-card .svc-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            justify-content: center;
            margin-top: 8px;
        }
        .svc-tag {
            font-size: 0.7rem;
            padding: 3px 10px;
            border-radius: 12px;
            background: rgba(157, 46, 244, 0.2);
            color: #c084fc;
            font-weight: 600;
        }

        /* Partner Tags */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            padding: 20px 0;
        }
        .eco-tag {
            padding: 10px 20px;
            border-radius: 24px;
            font-size: 0.85rem;
            font-weight: 600;
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            color: #cbd5e1;
            cursor: pointer;
            transition: all var(--transition-smooth);
            position: relative;
        }
        .eco-tag:hover {
            border-color: var(--thunder);
            color: #fff;
            box-shadow: var(--shadow-glow-purple-sm);
            transform: translateY(-2px);
            z-index: 2;
        }

        /* Timeline */
        .timeline {
            display: flex;
            flex-direction: column;
            gap: 16px;
            padding-left: 28px;
            border-left: 2px solid rgba(157, 46, 244, 0.35);
            position: relative;
        }
        .timeline-item {
            position: relative;
            padding-left: 24px;
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 16px 20px;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .timeline-item:hover {
            border-color: var(--thunder);
            box-shadow: var(--shadow-glow-purple-sm);
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 18px;
            width: 12px;
            height: 12px;
            background: var(--thunder);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--thunder);
        }
        .timeline-item .tl-date {
            font-size: 0.75rem;
            color: var(--cyan-data);
            font-weight: 600;
            margin-bottom: 4px;
            font-family: 'JetBrains Mono', monospace;
        }
        .timeline-item h3 {
            font-size: 0.95rem;
            font-weight: 700;
            color: #e2e8f0;
        }
        .timeline-item p {
            font-size: 0.8rem;
            color: #94a3b8;
        }

        /* Reviews */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        @media (max-width: 1024px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .reviews-grid {
                grid-template-columns: 1fr;
            }
        }
        .review-card {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 20px;
            transition: all var(--transition-smooth);
        }
        .review-card:hover {
            border-color: var(--thunder);
            box-shadow: var(--shadow-glow-purple-sm);
        }
        .review-stars {
            color: var(--gold);
            font-size: 1rem;
            margin-bottom: 8px;
        }
        .review-card .review-text {
            font-size: 0.9rem;
            color: #cbd5e1;
            line-height: 1.6;
            margin-bottom: 10px;
        }
        .review-card .review-author {
            font-size: 0.78rem;
            color: #94a3b8;
            font-weight: 600;
        }
        .review-card .review-tag {
            display: inline-block;
            font-size: 0.68rem;
            padding: 3px 8px;
            border-radius: 10px;
            background: rgba(0, 247, 247, 0.15);
            color: var(--cyan-data);
            font-weight: 600;
            margin-left: 6px;
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .faq-item {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            overflow: hidden;
            transition: all var(--transition-smooth);
        }
        .faq-item:hover {
            border-color: var(--thunder);
        }
        .faq-question {
            width: 100%;
            text-align: left;
            padding: 18px 20px;
            background: transparent;
            color: #e2e8f0;
            font-weight: 700;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            cursor: pointer;
            border: none;
            transition: all var(--transition-fast);
        }
        .faq-question:hover {
            color: #fff;
        }
        .faq-question .faq-icon {
            color: var(--cyan-data);
            flex-shrink: 0;
            font-size: 1.1rem;
        }
        .faq-answer {
            padding: 0 20px 18px 20px;
            font-size: 0.88rem;
            color: #94a3b8;
            line-height: 1.7;
            border-left: 3px solid var(--thunder);
            margin-left: 20px;
            display: none;
        }
        .faq-item.open .faq-answer {
            display: block;
        }
        .faq-item.open .faq-question {
            color: #fff;
        }
        .faq-arrow {
            font-size: 1.2rem;
            color: var(--thunder);
            transition: transform var(--transition-fast);
            flex-shrink: 0;
        }
        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
        }

        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(135deg, rgba(255, 77, 46, 0.2) 0%, rgba(157, 46, 244, 0.25) 50%, rgba(10, 14, 22, 0.9) 100%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 50%, rgba(157, 46, 244, 0.2) 0%, transparent 70%);
            z-index: 0;
        }
        .cta-banner>* {
            position: relative;
            z-index: 1;
        }
        .cta-banner h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
        }
        .cta-banner p {
            color: #cbd5e1;
            margin-bottom: 24px;
            font-size: 1rem;
        }

        /* Footer Sitemap */
        .footer-sitemap {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding: 40px 0;
            border-top: 1px solid rgba(157, 46, 244, 0.25);
        }
        @media (max-width: 768px) {
            .footer-sitemap {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }
        @media (max-width: 520px) {
            .footer-sitemap {
                grid-template-columns: 1fr;
            }
        }
        .footer-col h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: #e2e8f0;
            margin-bottom: 12px;
        }
        .footer-col a {
            display: block;
            font-size: 0.85rem;
            color: #94a3b8;
            padding: 4px 0;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--thunder-light);
        }
        .footer-subscribe {
            display: flex;
            gap: 8px;
            margin-top: 12px;
        }
        .footer-subscribe input {
            flex: 1;
            padding: 10px 16px;
            border-radius: 24px;
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            color: #e2e8f0;
            font-size: 0.85rem;
            min-width: 0;
        }
        .footer-subscribe input:focus {
            border-color: var(--thunder);
            box-shadow: 0 0 12px rgba(157, 46, 244, 0.25);
        }
        .footer-subscribe button {
            padding: 10px 20px;
            border-radius: 24px;
            font-weight: 700;
            font-size: 0.85rem;
            color: #fff;
            background: linear-gradient(135deg, var(--lava), var(--thunder));
            flex-shrink: 0;
        }
        .footer-subscribe button:hover {
            box-shadow: 0 0 20px rgba(255, 77, 46, 0.4);
        }

        /* Footer Bottom */
        .footer-bottom {
            text-align: center;
            padding: 24px 0;
            border-top: 1px solid rgba(157, 46, 244, 0.2);
            font-size: 0.8rem;
            color: #64748b;
            line-height: 1.8;
        }
        .footer-bottom a {
            color: #94a3b8;
            margin: 0 8px;
        }
        .footer-bottom a:hover {
            color: var(--thunder-light);
        }

        /* Pulse animation for CTA */
        @keyframes pulse-ring {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 77, 46, 0.6);
            }
            70% {
                box-shadow: 0 0 0 20px rgba(255, 77, 46, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 77, 46, 0);
            }
        }
        .pulse-cta {
            animation: pulse-ring 2s ease-out infinite;
        }

        /* Noise texture for data cards */
        .noise-bg {
            position: relative;
        }
        .noise-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(/%23n)'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 0;
            border-radius: inherit;
        }

        .glow-dot {
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--cyan-data);
            box-shadow: 0 0 8px var(--cyan-data);
            margin-right: 4px;
            animation: live-blink 1.5s ease-in-out infinite;
        }

        @media (max-width: 640px) {
            .section-title {
                font-size: 1.6rem;
            }
            .hero-h1 {
                font-size: 1.8rem;
            }
            .data-grid-8 {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
        }

/* roulang page: category2 */
:root {
            --lava: #FF4D2E;
            --thunder: #9D2EF4;
            --abyss: #0A0E16;
            --deep-card: #121A24;
            --gold: #F0B90B;
            --cyan-data: #00F7F7;
            --text-weak: #94A3B8;
            --text-strong: #E2E8F0;
            --text-white: #F8FAFC;
            --card-radius: 16px;
            --dock-radius: 40px;
            --border-glow: rgba(157, 46, 244, 0.2);
            --shadow-glow: 0 0 25px rgba(157, 46, 244, 0.35);
            --shadow-card-hover: 0 0 30px rgba(157, 46, 244, 0.5);
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-weak);
            background: radial-gradient(ellipse at center, #0A0E16 0%, #03050A 100%);
            background-attachment: fixed;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--cyan-data);
            outline-offset: 3px;
            border-radius: 4px;
        }

        input {
            font-family: inherit;
        }

        /* ========== DOCK NAVIGATION ========== */
        .dock-nav {
            position: fixed;
            top: 16px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 10px 28px;
            max-width: 780px;
            width: calc(100% - 32px);
            background: rgba(10, 14, 22, 0.82);
            backdrop-filter: blur(28px);
            -webkit-backdrop-filter: blur(28px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--dock-radius);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
            transition: transform var(--transition-smooth), background var(--transition-smooth);
        }

        .dock-nav.scrolled {
            transform: translateX(-50%) scale(0.97);
            background: rgba(10, 14, 22, 0.92);
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
        }

        .dock-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 800;
            font-size: 1.15rem;
            color: var(--text-white);
            white-space: nowrap;
            letter-spacing: -0.3px;
            flex-shrink: 0;
        }

        .logo-icon {
            font-size: 1.5rem;
            filter: drop-shadow(0 0 8px rgba(255, 77, 46, 0.6));
            animation: logo-pulse 3s ease-in-out infinite;
        }

        @keyframes logo-pulse {
            0%,
            100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.12);
            }
        }

        .dock-nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: nowrap;
        }

        .dock-nav-links a {
            padding: 8px 15px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-weak);
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
        }

        .dock-nav-links a:hover {
            color: var(--text-white);
            background: rgba(157, 46, 244, 0.15);
        }

        .dock-nav-links a.active {
            color: var(--text-white);
            background: rgba(157, 46, 244, 0.3);
            font-weight: 700;
            box-shadow: 0 0 14px rgba(157, 46, 244, 0.3);
        }

        .dock-cta-btn {
            padding: 10px 20px;
            border-radius: 28px;
            font-size: 0.88rem;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(135deg, #FF5C3A 0%, #FF4D2E 40%, #9D2EF4 100%);
            white-space: nowrap;
            flex-shrink: 0;
            transition: all var(--transition-fast);
            box-shadow: 0 0 18px rgba(255, 77, 46, 0.4);
            animation: pulse-cta-glow 2.5s ease-in-out infinite;
            letter-spacing: 0.3px;
        }

        @keyframes pulse-cta-glow {
            0%,
            100% {
                box-shadow: 0 0 18px rgba(255, 77, 46, 0.4);
            }
            50% {
                box-shadow: 0 0 32px rgba(255, 77, 46, 0.7), 0 0 50px rgba(157, 46, 244, 0.35);
            }
        }

        .dock-cta-btn:hover {
            background: linear-gradient(135deg, #FF7B5A 0%, #F0B90B 40%, #B04EF4 100%);
            box-shadow: 0 0 28px rgba(240, 185, 11, 0.55);
            transform: translateY(-2px);
        }

        .dock-mobile-toggle {
            display: none;
            background: transparent;
            color: var(--text-white);
            font-size: 1.5rem;
            padding: 6px 10px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* ========== CONTAINER ========== */
        .container-main {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== SECTION SPACING ========== */
        .section-spacing {
            padding: 80px 0;
        }

        @media (max-width: 768px) {
            .section-spacing {
                padding: 48px 0;
            }
            .dock-nav {
                gap: 10px;
                padding: 10px 16px;
                border-radius: 28px;
            }
            .dock-nav-links {
                display: none;
                position: absolute;
                top: 64px;
                left: 16px;
                right: 16px;
                flex-direction: column;
                background: rgba(10, 14, 22, 0.95);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                border: 1px solid rgba(255, 255, 255, 0.12);
                border-radius: 20px;
                padding: 16px;
                gap: 4px;
                box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7);
            }
            .dock-nav-links.open {
                display: flex;
            }
            .dock-nav-links a {
                width: 100%;
                text-align: center;
                padding: 12px 16px;
                border-radius: 14px;
                font-size: 0.95rem;
            }
            .dock-mobile-toggle {
                display: block;
            }
            .dock-cta-btn {
                font-size: 0.78rem;
                padding: 8px 14px;
                border-radius: 22px;
            }
        }

        @media (max-width: 520px) {
            .dock-nav {
                gap: 6px;
                padding: 8px 12px;
                border-radius: 24px;
                top: 8px;
            }
            .dock-logo {
                font-size: 1rem;
                gap: 4px;
            }
            .logo-icon {
                font-size: 1.2rem;
            }
            .dock-cta-btn {
                font-size: 0.7rem;
                padding: 7px 10px;
                border-radius: 18px;
            }
            .dock-cta-btn span {
                display: none;
            }
            .dock-cta-btn::after {
                content: '⚡';
                font-size: 1rem;
            }
        }

        /* ========== BANNER ========== */
        .banner-dual {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            min-height: 420px;
            border-radius: var(--card-radius);
            background: var(--deep-card);
            border: 1px solid var(--border-glow);
            overflow: hidden;
            position: relative;
        }

        .banner-dual::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(157, 46, 244, 0.12) 0%, transparent 60%);
            pointer-events: none;
            z-index: 0;
        }

        .banner-dual .banner-text {
            padding: 48px 40px;
            position: relative;
            z-index: 1;
        }

        .banner-dual .banner-visual {
            position: relative;
            z-index: 1;
            height: 100%;
            min-height: 320px;
            background-size: cover;
            background-position: center;
            border-left: 1px solid var(--border-glow);
        }

        @media (max-width: 768px) {
            .banner-dual {
                grid-template-columns: 1fr;
                gap: 0;
                min-height: auto;
            }
            .banner-dual .banner-text {
                padding: 32px 24px;
            }
            .banner-dual .banner-visual {
                min-height: 200px;
                border-left: none;
                border-top: 1px solid var(--border-glow);
            }
        }

        /* ========== FILTER TAGS ========== */
        .filter-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition-fast);
            background: var(--deep-card);
            color: var(--text-weak);
            border: 1px solid rgba(255, 255, 255, 0.08);
            user-select: none;
        }

        .filter-tag:hover {
            border-color: var(--thunder);
            color: var(--text-white);
            box-shadow: 0 0 14px rgba(157, 46, 244, 0.25);
        }

        .filter-tag.active-tag {
            background: rgba(157, 46, 244, 0.25);
            border-color: var(--thunder);
            color: var(--text-white);
            box-shadow: 0 0 18px rgba(157, 46, 244, 0.4);
            font-weight: 700;
        }

        .filter-tag .tag-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* ========== GUIDE CARDS GRID ========== */
        .guide-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 18px;
        }

        .guide-card {
            background: var(--deep-card);
            border: 1px solid var(--border-glow);
            border-radius: var(--card-radius);
            overflow: hidden;
            transition: all var(--transition-smooth);
            position: relative;
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }

        .guide-card:hover {
            border-color: var(--thunder);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-4px);
        }

        .guide-card.col-span-3 {
            grid-column: span 3;
        }
        .guide-card.col-span-2 {
            grid-column: span 2;
        }
        .guide-card.col-span-1 {
            grid-column: span 1;
        }

        .guide-card .card-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 10;
            background: #0d1117;
        }

        .guide-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }

        .guide-card:hover .card-img-wrap img {
            transform: scale(1.05);
        }

        .guide-card .card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.72rem;
            font-weight: 700;
            z-index: 2;
            letter-spacing: 0.5px;
        }

        .badge-beginner {
            background: rgba(0, 247, 247, 0.18);
            color: #00F7F7;
            border: 1px solid rgba(0, 247, 247, 0.35);
        }
        .badge-intermediate {
            background: rgba(240, 185, 11, 0.18);
            color: #F0B90B;
            border: 1px solid rgba(240, 185, 11, 0.35);
        }
        .badge-advanced {
            background: rgba(255, 77, 46, 0.18);
            color: #FF4D2E;
            border: 1px solid rgba(255, 77, 46, 0.35);
        }
        .badge-pro {
            background: rgba(157, 46, 244, 0.2);
            color: #9D2EF4;
            border: 1px solid rgba(157, 46, 244, 0.4);
        }

        .guide-card .card-body {
            padding: 18px 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .guide-card .card-body h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-strong);
            line-height: 1.4;
            margin: 0;
        }

        .guide-card .card-body .card-meta {
            font-size: 0.78rem;
            color: #64748B;
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }

        .guide-card .card-body .card-excerpt {
            font-size: 0.85rem;
            color: var(--text-weak);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        @media (max-width: 1024px) {
            .guide-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 14px;
            }
            .guide-card.col-span-3 {
                grid-column: span 2;
            }
            .guide-card.col-span-2 {
                grid-column: span 2;
            }
            .guide-card.col-span-1 {
                grid-column: span 1;
            }
        }

        @media (max-width: 640px) {
            .guide-grid {
                grid-template-columns: repeat(1, 1fr);
                gap: 14px;
            }
            .guide-card.col-span-3,
            .guide-card.col-span-2,
            .guide-card.col-span-1 {
                grid-column: span 1;
            }
        }

        /* ========== AUTHOR CARDS ========== */
        .author-card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px 24px;
            background: var(--deep-card);
            border: 1px solid var(--border-glow);
            border-radius: var(--card-radius);
            transition: all var(--transition-smooth);
        }

        .author-card:hover {
            border-color: var(--thunder);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }

        .author-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--thunder);
            flex-shrink: 0;
            box-shadow: 0 0 12px rgba(157, 46, 244, 0.3);
        }

        /* ========== FAQ ========== */
        .faq-item {
            border: 1px solid var(--border-glow);
            border-radius: 12px;
            margin-bottom: 12px;
            background: var(--deep-card);
            overflow: hidden;
            transition: all var(--transition-fast);
        }

        .faq-item:hover {
            border-color: rgba(157, 46, 244, 0.45);
        }

        .faq-question {
            width: 100%;
            text-align: left;
            padding: 18px 20px;
            background: transparent;
            color: var(--text-strong);
            font-size: 1rem;
            font-weight: 600;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            cursor: pointer;
            transition: all var(--transition-fast);
            border: none;
            line-height: 1.5;
        }

        .faq-question .faq-icon {
            flex-shrink: 0;
            color: var(--cyan-data);
            font-size: 1.1rem;
            margin-top: 1px;
        }

        .faq-question .faq-arrow {
            margin-left: auto;
            flex-shrink: 0;
            transition: transform var(--transition-smooth);
            color: var(--thunder);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
            padding: 0 20px;
            color: var(--text-weak);
            font-size: 0.9rem;
            line-height: 1.7;
            border-left: 3px solid transparent;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 20px 18px 20px;
            border-left-color: var(--thunder);
            margin-left: 16px;
        }

        /* ========== CTA SECTION ========== */
        .cta-strip {
            background: linear-gradient(135deg, rgba(157, 46, 244, 0.2) 0%, rgba(255, 77, 46, 0.15) 50%, rgba(10, 14, 22, 0.9) 100%);
            border: 1px solid var(--border-glow);
            border-radius: var(--card-radius);
            padding: 48px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-strip::before {
            content: '';
            position: absolute;
            top: -40%;
            left: -20%;
            width: 140%;
            height: 180%;
            background: radial-gradient(ellipse at center, rgba(157, 46, 244, 0.08) 0%, transparent 65%);
            pointer-events: none;
            z-index: 0;
        }

        .cta-strip>* {
            position: relative;
            z-index: 1;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 28px;
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            background: linear-gradient(135deg, #FF5C3A 0%, #FF4D2E 40%, #9D2EF4 100%);
            transition: all var(--transition-fast);
            box-shadow: 0 0 20px rgba(255, 77, 46, 0.4);
            letter-spacing: 0.3px;
        }

        .btn-primary:hover {
            box-shadow: 0 0 32px rgba(240, 185, 11, 0.55);
            transform: translateY(-3px);
            background: linear-gradient(135deg, #FF7B5A 0%, #F0B90B 40%, #B04EF4 100%);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: 28px;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-white);
            background: transparent;
            border: 2px solid var(--thunder);
            transition: all var(--transition-fast);
        }

        .btn-secondary:hover {
            background: rgba(157, 46, 244, 0.2);
            border-color: #b04ef4;
            box-shadow: 0 0 18px rgba(157, 46, 244, 0.35);
            transform: translateY(-2px);
        }

        /* ========== FOOTER ========== */
        footer {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 32px 0 24px;
            background: rgba(10, 14, 22, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .footer-bottom {
            text-align: center;
            font-size: 0.82rem;
            color: #64748B;
            line-height: 2;
        }

        .footer-bottom a {
            color: #94A3B8;
            transition: color var(--transition-fast);
        }

        .footer-bottom a:hover {
            color: var(--cyan-data);
        }

        /* ========== SECTION TITLES ========== */
        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 8px;
            letter-spacing: -0.5px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 60%;
            height: 3px;
            background: linear-gradient(90deg, var(--thunder), transparent);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1rem;
            color: var(--text-weak);
            margin-bottom: 36px;
            font-weight: 400;
        }

        @media (max-width: 640px) {
            .section-title {
                font-size: 1.6rem;
            }
            .section-subtitle {
                font-size: 0.9rem;
                margin-bottom: 24px;
            }
            .cta-strip {
                padding: 32px 20px;
            }
            .btn-primary,
            .btn-secondary {
                padding: 12px 22px;
                font-size: 0.9rem;
            }
        }

        /* ========== STAT BADGE ========== */
        .stat-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 20px;
            background: rgba(0, 247, 247, 0.08);
            border: 1px solid rgba(0, 247, 247, 0.2);
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--cyan-data);
        }

        .stat-badge .stat-num {
            font-family: 'JetBrains Mono', 'Courier New', monospace;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-white);
        }

        /* ========== SEARCH BAR ========== */
        .search-bar-wrap {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }

        .search-input {
            flex: 1;
            min-width: 220px;
            padding: 13px 18px;
            border-radius: 28px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: var(--deep-card);
            color: var(--text-white);
            font-size: 0.95rem;
            transition: all var(--transition-fast);
        }

        .search-input::placeholder {
            color: #64748B;
        }
        .search-input:focus {
            border-color: var(--thunder);
            box-shadow: 0 0 16px rgba(157, 46, 244, 0.25);
            outline: none;
        }

/* roulang page: category1 */
:root {
            --lava: #FF4D2E;
            --lava-light: #FF6B4A;
            --thunder: #9D2EF4;
            --thunder-light: #B355F7;
            --deep: #0A0E16;
            --deep-card: #121A24;
            --deep-card-alt: #0F1620;
            --gold: #F0B90B;
            --cyan-data: #00F7F7;
            --text-strong: #F8FAFC;
            --text-body: #E2E8F0;
            --text-muted: #94A3B8;
            --text-weak: #64748B;
            --radius-card: 16px;
            --radius-dock: 40px;
            --radius-btn: 12px;
            --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(157, 46, 244, 0.15);
            --shadow-card-hover: 0 8px 32px rgba(157, 46, 244, 0.3), 0 0 0 1px rgba(157, 46, 244, 0.5);
            --shadow-btn-glow: 0 0 20px rgba(255, 77, 46, 0.4);
            --transition-smooth: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Noto Sans SC', 'Inter', 'PingFang SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
            font-size: 16px;
            line-height: 1.7;
            color: #94A3B8;
            background: #0A0E16;
            background-image: radial-gradient(ellipse at 50% 0%, rgba(157, 46, 244, 0.08) 0%, rgba(10, 14, 22, 0) 70%),
                radial-gradient(ellipse at 30% 60%, rgba(255, 77, 46, 0.04) 0%, rgba(10, 14, 22, 0) 60%),
                radial-gradient(ellipse at 70% 40%, rgba(0, 247, 247, 0.03) 0%, rgba(10, 14, 22, 0) 55%);
            min-height: 100vh;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-smooth);
        }
        a:hover {
            color: var(--cyan-data);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
        }
        button:focus-visible,
        a:focus-visible {
            outline: 2px solid var(--cyan-data);
            outline-offset: 3px;
            border-radius: 8px;
        }
        input {
            font-family: inherit;
            outline: none;
        }
        input:focus-visible {
            outline: 2px solid var(--cyan-data);
            outline-offset: 2px;
        }

        /* Container */
        .container-main {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }
        @media (max-width: 768px) {
            .container-main {
                padding: 0 16px;
            }
        }

        /* Dock Navigation */
        .dock-nav {
            position: fixed;
            top: 16px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 10px 22px;
            background: rgba(10, 14, 22, 0.82);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-dock);
            box-shadow: 0 8px 36px rgba(0, 0, 0, 0.55);
            max-width: 720px;
            width: fit-content;
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, background 0.35s ease;
        }
        .dock-nav.scrolled {
            transform: translateX(-50%) scale(0.97);
            background: rgba(10, 14, 22, 0.92);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
        }
        .dock-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 800;
            font-size: 1.15rem;
            color: #F8FAFC;
            white-space: nowrap;
            flex-shrink: 0;
            text-decoration: none;
        }
        .dock-logo:hover {
            color: #F8FAFC;
        }
        .logo-icon {
            font-size: 1.4rem;
            line-height: 1;
            filter: drop-shadow(0 0 6px rgba(240, 185, 11, 0.5));
        }
        .dock-nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: nowrap;
        }
        .dock-nav-links a {
            display: inline-block;
            padding: 7px 15px;
            border-radius: 22px;
            font-size: 0.88rem;
            font-weight: 500;
            color: #94A3B8;
            white-space: nowrap;
            transition: all var(--transition-smooth);
            text-decoration: none;
            position: relative;
        }
        .dock-nav-links a:hover {
            color: #E2E8F0;
            background: rgba(255, 255, 255, 0.05);
        }
        .dock-nav-links a.active {
            color: #F8FAFC;
            background: rgba(157, 46, 244, 0.25);
            font-weight: 600;
            box-shadow: 0 0 0 1px rgba(157, 46, 244, 0.45);
        }
        .dock-cta-btn {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 8px 18px;
            border-radius: 22px;
            font-size: 0.85rem;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(135deg, #FF4D2E, #E03D1F);
            white-space: nowrap;
            flex-shrink: 0;
            cursor: pointer;
            border: none;
            transition: all var(--transition-smooth);
            box-shadow: 0 0 16px rgba(255, 77, 46, 0.35);
            animation: pulseCta 2.8s ease-in-out infinite;
        }
        .dock-cta-btn:hover {
            background: linear-gradient(135deg, #FF6B4A, #F0B90B);
            box-shadow: 0 0 28px rgba(240, 185, 11, 0.55);
            transform: translateY(-1px);
        }
        @keyframes pulseCta {
            0%,
            100% {
                box-shadow: 0 0 16px rgba(255, 77, 46, 0.35);
            }
            50% {
                box-shadow: 0 0 30px rgba(255, 77, 46, 0.65);
            }
        }
        .dock-mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #E2E8F0;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: all var(--transition-smooth);
        }
        .dock-mobile-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        @media (max-width: 1024px) {
            .dock-nav {
                max-width: 95vw;
                gap: 10px;
                padding: 10px 16px;
                border-radius: 30px;
                top: 10px;
            }
            .dock-nav-links a {
                padding: 6px 10px;
                font-size: 0.78rem;
                border-radius: 18px;
            }
            .dock-cta-btn {
                padding: 7px 14px;
                font-size: 0.78rem;
                border-radius: 18px;
            }
            .dock-logo {
                font-size: 1rem;
            }
            .logo-icon {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 768px) {
            .dock-nav {
                gap: 8px;
                padding: 8px 14px;
                border-radius: 26px;
                top: 8px;
                max-width: 96vw;
            }
            .dock-nav-links {
                display: none;
                position: absolute;
                top: calc(100% + 8px);
                left: 50%;
                transform: translateX(-50%);
                flex-direction: column;
                background: rgba(18, 26, 36, 0.96);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 20px;
                padding: 10px;
                gap: 2px;
                min-width: 200px;
                box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
            }
            .dock-nav-links.open {
                display: flex;
            }
            .dock-nav-links a {
                width: 100%;
                text-align: center;
                padding: 10px 16px;
                border-radius: 14px;
                font-size: 0.9rem;
            }
            .dock-mobile-toggle {
                display: block;
            }
            .dock-cta-btn {
                font-size: 0.75rem;
                padding: 6px 12px;
                border-radius: 16px;
            }
        }
        @media (max-width: 520px) {
            .dock-nav {
                padding: 7px 10px;
                gap: 6px;
                border-radius: 22px;
                top: 6px;
            }
            .dock-logo {
                font-size: 0.9rem;
                gap: 4px;
            }
            .logo-icon {
                font-size: 1.05rem;
            }
            .dock-cta-btn {
                padding: 5px 10px;
                font-size: 0.7rem;
                border-radius: 14px;
                gap: 3px;
            }
            .dock-cta-btn span {
                font-size: 0.7rem;
            }
            .dock-mobile-toggle {
                font-size: 1.3rem;
                padding: 3px 6px;
            }
        }

        /* Section spacing */
        .section-gap {
            padding: 64px 0;
        }
        @media (max-width: 768px) {
            .section-gap {
                padding: 40px 0;
            }
        }

        /* Card base */
        .card-dark {
            background: #121A24;
            border: 1px solid rgba(157, 46, 244, 0.18);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }
        .card-dark:hover {
            border-color: rgba(157, 46, 244, 0.5);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }

        /* Badge */
        .badge-live {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.72rem;
            font-weight: 700;
            color: #fff;
            background: #FF4D2E;
            animation: livePulse 1.2s ease-in-out infinite;
            letter-spacing: 0.5px;
        }
        @keyframes livePulse {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 8px rgba(255, 77, 46, 0.6);
            }
            50% {
                opacity: 0.75;
                box-shadow: 0 0 18px rgba(255, 77, 46, 0.9);
            }
        }
        .badge-live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #fff;
            animation: dotBlink 0.7s ease-in-out infinite;
        }
        @keyframes dotBlink {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.25;
            }
        }
        .badge-tag {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 14px;
            font-size: 0.73rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .badge-tag.thunder {
            background: rgba(157, 46, 244, 0.2);
            color: #B355F7;
            border: 1px solid rgba(157, 46, 244, 0.35);
        }
        .badge-tag.gold {
            background: rgba(240, 185, 11, 0.15);
            color: #F0B90B;
            border: 1px solid rgba(240, 185, 11, 0.3);
        }
        .badge-tag.cyan {
            background: rgba(0, 247, 247, 0.12);
            color: #00F7F7;
            border: 1px solid rgba(0, 247, 247, 0.25);
        }
        .badge-tag.lava {
            background: rgba(255, 77, 46, 0.15);
            color: #FF6B4A;
            border: 1px solid rgba(255, 77, 46, 0.3);
        }
        .badge-new {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.68rem;
            font-weight: 700;
            color: #0A0E16;
            background: #F0B90B;
            letter-spacing: 0.5px;
        }
        .badge-hot {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.68rem;
            font-weight: 700;
            color: #fff;
            background: #FF4D2E;
            letter-spacing: 0.5px;
        }
        .badge-exclusive {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.68rem;
            font-weight: 700;
            color: #fff;
            background: #9D2EF4;
            letter-spacing: 0.5px;
        }

        /* Section title */
        .section-title {
            font-family: 'Inter', 'Noto Sans SC', sans-serif;
            font-weight: 800;
            font-size: 2.5rem;
            color: #F8FAFC;
            margin: 0 0 8px 0;
            padding-bottom: 12px;
            border-bottom: 4px solid transparent;
            border-image: linear-gradient(90deg, #9D2EF4, #FF4D2E) 1;
            display: inline-block;
            letter-spacing: -0.3px;
        }
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 520px) {
            .section-title {
                font-size: 1.45rem;
                border-bottom-width: 3px;
            }
        }

        /* Data number */
        .data-number {
            font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
            font-weight: 700;
            font-size: 1.75rem;
            color: #E2E8F0;
            text-shadow: 0 0 6px rgba(0, 247, 247, 0.25);
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        .data-number.large {
            font-size: 2.6rem;
        }
        @media (max-width: 768px) {
            .data-number {
                font-size: 1.4rem;
            }
            .data-number.large {
                font-size: 2rem;
            }
        }

        /* Trend Arrow */
        .trend-up {
            color: #22c55e;
            font-weight: 700;
        }
        .trend-down {
            color: #ef4444;
            font-weight: 700;
        }

        /* FAQ Accordion */
        .faq-item {
            border-bottom: 1px solid rgba(157, 46, 244, 0.2);
            overflow: hidden;
        }
        .faq-question {
            width: 100%;
            background: #121A24;
            border: none;
            color: #E2E8F0;
            font-size: 1.05rem;
            font-weight: 600;
            padding: 18px 20px;
            text-align: left;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            transition: all var(--transition-smooth);
            font-family: inherit;
            letter-spacing: 0.2px;
        }
        .faq-question:hover {
            background: #161F2C;
            color: #F8FAFC;
        }
        .faq-question .faq-icon-left {
            color: #00F7F7;
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .faq-question .faq-arrow {
            color: #9D2EF4;
            font-size: 1rem;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }
        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
            color: #FF4D2E;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background: #0F1620;
            border-left: 3px solid transparent;
        }
        .faq-item.open .faq-answer {
            max-height: 400px;
            border-left-color: #9D2EF4;
        }
        .faq-answer-inner {
            padding: 16px 20px 20px 24px;
            color: #94A3B8;
            font-size: 0.95rem;
            line-height: 1.75;
        }

        /* Timeline */
        .timeline-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #9D2EF4;
            flex-shrink: 0;
            box-shadow: 0 0 10px rgba(157, 46, 244, 0.5);
            position: relative;
            z-index: 2;
        }
        .timeline-dot.orange {
            background: #FF4D2E;
            box-shadow: 0 0 10px rgba(255, 77, 46, 0.5);
        }
        .timeline-dot.gold {
            background: #F0B90B;
            box-shadow: 0 0 10px rgba(240, 185, 11, 0.5);
        }
        .timeline-line {
            width: 2px;
            background: linear-gradient(180deg, rgba(157, 46, 244, 0.4), rgba(255, 77, 46, 0.3));
            position: absolute;
            left: 6px;
            top: 18px;
            bottom: 0;
            z-index: 1;
        }

        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(135deg, rgba(157, 46, 244, 0.2) 0%, rgba(255, 77, 46, 0.18) 50%, rgba(10, 14, 22, 0.9) 100%);
            border: 1px solid rgba(157, 46, 244, 0.3);
            border-radius: var(--radius-card);
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 77, 46, 0.25) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        /* Noise texture overlay */
        .noise-bg {
            position: relative;
        }
        .noise-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(/%23n)' opacity='0.025'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 0;
            border-radius: inherit;
        }

        /* Waterfall grid */
        .waterfall-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        @media (max-width: 1024px) {
            .waterfall-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
        }
        @media (max-width: 640px) {
            .waterfall-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
        }
        .waterfall-card.featured {
            grid-column: span 2;
            grid-row: span 2;
        }
        @media (max-width: 1024px) {
            .waterfall-card.featured {
                grid-column: span 2;
                grid-row: span 1;
            }
        }
        @media (max-width: 640px) {
            .waterfall-card.featured {
                grid-column: span 1;
                grid-row: span 1;
            }
        }

        /* Score card flip */
        .score-digit {
            display: inline-block;
            font-family: 'JetBrains Mono', 'SF Mono', monospace;
            font-weight: 800;
            font-size: 2rem;
            color: #F8FAFC;
            text-shadow: 0 0 8px rgba(0, 247, 247, 0.3);
            min-width: 36px;
            text-align: center;
            transition: all 0.2s ease;
        }
        @media (max-width: 768px) {
            .score-digit {
                font-size: 1.5rem;
                min-width: 28px;
            }
        }

        /* Footer */
        .footer-bottom {
            text-align: center;
            padding: 24px 0;
            font-size: 0.8rem;
            color: #64748B;
            border-top: 1px solid rgba(157, 46, 244, 0.25);
        }
        .footer-bottom a {
            color: #94A3B8;
            text-decoration: none;
            transition: color var(--transition-smooth);
        }
        .footer-bottom a:hover {
            color: #00F7F7;
        }

        /* Subsection divider */
        .divider-glow {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(157, 46, 244, 0.4), rgba(255, 77, 46, 0.3), transparent);
            margin: 0 auto;
            max-width: 600px;
        }

/* roulang page: category3 */
:root {
            --lava: #FF4D2E;
            --lava-light: #FF6B52;
            --thunder: #9D2EF4;
            --thunder-light: #B55FF7;
            --abyss: #0A0E16;
            --abyss-light: #111827;
            --card-bg: #121A24;
            --card-border: rgba(157, 46, 244, 0.2);
            --card-border-hover: #9D2EF4;
            --gold: #F0B90B;
            --cyan: #00F7F7;
            --text-primary: #E2E8F0;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --radius-xl: 40px;
            --shadow-card: 0 0 10px rgba(157, 46, 244, 0.08);
            --shadow-card-hover: 0 0 25px rgba(157, 46, 244, 0.3);
            --shadow-glow-thunder: 0 0 20px rgba(157, 46, 244, 0.25);
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Inter', 'Noto Sans SC', system-ui, sans-serif;
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-secondary);
            background: var(--abyss);
            background-image: radial-gradient(ellipse at 50% 10%, #111827 0%, #0A0E16 55%, #03050A 100%);
            background-attachment: fixed;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:focus-visible {
            outline: 2px solid var(--cyan);
            outline-offset: 3px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            transition: all var(--transition-fast);
        }
        button:focus-visible {
            outline: 2px solid var(--cyan);
            outline-offset: 3px;
        }

        .container-main {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== DOCK NAVIGATION ===== */
        .dock-nav {
            position: fixed;
            top: 16px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 8px 16px 8px 20px;
            background: rgba(10, 14, 22, 0.85);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-xl);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(157, 46, 244, 0.15);
            max-width: 800px;
            width: calc(100% - 32px);
            transition: transform var(--transition-smooth), opacity var(--transition-smooth), background var(--transition-smooth);
        }
        .dock-nav.scrolled {
            transform: translateX(-50%) scale(0.98);
            background: rgba(10, 14, 22, 0.94);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(157, 46, 244, 0.25);
        }
        .dock-logo {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 800;
            font-size: 1.15rem;
            color: #F8FAFC;
            white-space: nowrap;
            flex-shrink: 0;
            text-decoration: none;
        }
        .dock-logo:hover {
            color: var(--lava);
        }
        .logo-icon {
            font-size: 1.4rem;
            filter: drop-shadow(0 0 6px rgba(255, 77, 46, 0.6));
            animation: logo-pulse 2.5s ease-in-out infinite;
        }
        @keyframes logo-pulse {
            0%,
            100% {
                filter: drop-shadow(0 0 6px rgba(255, 77, 46, 0.6));
            }
            50% {
                filter: drop-shadow(0 0 14px rgba(255, 77, 46, 0.95));
            }
        }
        .dock-nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: nowrap;
        }
        .dock-nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 7px 14px;
            border-radius: 24px;
            font-size: 0.875rem;
            font-weight: 500;
            color: #cbd5e1;
            white-space: nowrap;
            transition: all var(--transition-fast);
            text-decoration: none;
        }
        .dock-nav-links a:hover {
            color: #F8FAFC;
            background: rgba(157, 46, 244, 0.12);
        }
        .dock-nav-links a.active {
            color: #F8FAFC;
            background: rgba(157, 46, 244, 0.22);
            font-weight: 700;
            box-shadow: 0 0 12px rgba(157, 46, 244, 0.2);
        }
        .dock-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 9px 18px;
            border-radius: 24px;
            font-size: 0.85rem;
            font-weight: 700;
            white-space: nowrap;
            color: #fff;
            background: linear-gradient(135deg, #FF5C3A 0%, #FF4D2E 50%, #E03D20 100%);
            border: none;
            cursor: pointer;
            position: relative;
            flex-shrink: 0;
            transition: all var(--transition-fast);
            box-shadow: 0 0 16px rgba(255, 77, 46, 0.35);
            animation: pulse-cta-glow 2.2s ease-in-out infinite;
        }
        @keyframes pulse-cta-glow {
            0%,
            100% {
                box-shadow: 0 0 16px rgba(255, 77, 46, 0.35);
            }
            50% {
                box-shadow: 0 0 28px rgba(255, 77, 46, 0.65), 0 0 40px rgba(157, 46, 244, 0.25);
            }
        }
        .dock-cta-btn:hover {
            background: linear-gradient(135deg, #FF7B5E 0%, #FF5C3A 50%, #F04D30 100%);
            box-shadow: 0 0 30px rgba(255, 77, 46, 0.55), 0 0 48px rgba(157, 46, 244, 0.3);
            transform: translateY(-1px);
        }
        .dock-cta-btn:active {
            transform: scale(0.96);
        }
        .dock-mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #F8FAFC;
            padding: 4px 8px;
            cursor: pointer;
            flex-shrink: 0;
        }

        /* ===== HERO ===== */
        .hero-section {
            position: relative;
            padding: 140px 0 80px;
            overflow: hidden;
            min-height: 520px;
            display: flex;
            align-items: center;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(157, 46, 244, 0.18) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(255, 77, 46, 0.12) 0%, transparent 55%),
                url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            background-blend-mode: overlay;
            opacity: 0.55;
            z-index: 0;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 14, 22, 0.3) 0%, rgba(10, 14, 22, 0.85) 60%, #0A0E16 100%);
            z-index: 0;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 16px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--cyan);
            background: rgba(0, 247, 247, 0.08);
            border: 1px solid rgba(0, 247, 247, 0.25);
            letter-spacing: 0.04em;
            animation: badge-flicker 3s ease-in-out infinite;
        }
        @keyframes badge-flicker {
            0%,
            100% {
                border-color: rgba(0, 247, 247, 0.25);
            }
            50% {
                border-color: rgba(0, 247, 247, 0.6);
                box-shadow: 0 0 12px rgba(0, 247, 247, 0.2);
            }
        }
        .hero-badge .live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #FF4D2E;
            animation: live-dot-pulse 1s ease-in-out infinite;
        }
        @keyframes live-dot-pulse {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 4px #FF4D2E;
            }
            50% {
                opacity: 0.35;
                box-shadow: 0 0 12px #FF4D2E;
            }
        }
        .hero-title {
            font-size: clamp(2.4rem, 5vw, 3.6rem);
            font-weight: 900;
            line-height: 1.2;
            color: #F8FAFC;
            letter-spacing: -0.02em;
            max-width: 800px;
        }
        .hero-title .highlight {
            background: linear-gradient(135deg, #FF4D2E 0%, #FF7B5E 40%, #9D2EF4 80%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 18px rgba(157, 46, 244, 0.4));
        }
        .hero-subtitle {
            font-size: 1.1rem;
            color: #94A3B8;
            max-width: 600px;
            line-height: 1.65;
        }
        .hero-cta-group {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 8px;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: 28px;
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            background: linear-gradient(135deg, #FF5C3A 0%, #FF4D2E 50%, #D93A1E 100%);
            border: none;
            cursor: pointer;
            transition: all var(--transition-fast);
            box-shadow: 0 4px 20px rgba(255, 77, 46, 0.35);
            text-decoration: none;
        }
        .btn-primary:hover {
            box-shadow: 0 6px 30px rgba(255, 77, 46, 0.55);
            transform: translateY(-2px);
            background: linear-gradient(135deg, #FF7B5E 0%, #FF5C3A 50%, #E84528 100%);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: 28px;
            font-weight: 700;
            font-size: 1rem;
            color: #E2E8F0;
            background: transparent;
            border: 1.5px solid rgba(157, 46, 244, 0.5);
            cursor: pointer;
            transition: all var(--transition-fast);
            text-decoration: none;
        }
        .btn-outline:hover {
            background: rgba(157, 46, 244, 0.12);
            border-color: #9D2EF4;
            box-shadow: 0 0 20px rgba(157, 46, 244, 0.25);
            transform: translateY(-2px);
        }

        /* ===== SECTION ===== */
        .section-block {
            padding: 70px 0;
            position: relative;
            z-index: 2;
        }
        .section-title {
            font-size: clamp(1.6rem, 3.2vw, 2.2rem);
            font-weight: 800;
            color: #F8FAFC;
            text-align: center;
            margin-bottom: 8px;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 4px;
            border-radius: 2px;
            background: linear-gradient(90deg, #9D2EF4, #FF4D2E);
        }
        .section-subtitle {
            text-align: center;
            color: #94A3B8;
            font-size: 0.95rem;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .section-header-wrap {
            text-align: center;
            margin-bottom: 40px;
        }

        /* ===== STATS ROW ===== */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 24px;
        }
        .stat-mini-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-md);
            padding: 18px 16px;
            text-align: center;
            transition: all var(--transition-fast);
            position: relative;
            overflow: hidden;
        }
        .stat-mini-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--thunder), transparent);
            opacity: 0;
            transition: opacity var(--transition-fast);
        }
        .stat-mini-card:hover {
            border-color: var(--card-border-hover);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .stat-mini-card:hover::before {
            opacity: 1;
        }
        .stat-mini-value {
            font-family: 'JetBrains Mono', 'SF Mono', 'Consolas', monospace;
            font-size: 1.7rem;
            font-weight: 700;
            color: #E2E8F0;
            text-shadow: 0 0 8px rgba(0, 247, 247, 0.3);
        }
        .stat-mini-label {
            font-size: 0.78rem;
            color: #94A3B8;
            margin-top: 4px;
        }
        .stat-mini-trend {
            font-size: 0.72rem;
            font-weight: 600;
            margin-top: 2px;
            display: inline-flex;
            align-items: center;
            gap: 3px;
        }
        .trend-up {
            color: #22c55e;
        }
        .trend-down {
            color: #ef4444;
        }
        .trend-neutral {
            color: #94A3B8;
        }

        /* ===== PLAYER CARDS GRID ===== */
        .player-cards-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 14px;
        }
        .player-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-smooth);
            cursor: pointer;
            position: relative;
            text-align: center;
            padding-bottom: 14px;
        }
        .player-card:hover {
            border-color: var(--card-border-hover);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-4px);
        }
        .player-card-avatar {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
            border-bottom: 2px solid rgba(157, 46, 244, 0.3);
            transition: border-color var(--transition-fast);
        }
        .player-card:hover .player-card-avatar {
            border-bottom-color: #9D2EF4;
        }
        .player-card-tag {
            position: absolute;
            top: 8px;
            right: 8px;
            padding: 3px 8px;
            border-radius: 10px;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            color: #fff;
            z-index: 2;
        }
        .tag-carry {
            background: #FF4D2E;
        }
        .tag-mid {
            background: #9D2EF4;
        }
        .tag-jg {
            background: #F0B90B;
            color: #0A0E16;
        }
        .tag-sup {
            background: #00F7F7;
            color: #0A0E16;
        }
        .tag-top {
            background: #22c55e;
        }
        .player-card-name {
            font-weight: 700;
            font-size: 0.9rem;
            color: #E2E8F0;
            margin-top: 10px;
            padding: 0 8px;
        }
        .player-card-team {
            font-size: 0.72rem;
            color: #94A3B8;
            margin-top: 2px;
        }
        .player-card-kda {
            font-family: 'JetBrains Mono', 'SF Mono', 'Consolas', monospace;
            font-size: 0.78rem;
            font-weight: 600;
            color: #F0B90B;
            margin-top: 4px;
        }

        /* ===== RADAR CHART CARDS ===== */
        .radar-cards-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        .radar-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-lg);
            padding: 20px;
            transition: all var(--transition-smooth);
            text-align: center;
        }
        .radar-card:hover {
            border-color: var(--card-border-hover);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .radar-card h3 {
            font-weight: 700;
            font-size: 1rem;
            color: #E2E8F0;
            margin-bottom: 12px;
        }
        .radar-svg-wrap {
            width: 140px;
            height: 140px;
            margin: 0 auto 10px;
        }
        .radar-svg-wrap svg {
            width: 100%;
            height: 100%;
        }
        .radar-stats-list {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            justify-content: center;
            font-size: 0.7rem;
            color: #94A3B8;
        }
        .radar-stats-list span {
            background: rgba(157, 46, 244, 0.1);
            padding: 3px 8px;
            border-radius: 10px;
            white-space: nowrap;
            border: 1px solid rgba(157, 46, 244, 0.2);
        }

        /* ===== TEAM RANKING TABLE ===== */
        .ranking-table-wrap {
            overflow-x: auto;
            border-radius: var(--radius-lg);
            border: 1px solid var(--card-border);
            background: var(--card-bg);
        }
        .ranking-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
            font-size: 0.9rem;
        }
        .ranking-table th {
            background: rgba(157, 46, 244, 0.1);
            color: #E2E8F0;
            font-weight: 700;
            padding: 14px 16px;
            text-align: left;
            font-size: 0.8rem;
            letter-spacing: 0.03em;
            border-bottom: 2px solid rgba(157, 46, 244, 0.3);
            white-space: nowrap;
        }
        .ranking-table td {
            padding: 13px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            color: #cbd5e1;
            white-space: nowrap;
            vertical-align: middle;
        }
        .ranking-table tbody tr {
            transition: all var(--transition-fast);
        }
        .ranking-table tbody tr:hover {
            background: rgba(157, 46, 244, 0.06);
        }
        .rank-num {
            font-family: 'JetBrains Mono', 'SF Mono', 'Consolas', monospace;
            font-weight: 800;
            font-size: 1.1rem;
            color: #F8FAFC;
            text-align: center;
        }
        .rank-top1 {
            color: #F0B90B !important;
            text-shadow: 0 0 10px rgba(240, 185, 11, 0.5);
        }
        .rank-top2 {
            color: #c0c0c0 !important;
        }
        .rank-top3 {
            color: #cd7f32 !important;
        }
        .team-name-cell {
            font-weight: 600;
            color: #E2E8F0;
        }
        .win-rate-bar {
            display: inline-block;
            height: 6px;
            border-radius: 3px;
            background: linear-gradient(90deg, #9D2EF4, #FF4D2E);
            margin-right: 6px;
            vertical-align: middle;
        }

        /* ===== TRANSFER NEWS ===== */
        .transfer-news-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .transfer-news-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            transition: all var(--transition-smooth);
            position: relative;
        }
        .transfer-news-item:hover {
            border-color: var(--card-border-hover);
            box-shadow: var(--shadow-card-hover);
            transform: translateX(3px);
        }
        .transfer-date-badge {
            flex-shrink: 0;
            font-family: 'JetBrains Mono', 'SF Mono', 'Consolas', monospace;
            font-size: 0.72rem;
            font-weight: 700;
            color: #00F7F7;
            background: rgba(0, 247, 247, 0.08);
            padding: 6px 12px;
            border-radius: 14px;
            border: 1px solid rgba(0, 247, 247, 0.2);
            white-space: nowrap;
            min-width: 70px;
            text-align: center;
        }
        .transfer-news-content h4 {
            font-weight: 700;
            font-size: 0.95rem;
            color: #E2E8F0;
            margin: 0 0 4px;
        }
        .transfer-news-content p {
            font-size: 0.82rem;
            color: #94A3B8;
            margin: 0;
            line-height: 1.5;
        }
        .transfer-tag {
            display: inline-block;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 8px;
            margin-left: 6px;
            vertical-align: middle;
        }
        .tag-in {
            background: rgba(34, 197, 94, 0.15);
            color: #22c55e;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }
        .tag-out {
            background: rgba(239, 68, 68, 0.15);
            color: #ef4444;
            border: 1px solid rgba(239, 68, 68, 0.3);
        }
        .tag-renew {
            background: rgba(240, 185, 11, 0.15);
            color: #F0B90B;
            border: 1px solid rgba(240, 185, 11, 0.3);
        }

        /* ===== FAQ ===== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: rgba(157, 46, 244, 0.4);
        }
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            background: transparent;
            border: none;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95rem;
            color: #E2E8F0;
            text-align: left;
            gap: 12px;
            transition: all var(--transition-fast);
        }
        .faq-question:hover {
            color: #F8FAFC;
        }
        .faq-icon-left {
            flex-shrink: 0;
            color: #00F7F7;
            font-size: 1.1rem;
        }
        .faq-arrow {
            flex-shrink: 0;
            color: #9D2EF4;
            transition: transform var(--transition-smooth);
            font-size: 1rem;
            font-weight: 700;
        }
        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
            color: #FF4D2E;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
            padding: 0 20px;
            color: #94A3B8;
            font-size: 0.88rem;
            line-height: 1.7;
            border-left: 3px solid transparent;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 20px 16px;
            border-left-color: #9D2EF4;
        }

        /* ===== CTA BANNER ===== */
        .cta-banner {
            border-radius: var(--radius-lg);
            padding: 48px 32px;
            text-align: center;
            background: linear-gradient(135deg, rgba(157, 46, 244, 0.2) 0%, rgba(255, 77, 46, 0.15) 50%, rgba(10, 14, 22, 0.9) 100%);
            border: 1px solid rgba(157, 46, 244, 0.35);
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -30%;
            width: 160%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(157, 46, 244, 0.12) 0%, transparent 70%);
            z-index: 0;
            animation: cta-rotate 20s linear infinite;
        }
        @keyframes cta-rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        .cta-banner>* {
            position: relative;
            z-index: 2;
        }
        .cta-banner h2 {
            font-size: clamp(1.4rem, 2.8vw, 2rem);
            font-weight: 800;
            color: #F8FAFC;
            margin-bottom: 8px;
        }
        .cta-banner p {
            color: #94A3B8;
            font-size: 0.95rem;
            margin-bottom: 20px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ===== FOOTER ===== */
        footer {
            background: #080c14;
            border-top: 1px solid rgba(157, 46, 244, 0.2);
            padding: 40px 0 28px;
            position: relative;
            z-index: 2;
        }
        .footer-bottom {
            text-align: center;
            font-size: 0.78rem;
            color: #64748B;
            line-height: 2;
        }
        .footer-bottom a {
            color: #94A3B8;
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: #F0B90B;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .player-cards-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .radar-cards-row {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-row {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        @media (max-width: 1024px) {
            .dock-nav-links a {
                padding: 6px 10px;
                font-size: 0.78rem;
            }
            .dock-nav {
                gap: 10px;
                padding: 8px 12px 8px 14px;
            }
            .dock-cta-btn {
                font-size: 0.75rem;
                padding: 7px 13px;
            }
            .player-cards-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }
            .radar-cards-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .hero-section {
                padding: 120px 0 60px;
                min-height: 400px;
            }
            .section-block {
                padding: 50px 0;
            }
        }
        @media (max-width: 768px) {
            .dock-nav {
                gap: 6px;
                padding: 6px 10px;
                border-radius: 28px;
                max-width: 95%;
            }
            .dock-nav-links {
                display: none;
                position: absolute;
                top: calc(100% + 10px);
                left: 50%;
                transform: translateX(-50%);
                flex-direction: column;
                background: rgba(10, 14, 22, 0.96);
                backdrop-filter: blur(28px);
                -webkit-backdrop-filter: blur(28px);
                border: 1px solid rgba(255, 255, 255, 0.12);
                border-radius: var(--radius-lg);
                padding: 12px 8px;
                gap: 2px;
                min-width: 200px;
                box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
                z-index: 999;
            }
            .dock-nav-links.show {
                display: flex;
            }
            .dock-nav-links a {
                padding: 10px 16px;
                border-radius: 12px;
                font-size: 0.85rem;
                width: 100%;
                text-align: center;
            }
            .dock-mobile-toggle {
                display: block;
            }
            .dock-cta-btn {
                font-size: 0.7rem;
                padding: 6px 10px;
                gap: 3px;
            }
            .player-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .radar-cards-row {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .hero-title {
                font-size: 1.8rem;
            }
            .hero-subtitle {
                font-size: 0.9rem;
            }
            .hero-section {
                padding: 110px 0 50px;
                min-height: 360px;
            }
            .section-block {
                padding: 40px 0;
            }
            .container-main {
                padding: 0 14px;
            }
            .ranking-table {
                min-width: 550px;
                font-size: 0.75rem;
            }
            .ranking-table th,
            .ranking-table td {
                padding: 10px 8px;
            }
            .cta-banner {
                padding: 32px 18px;
            }
            .transfer-news-item {
                flex-direction: column;
                gap: 8px;
                padding: 14px 16px;
            }
        }
        @media (max-width: 520px) {
            .player-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 6px;
            }
            .player-card-name {
                font-size: 0.75rem;
            }
            .player-card-kda {
                font-size: 0.68rem;
            }
            .player-card-tag {
                font-size: 0.6rem;
                padding: 2px 6px;
                top: 4px;
                right: 4px;
            }
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 6px;
            }
            .stat-mini-value {
                font-size: 1.3rem;
            }
            .hero-title {
                font-size: 1.5rem;
            }
            .dock-nav {
                border-radius: 22px;
                padding: 5px 8px;
                gap: 4px;
            }
            .dock-logo {
                font-size: 0.9rem;
            }
            .dock-cta-btn {
                font-size: 0.65rem;
                padding: 5px 8px;
            }
            .section-title {
                font-size: 1.3rem;
            }
            .cta-banner h2 {
                font-size: 1.2rem;
            }
            .btn-primary,
            .btn-outline {
                padding: 10px 18px;
                font-size: 0.85rem;
            }
        }

/* roulang page: category4 */
:root {
            --molten-orange: #FF4D2E;
            --thunder-purple: #9D2EF4;
            --deep-black: #0A0E16;
            --dark-card: #121A24;
            --victory-gold: #F0B90B;
            --data-cyan: #00F7F7;
            --text-weak: #94A3B8;
            --text-strong: #E2E8F0;
            --text-white: #F8FAFC;
            --border-glow: rgba(157, 46, 244, 0.2);
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --shadow-glow-sm: 0 0 10px rgba(157, 46, 244, 0.15);
            --shadow-glow-md: 0 0 25px rgba(157, 46, 244, 0.3);
            --shadow-glow-lg: 0 0 40px rgba(157, 46, 244, 0.45);
            --shadow-orange-glow: 0 0 20px rgba(255, 77, 46, 0.35);
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-mono: 'JetBrains Mono', 'Courier New', monospace;
            --font-sans: 'Inter', 'Noto Sans SC', 'system-ui', sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            background: radial-gradient(ellipse at center, #0A0E16 30%, #03050A 100%);
            color: var(--text-weak);
            line-height: 1.7;
            min-height: 100vh;
            font-size: 1rem;
            letter-spacing: 0.01em;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            background:
                radial-gradient(ellipse at 20% 15%, rgba(157, 46, 244, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 75% 30%, rgba(255, 77, 46, 0.05) 0%, transparent 55%),
                radial-gradient(ellipse at 50% 70%, rgba(0, 247, 247, 0.03) 0%, transparent 50%);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
        }

        input {
            font-family: inherit;
        }

        /* ============ DOCK NAVIGATION ============ */
        .dock-nav {
            position: fixed;
            top: 16px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            width: calc(100% - 32px);
            max-width: 820px;
            background: rgba(10, 14, 22, 0.85);
            backdrop-filter: blur(28px);
            -webkit-backdrop-filter: blur(28px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 40px;
            padding: 10px 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            transition: all var(--transition-smooth);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(157, 46, 244, 0.1);
        }

        .dock-nav.scrolled {
            transform: translateX(-50%) scale(0.98);
            background: rgba(10, 14, 22, 0.94);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(157, 46, 244, 0.2);
        }

        .dock-logo {
            display: flex;
            align-items: center;
            gap: 7px;
            font-weight: 800;
            font-size: 1.15rem;
            color: var(--text-white);
            white-space: nowrap;
            letter-spacing: 0.03em;
            transition: all var(--transition-fast);
            text-decoration: none;
            flex-shrink: 0;
        }

        .dock-logo:hover {
            color: var(--molten-orange);
            text-shadow: 0 0 18px rgba(255, 77, 46, 0.5);
        }

        .logo-icon {
            font-size: 1.5rem;
            filter: drop-shadow(0 0 6px rgba(255, 77, 46, 0.6));
            animation: logoPulse 2.5s ease-in-out infinite;
        }

        @keyframes logoPulse {
            0%,
            100% {
                filter: drop-shadow(0 0 6px rgba(255, 77, 46, 0.6));
            }
            50% {
                filter: drop-shadow(0 0 14px rgba(255, 77, 46, 0.95));
            }
        }

        .dock-nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: nowrap;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .dock-nav-links::-webkit-scrollbar {
            display: none;
        }

        .dock-nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 15px;
            border-radius: 28px;
            font-size: 0.88rem;
            font-weight: 500;
            color: #94A3B8;
            white-space: nowrap;
            transition: all var(--transition-fast);
            letter-spacing: 0.02em;
            position: relative;
            text-decoration: none;
        }

        .dock-nav-links a:hover {
            color: #E2E8F0;
            background: rgba(255, 255, 255, 0.04);
        }

        .dock-nav-links a.active {
            color: #F8FAFC;
            background: rgba(157, 46, 244, 0.2);
            font-weight: 600;
            box-shadow: 0 0 12px rgba(157, 46, 244, 0.25);
        }

        .dock-nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 2px;
            border-radius: 2px;
            background: var(--thunder-purple);
            box-shadow: 0 0 8px rgba(157, 46, 244, 0.7);
        }

        .dock-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 10px 18px;
            border-radius: 28px;
            font-size: 0.85rem;
            font-weight: 700;
            color: #F8FAFC;
            background: linear-gradient(135deg, #FF5C3A 0%, #FF3D1A 100%);
            border: none;
            white-space: nowrap;
            cursor: pointer;
            transition: all var(--transition-fast);
            box-shadow: 0 0 16px rgba(255, 77, 46, 0.4);
            letter-spacing: 0.03em;
            flex-shrink: 0;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .dock-cta-btn::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
            animation: btnShine 2.5s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes btnShine {
            0%,
            100% {
                opacity: 0;
                transform: translate(-30%, -30%);
            }
            50% {
                opacity: 1;
                transform: translate(20%, 20%);
            }
        }

        .dock-cta-btn:hover {
            background: linear-gradient(135deg, #FF7A5C 0%, #FF5C3A 100%);
            box-shadow: 0 0 28px rgba(255, 77, 46, 0.65);
            transform: translateY(-1px);
        }

        .pulse-cta {
            animation: pulseCTA 2.2s ease-in-out infinite;
        }

        @keyframes pulseCTA {
            0%,
            100% {
                box-shadow: 0 0 16px rgba(255, 77, 46, 0.4);
            }
            50% {
                box-shadow: 0 0 32px rgba(255, 77, 46, 0.8), 0 0 60px rgba(255, 77, 46, 0.3);
            }
        }

        .dock-mobile-toggle {
            display: none;
            font-size: 1.5rem;
            color: #E2E8F0;
            padding: 6px 10px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            transition: all var(--transition-fast);
        }

        .dock-mobile-toggle:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #F8FAFC;
        }

        /* Mobile nav panel */
        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: 80px;
            left: 16px;
            right: 16px;
            z-index: 999;
            background: rgba(18, 26, 36, 0.97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(157, 46, 244, 0.25);
            border-radius: 20px;
            padding: 16px;
            flex-direction: column;
            gap: 4px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
        }

        .mobile-nav-panel.open {
            display: flex;
        }

        .mobile-nav-panel a {
            display: block;
            padding: 12px 18px;
            border-radius: 14px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #94A3B8;
            text-decoration: none;
            transition: all var(--transition-fast);
        }

        .mobile-nav-panel a:hover,
        .mobile-nav-panel a.active {
            color: #F8FAFC;
            background: rgba(157, 46, 244, 0.2);
        }

        .mobile-nav-panel a.active {
            font-weight: 700;
            border-left: 3px solid var(--thunder-purple);
            padding-left: 15px;
        }

        /* ============ CONTAINERS ============ */
        .container-main {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-spacing {
            padding: 80px 0;
        }

        @media (max-width: 768px) {
            .section-spacing {
                padding: 48px 0;
            }
            .container-main {
                padding: 0 16px;
            }
        }

        /* ============ BUTTONS ============ */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            color: #F8FAFC;
            background: linear-gradient(135deg, #FF5C3A 0%, #FF3D1A 100%);
            border: none;
            cursor: pointer;
            transition: all var(--transition-smooth);
            box-shadow: 0 0 20px rgba(255, 77, 46, 0.35);
            letter-spacing: 0.03em;
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-primary:hover {
            background: linear-gradient(135deg, #FF7A5C 0%, #FF5C3A 100%);
            box-shadow: 0 0 35px rgba(255, 77, 46, 0.6);
            transform: translateY(-2px);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            color: #E2E8F0;
            background: transparent;
            border: 1.5px solid rgba(157, 46, 244, 0.5);
            cursor: pointer;
            transition: all var(--transition-smooth);
            letter-spacing: 0.03em;
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-secondary:hover {
            background: rgba(157, 46, 244, 0.12);
            border-color: #9D2EF4;
            box-shadow: 0 0 22px rgba(157, 46, 244, 0.3);
        }

        /* ============ SECTION HEADINGS ============ */
        .section-heading {
            font-family: 'Inter', 'Noto Sans SC', system-ui, sans-serif;
            font-weight: 800;
            font-size: 2.4rem;
            color: #F8FAFC;
            letter-spacing: 0.02em;
            margin-bottom: 0.6rem;
            position: relative;
            display: inline-block;
        }
        .section-heading::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 4px;
            border-radius: 2px;
            background: linear-gradient(90deg, #9D2EF4 0%, #FF4D2E 100%);
        }
        .section-subheading {
            font-size: 1.05rem;
            color: #94A3B8;
            margin-bottom: 2rem;
            line-height: 1.6;
            max-width: 600px;
        }

        /* ============ CARDS ============ */
        .card-dark {
            background: #121A24;
            border: 1px solid rgba(157, 46, 244, 0.18);
            border-radius: 16px;
            transition: all var(--transition-smooth);
            overflow: hidden;
        }
        .card-dark:hover {
            border-color: #9D2EF4;
            box-shadow: 0 0 28px rgba(157, 46, 244, 0.3);
            transform: translateY(-3px);
        }

        /* ============ REPLAY CARD ============ */
        .replay-card {
            background: #121A24;
            border: 1px solid rgba(157, 46, 244, 0.18);
            border-radius: 16px;
            overflow: hidden;
            transition: all var(--transition-smooth);
            cursor: pointer;
            position: relative;
        }
        .replay-card:hover {
            border-color: #9D2EF4;
            box-shadow: 0 0 30px rgba(157, 46, 244, 0.35);
            transform: translateY(-4px);
        }
        .replay-card .thumb-wrap {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
            background: #0A0E16;
        }
        .replay-card .thumb-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }
        .replay-card:hover .thumb-wrap img {
            transform: scale(1.06);
        }
        .replay-card .duration-badge {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.8);
            color: #E2E8F0;
            font-size: 0.78rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 6px;
            letter-spacing: 0.03em;
            font-family: var(--font-mono);
        }
        .replay-card .live-dot {
            position: absolute;
            top: 10px;
            left: 10px;
            width: 10px;
            height: 10px;
            background: #FF4D2E;
            border-radius: 50%;
            box-shadow: 0 0 12px rgba(255, 77, 46, 0.8);
            animation: liveBlink 1.2s ease-in-out infinite;
        }
        @keyframes liveBlink {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.3;
            }
        }
        .replay-card .game-tag {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(157, 46, 244, 0.75);
            color: #F8FAFC;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 14px;
            letter-spacing: 0.04em;
            backdrop-filter: blur(6px);
        }
        .replay-card .card-info {
            padding: 16px;
        }
        .replay-card .card-info h3 {
            font-weight: 700;
            font-size: 1.05rem;
            color: #E2E8F0;
            margin-bottom: 6px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .replay-card .card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.8rem;
            color: #64748B;
            flex-wrap: wrap;
        }
        .replay-card .card-meta .view-count {
            color: #00F7F7;
            font-family: var(--font-mono);
            font-weight: 600;
            font-size: 0.78rem;
        }

        /* ============ CASTER CARD ============ */
        .caster-card {
            background: #121A24;
            border: 1px solid rgba(157, 46, 244, 0.15);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            transition: all var(--transition-smooth);
        }
        .caster-card:hover {
            border-color: #9D2EF4;
            box-shadow: 0 0 24px rgba(157, 46, 244, 0.25);
            transform: translateY(-3px);
        }
        .caster-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 14px;
            background: linear-gradient(135deg, #9D2EF4, #FF4D2E);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #F8FAFC;
            font-weight: 800;
            border: 3px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 20px rgba(157, 46, 244, 0.3);
            overflow: hidden;
        }
        .caster-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        .caster-card h4 {
            font-weight: 700;
            font-size: 1.1rem;
            color: #F8FAFC;
            margin-bottom: 4px;
        }
        .caster-card .caster-game {
            font-size: 0.8rem;
            color: #F0B90B;
            font-weight: 600;
            letter-spacing: 0.04em;
            margin-bottom: 8px;
        }
        .caster-card p {
            font-size: 0.85rem;
            color: #94A3B8;
            line-height: 1.5;
        }

        /* ============ VIDEO EMBED PLACEHOLDER ============ */
        .embed-placeholder {
            background: #0A0E16;
            border: 2px dashed rgba(157, 46, 244, 0.35);
            border-radius: 16px;
            aspect-ratio: 16/9;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: all var(--transition-smooth);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .embed-placeholder::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(157, 46, 244, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .embed-placeholder:hover {
            border-color: #9D2EF4;
            box-shadow: 0 0 35px rgba(157, 46, 244, 0.3);
        }
        .embed-placeholder .play-icon {
            font-size: 3.5rem;
            color: rgba(255, 255, 255, 0.7);
            transition: all var(--transition-fast);
            position: relative;
            z-index: 1;
        }
        .embed-placeholder:hover .play-icon {
            color: #FF4D2E;
            transform: scale(1.1);
            text-shadow: 0 0 30px rgba(255, 77, 46, 0.7);
        }
        .embed-placeholder .embed-label {
            font-size: 0.9rem;
            color: #64748B;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }

        /* ============ FAQ ============ */
        .faq-item {
            background: #121A24;
            border: 1px solid rgba(157, 46, 244, 0.15);
            border-radius: 14px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: rgba(157, 46, 244, 0.4);
        }
        .faq-question {
            width: 100%;
            padding: 18px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            background: transparent;
            border: none;
            color: #E2E8F0;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-align: left;
            letter-spacing: 0.02em;
            transition: all var(--transition-fast);
        }
        .faq-question:hover {
            color: #F8FAFC;
        }
        .faq-question .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #00F7F7;
        }
        .faq-question .faq-arrow {
            flex-shrink: 0;
            font-size: 0.9rem;
            color: #9D2EF4;
            transition: transform var(--transition-fast);
        }
        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 22px;
            border-left: 3px solid transparent;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 22px 18px;
            border-left-color: #9D2EF4;
        }
        .faq-answer p {
            color: #94A3B8;
            font-size: 0.9rem;
            line-height: 1.7;
        }

        /* ============ FILTER BAR ============ */
        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
        }
        .filter-chip {
            display: inline-flex;
            align-items: center;
            padding: 9px 18px;
            border-radius: 24px;
            font-size: 0.85rem;
            font-weight: 500;
            color: #94A3B8;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.02em;
        }
        .filter-chip:hover {
            color: #E2E8F0;
            border-color: rgba(157, 46, 244, 0.4);
            background: rgba(157, 46, 244, 0.08);
        }
        .filter-chip.active {
            color: #F8FAFC;
            background: rgba(157, 46, 244, 0.25);
            border-color: #9D2EF4;
            font-weight: 700;
            box-shadow: 0 0 14px rgba(157, 46, 244, 0.25);
        }

        /* ============ DOWNLOAD CTA ============ */
        .download-cta-block {
            background: linear-gradient(135deg, rgba(157, 46, 244, 0.2) 0%, rgba(255, 77, 46, 0.15) 100%);
            border: 1px solid rgba(157, 46, 244, 0.35);
            border-radius: 20px;
            padding: 36px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            transition: all var(--transition-smooth);
        }
        .download-cta-block:hover {
            border-color: #9D2EF4;
            box-shadow: 0 0 40px rgba(157, 46, 244, 0.3);
        }

        /* ============ FOOTER ============ */
        footer {
            background: #0A0E16;
            border-top: 1px solid rgba(157, 46, 244, 0.2);
            padding: 40px 0 24px;
            margin-top: 60px;
        }
        .footer-bottom {
            text-align: center;
            color: #64748B;
            font-size: 0.82rem;
            line-height: 2;
        }
        .footer-bottom a {
            color: #94A3B8;
            transition: color var(--transition-fast);
            text-decoration: none;
        }
        .footer-bottom a:hover {
            color: #00F7F7;
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .dock-nav-links a {
                padding: 7px 10px;
                font-size: 0.78rem;
            }
            .dock-cta-btn {
                padding: 8px 14px;
                font-size: 0.78rem;
            }
            .dock-nav {
                max-width: 95%;
                padding: 8px 12px;
                gap: 6px;
                border-radius: 32px;
            }
            .section-heading {
                font-size: 1.9rem;
            }
        }

        @media (max-width: 768px) {
            .dock-nav-links {
                display: none;
            }
            .dock-cta-btn {
                display: none;
            }
            .dock-mobile-toggle {
                display: block;
            }
            .dock-nav {
                max-width: calc(100% - 20px);
                border-radius: 30px;
                padding: 10px 16px;
            }
            .section-heading {
                font-size: 1.6rem;
            }
            .section-heading::after {
                height: 3px;
                bottom: -4px;
            }
            .download-cta-block {
                flex-direction: column;
                text-align: center;
                padding: 24px 20px;
            }
            .replay-card .card-info h3 {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 520px) {
            .dock-nav {
                border-radius: 24px;
                top: 8px;
                padding: 8px 14px;
                max-width: calc(100% - 12px);
            }
            .dock-logo {
                font-size: 1rem;
            }
            .logo-icon {
                font-size: 1.2rem;
            }
            .section-heading {
                font-size: 1.35rem;
            }
            .filter-chip {
                padding: 7px 12px;
                font-size: 0.75rem;
            }
            .replay-card .card-info {
                padding: 10px;
            }
            .replay-card .card-info h3 {
                font-size: 0.82rem;
            }
        }

        /* Utility animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .animate-fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
        }
        .delay-100 {
            animation-delay: 0.1s;
        }
        .delay-200 {
            animation-delay: 0.2s;
        }
        .delay-300 {
            animation-delay: 0.3s;
        }
        .delay-400 {
            animation-delay: 0.4s;
        }
        .delay-500 {
            animation-delay: 0.5s;
        }
