/* roulang page: index */
:root {
            --bg-primary: #0F1220;
            --bg-secondary: #111627;
            --bg-card: rgba(26, 29, 46, 0.92);
            --bg-card-hover: rgba(30, 34, 54, 0.96);
            --text-primary: #F5F7FA;
            --text-secondary: #A0A5B3;
            --text-muted: #6B7180;
            --accent-gold: #C8AA6E;
            --accent-gold-bright: #D4AF7A;
            --accent-neon: #2DE2E6;
            --accent-neon-soft: #35E0D0;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-gold: rgba(200, 170, 110, 0.35);
            --card-radius-lg: 20px;
            --card-radius-md: 16px;
            --card-radius-sm: 12px;
            --pill-radius: 999px;
            --btn-radius: 12px;
            --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 14px 36px rgba(45, 226, 230, 0.12);
            --shadow-glow: 0 0 12px rgba(45, 226, 230, 0.35);
            --space-section: 72px;
            --space-card-pad: 24px;
            --font-stack: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
            --container-max: 1240px;
            --container-narrow: 1080px;
            --transition-base: 0.25s ease;
            --transition-slow: 0.4s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-stack);
            font-size: 15px;
            line-height: 1.75;
            color: var(--text-primary);
            background: var(--bg-primary);
            background-image: linear-gradient(165deg, #0F1220 0%, #141827 45%, #1A1D2E 100%);
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-base), opacity var(--transition-base);
        }

        a:hover {
            color: var(--accent-neon);
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
            border-radius: var(--card-radius-sm);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
            color: inherit;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--accent-neon);
            outline-offset: 3px;
            border-radius: 4px;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        .container-narrow {
            max-width: var(--container-narrow);
        }

        section {
            padding: var(--space-section) 0;
            position: relative;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: var(--accent-gold-bright);
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .section-label::before {
            content: '';
            width: 20px;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-neon), transparent);
            border-radius: 2px;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.4;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.01em;
        }

        .section-desc {
            font-size: 15px;
            line-height: 1.85;
            color: var(--text-secondary);
            max-width: 720px;
            margin-bottom: 28px;
        }

        .section-head {
            margin-bottom: 36px;
        }

        .section-head.center {
            text-align: center;
        }
        .section-head.center .section-desc {
            margin-left: auto;
            margin-right: auto;
        }

        h1,
        h2,
        h3,
        h4 {
            line-height: 1.4;
            font-weight: 700;
            color: var(--text-primary);
        }

        h1 {
            font-size: 42px;
            letter-spacing: 0.01em;
        }
        h2 {
            font-size: 28px;
        }
        h3 {
            font-size: 18px;
        }
        h4 {
            font-size: 16px;
        }

        p {
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .text-gold {
            color: var(--accent-gold-bright);
        }
        .text-neon {
            color: var(--accent-neon);
        }
        .text-muted {
            color: var(--text-muted);
        }

        /* ============ Header / Nav ============ */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(15, 18, 32, 0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 2px solid transparent;
            border-image: linear-gradient(90deg, var(--accent-neon), var(--accent-gold), var(--accent-neon)) 1;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            height: 68px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 19px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .logo .logo-mark {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--accent-gold), #8A6D3B);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            color: #0F1220;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
        }

        .nav-links a {
            display: inline-flex;
            padding: 8px 16px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition-base);
            position: relative;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.05);
            text-shadow: 0 0 8px rgba(45, 226, 230, 0.5);
        }

        .nav-links a.active {
            color: var(--accent-neon);
            background: rgba(45, 226, 230, 0.08);
            text-shadow: 0 0 8px rgba(45, 226, 230, 0.7);
            box-shadow: inset 0 0 0 1px rgba(45, 226, 230, 0.3);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 16px;
            right: 16px;
            height: 2px;
            background: var(--accent-neon);
            border-radius: 2px;
            box-shadow: 0 0 8px var(--accent-neon);
        }

        .nav-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.06);
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            border: 1px solid var(--border-subtle);
        }

        .nav-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all var(--transition-base);
        }

        /* ============ Hero ============ */
        .hero {
            min-height: 92vh;
            display: flex;
            align-items: center;
            padding: 72px 0 56px;
            background-image: linear-gradient(165deg, rgba(15, 18, 32, 0.88) 0%, rgba(15, 18, 32, 0.72) 40%, rgba(15, 18, 32, 0.92) 100%), url('/assets/images/5fee0ef8440f64b4.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 20% 30%, rgba(45, 226, 230, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 70%, rgba(200, 170, 110, 0.1) 0%, transparent 55%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 160px;
            background: linear-gradient(0deg, var(--bg-primary) 0%, transparent 100%);
            pointer-events: none;
        }

        .hero .container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 48px;
            align-items: center;
        }

        .hero-content {
            max-width: 600px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(45, 226, 230, 0.1);
            border: 1px solid rgba(45, 226, 230, 0.35);
            color: var(--accent-neon);
            font-size: 13px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: var(--pill-radius);
            margin-bottom: 18px;
            letter-spacing: 0.04em;
        }

        .hero-badge .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent-neon);
            box-shadow: 0 0 8px var(--accent-neon);
            animation: pulse-dot 1.8s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.4);
            }
        }

        .hero h1 {
            font-size: 46px;
            font-weight: 800;
            letter-spacing: 0.01em;
            line-height: 1.3;
            margin-bottom: 18px;
            color: var(--text-primary);
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--accent-gold-bright), var(--accent-gold));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: var(--accent-gold-bright);
        }

        .hero-sub {
            font-size: 17px;
            line-height: 1.9;
            color: var(--text-secondary);
            margin-bottom: 28px;
            max-width: 540px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 26px;
            border-radius: var(--btn-radius);
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 0.02em;
            transition: all var(--transition-base);
            position: relative;
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-gold-bright), var(--accent-gold));
            color: #0F1220;
            box-shadow: 0 8px 24px rgba(200, 170, 110, 0.25);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(200, 170, 110, 0.4), 0 0 16px rgba(200, 170, 110, 0.3);
            color: #0F1220;
            filter: brightness(1.05);
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid rgba(255, 255, 255, 0.25);
        }

        .btn-secondary:hover {
            border-color: var(--accent-neon);
            color: var(--accent-neon);
            box-shadow: 0 0 16px rgba(45, 226, 230, 0.2);
            transform: translateY(-2px);
        }

        .btn-secondary:active {
            transform: translateY(0);
        }

        .hero-panel {
            background: rgba(26, 29, 46, 0.85);
            border-radius: var(--card-radius-lg);
            border: 1px solid rgba(200, 170, 110, 0.25);
            padding: 24px;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(45, 226, 230, 0.06);
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .hero-panel-label {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 13px;
            color: var(--text-secondary);
        }

        .hero-panel-label .live-indicator {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--accent-neon);
            font-weight: 600;
            font-size: 13px;
        }

        .hero-panel-label .live-indicator::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-neon);
            box-shadow: 0 0 10px var(--accent-neon);
            animation: pulse-dot 1.6s ease-in-out infinite;
        }

        .hero-match-card {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 14px;
            padding: 16px;
            border: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .hero-match-team {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
        }

        .hero-match-team .team-emblem {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: linear-gradient(135deg, #2A2D3E, #1E2130);
            border: 1px solid var(--border-gold);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: var(--accent-gold-bright);
        }

        .hero-match-team .team-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .hero-match-score {
            font-size: 22px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: 0.06em;
        }

        .hero-match-score .separator {
            color: var(--text-muted);
            font-weight: 400;
            margin: 0 4px;
        }

        .hero-match-info {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            color: var(--text-muted);
        }

        .hero-match-info .time-badge {
            background: rgba(45, 226, 230, 0.1);
            color: var(--accent-neon);
            padding: 3px 10px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 11px;
            border: 1px solid rgba(45, 226, 230, 0.3);
        }

        /* ============ Data badges ============ */
        .data-badges {
            padding: 28px 0;
            background: rgba(17, 22, 39, 0.6);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .data-badges-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
        }

        .data-badge {
            display: flex;
            align-items: center;
            gap: 14px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-subtle);
            border-radius: var(--card-radius-md);
            padding: 18px 20px;
            transition: all var(--transition-base);
        }

        .data-badge:hover {
            border-color: var(--border-gold);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: var(--shadow-card);
        }

        .data-badge .icon-wrap {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            background: rgba(45, 226, 230, 0.08);
            border: 1px solid rgba(45, 226, 230, 0.2);
            flex-shrink: 0;
        }

        .data-badge .badge-info {
            display: flex;
            flex-direction: column;
        }

        .data-badge .badge-value {
            font-size: 24px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-primary);
        }

        .data-badge .badge-label {
            font-size: 12px;
            color: var(--text-secondary);
            letter-spacing: 0.04em;
        }

        /* ============ Value cards (卖点三连) ============ */
        .value-cards-grid {
            display: grid;
            grid-template-columns: 1.25fr 0.9fr 0.9fr;
            gap: 18px;
            align-items: stretch;
        }

        .value-card {
            background: rgba(26, 29, 46, 0.85);
            border-radius: var(--card-radius-lg);
            border: 1px solid var(--border-subtle);
            padding: 26px;
            display: flex;
            flex-direction: column;
            transition: all var(--transition-base);
            position: relative;
            overflow: hidden;
        }

        .value-card.featured {
            background: linear-gradient(135deg, rgba(200, 170, 110, 0.08), rgba(26, 29, 46, 0.9));
            border-color: var(--border-gold);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
            min-height: 260px;
        }

        .value-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent-neon);
            box-shadow: var(--shadow-card-hover);
            background: var(--bg-card-hover);
        }

        .value-card .card-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: rgba(45, 226, 230, 0.08);
            border: 1px solid rgba(45, 226, 230, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 16px;
            flex-shrink: 0;
        }

        .value-card .card-tag {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: var(--accent-gold-bright);
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .value-card h3 {
            font-size: 19px;
            margin-bottom: 10px;
            letter-spacing: 0.01em;
        }

        .value-card p {
            font-size: 14px;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 16px;
            flex-grow: 1;
        }

        .value-card .card-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--accent-neon);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .value-card .card-link:hover {
            text-shadow: 0 0 8px rgba(45, 226, 230, 0.5);
        }

        .value-card.featured::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-neon));
        }

        /* ============ Scene demo ============ */
        .scene-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .scene-card {
            background: var(--bg-card);
            border-radius: var(--card-radius-lg);
            border: 1px solid var(--border-subtle);
            overflow: hidden;
            transition: all var(--transition-base);
            display: flex;
            flex-direction: column;
        }

        .scene-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent-neon);
            box-shadow: var(--shadow-card-hover);
        }

        .scene-card .scene-img-wrap {
            aspect-ratio: 16/9;
            overflow: hidden;
            position: relative;
            border-radius: 0;
        }

        .scene-card .scene-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
            border-radius: 0;
        }

        .scene-card:hover .scene-img-wrap img {
            transform: scale(1.04);
        }

        .scene-card .scene-img-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(15, 18, 32, 0.5) 0%, transparent 60%);
            pointer-events: none;
        }

        .scene-card .scene-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .scene-card .scene-tag {
            font-size: 11px;
            font-weight: 600;
            color: var(--accent-gold-bright);
            letter-spacing: 0.06em;
            margin-bottom: 8px;
        }

        .scene-card h3 {
            font-size: 17px;
            margin-bottom: 8px;
        }

        .scene-card p {
            font-size: 13px;
            line-height: 1.75;
            color: var(--text-secondary);
            flex-grow: 1;
        }

        /* ============ Live scores ============ */
        .score-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .score-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            background: rgba(26, 29, 46, 0.8);
            border-radius: var(--card-radius-md);
            border: 1px solid var(--border-subtle);
            padding: 18px 22px;
            transition: all var(--transition-base);
        }

        .score-card:hover {
            border-color: var(--accent-neon);
            background: var(--bg-card-hover);
            box-shadow: var(--shadow-card);
            transform: translateY(-2px);
        }

        .score-card-left {
            display: flex;
            align-items: center;
            gap: 14px;
            min-width: 0;
        }

        .score-card-teams {
            display: flex;
            flex-direction: column;
            gap: 4px;
            min-width: 0;
        }

        .score-card-team {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .team-emblem-sm {
            width: 24px;
            height: 24px;
            border-radius: 6px;
            background: linear-gradient(135deg, #2A2D3E, #1E2130);
            border: 1px solid var(--border-gold);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 700;
            color: var(--accent-gold-bright);
        }

        .score-card-right {
            text-align: right;
            flex-shrink: 0;
        }

        .score-card-score {
            font-size: 20px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: 0.04em;
        }

        .score-card-status {
            font-size: 11px;
            color: var(--accent-neon);
            font-weight: 600;
            margin-top: 2px;
        }

        .score-card-week {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ============ Team ranking ============ */
        .ranking-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .ranking-bar {
            display: flex;
            align-items: center;
            gap: 16px;
            background: rgba(26, 29, 46, 0.7);
            border-radius: var(--card-radius-md);
            border: 1px solid var(--border-subtle);
            padding: 14px 18px;
            transition: all var(--transition-base);
        }

        .ranking-bar:hover {
            border-color: var(--border-gold);
            background: var(--bg-card-hover);
        }

        .rank-number {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: rgba(200, 170, 110, 0.1);
            border: 1px solid var(--border-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: var(--accent-gold-bright);
            flex-shrink: 0;
        }

        .rank-number.top-1 {
            background: rgba(200, 170, 110, 0.2);
            box-shadow: 0 0 12px rgba(200, 170, 110, 0.3);
        }

        .rank-team-info {
            flex-grow: 1;
            min-width: 0;
        }

        .rank-team-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .rank-change-up {
            font-size: 12px;
            color: var(--accent-neon);
            font-weight: 600;
        }

        .rank-change-down {
            font-size: 12px;
            color: #FF6B6B;
            font-weight: 600;
        }

        .rank-change-stable {
            font-size: 12px;
            color: var(--text-muted);
        }

        .rank-progress {
            width: 120px;
            height: 6px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 999px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .rank-progress-fill {
            height: 100%;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-neon));
            transition: width var(--transition-slow);
        }

        .rank-points {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-primary);
            white-space: nowrap;
        }

        /* ============ Schedule preview ============ */
        .schedule-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .schedule-card {
            background: rgba(26, 29, 46, 0.8);
            border-radius: var(--card-radius-md);
            border: 1px solid var(--border-subtle);
            padding: 20px;
            transition: all var(--transition-base);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .schedule-card:hover {
            border-color: var(--accent-neon);
            box-shadow: var(--shadow-card);
            transform: translateY(-3px);
        }

        .schedule-date {
            font-size: 12px;
            font-weight: 600;
            color: var(--accent-gold-bright);
            letter-spacing: 0.04em;
        }

        .schedule-matchup {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .schedule-venue {
            font-size: 12px;
            color: var(--text-muted);
        }

        .schedule-card .btn-sm {
            align-self: flex-start;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-neon);
            padding: 6px 14px;
            border: 1px solid rgba(45, 226, 230, 0.3);
            border-radius: 8px;
            transition: all var(--transition-base);
        }

        .schedule-card .btn-sm:hover {
            background: rgba(45, 226, 230, 0.08);
            box-shadow: 0 0 12px rgba(45, 226, 230, 0.2);
        }

        /* ============ Social proof ============ */
        .quote-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .quote-card {
            background: rgba(26, 29, 46, 0.75);
            border-radius: var(--card-radius-md);
            border: 1px solid var(--border-subtle);
            padding: 22px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            transition: all var(--transition-base);
        }

        .quote-card:hover {
            border-color: var(--border-gold);
            box-shadow: var(--shadow-card);
        }

        .quote-text {
            font-size: 14px;
            line-height: 1.8;
            color: var(--text-secondary);
            font-style: italic;
        }

        .quote-source {
            font-size: 12px;
            font-weight: 600;
            color: var(--accent-gold-bright);
            letter-spacing: 0.04em;
        }

        /* ============ Comparison ============ */
        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 18px;
            align-items: stretch;
        }

        .comparison-card {
            background: rgba(26, 29, 46, 0.8);
            border-radius: var(--card-radius-lg);
            border: 1px solid var(--border-subtle);
            padding: 24px;
            display: flex;
            flex-direction: column;
            transition: all var(--transition-base);
        }

        .comparison-card.featured-compare {
            border-color: var(--accent-gold);
            background: linear-gradient(135deg, rgba(200, 170, 110, 0.06), rgba(26, 29, 46, 0.9));
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
        }

        .comparison-card:hover {
            transform: translateY(-3px);
            border-color: var(--accent-neon);
        }

        .comparison-card h3 {
            font-size: 17px;
            margin-bottom: 10px;
            color: var(--accent-gold-bright);
        }

        .comparison-card ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .comparison-card li {
            font-size: 13px;
            color: var(--text-secondary);
            display: flex;
            align-items: flex-start;
            gap: 8px;
            line-height: 1.65;
        }

        .comparison-card li::before {
            content: '▸';
            color: var(--accent-neon);
            flex-shrink: 0;
            font-size: 13px;
        }

        /* ============ News ============ */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .news-card {
            background: rgba(26, 29, 46, 0.8);
            border-radius: var(--card-radius-md);
            border: 1px solid var(--border-subtle);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: all var(--transition-base);
        }

        .news-card:hover {
            border-color: var(--accent-neon);
            box-shadow: var(--shadow-card);
            transform: translateY(-3px);
        }

        .news-card .news-img-wrap {
            aspect-ratio: 16/9;
            overflow: hidden;
            border-radius: 0;
        }
        .news-card .news-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
            transition: transform var(--transition-slow);
        }
        .news-card:hover .news-img-wrap img {
            transform: scale(1.03);
        }

        .news-card .news-body {
            padding: 18px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .news-date {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 6px;
        }

        .news-card h3 {
            font-size: 16px;
            margin-bottom: 8px;
            line-height: 1.5;
        }

        .news-summary {
            font-size: 13px;
            line-height: 1.75;
            color: var(--text-secondary);
            flex-grow: 1;
            margin-bottom: 12px;
        }

        .news-more {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-neon);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: all var(--transition-base);
        }

        .news-more:hover {
            text-shadow: 0 0 8px rgba(45, 226, 230, 0.5);
        }

        /* ============ Brand intro ============ */
        .brand-intro {
            background: rgba(17, 22, 39, 0.7);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
            padding: 60px 0;
        }

        .brand-intro-grid {
            display: grid;
            grid-template-columns: 0.3fr 1fr;
            gap: 32px;
            align-items: center;
        }

        .brand-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: linear-gradient(135deg, var(--accent-gold), #8A6D3B);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 800;
            color: #0F1220;
            box-shadow: 0 8px 24px rgba(200, 170, 110, 0.3);
        }

        .brand-intro-text {
            font-size: 15px;
            line-height: 1.9;
            color: var(--text-secondary);
        }

        .brand-intro-text strong {
            color: var(--text-primary);
        }

        /* ============ FAQ ============ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 800px;
        }

        .faq-item {
            background: rgba(26, 29, 46, 0.8);
            border-radius: var(--card-radius-md);
            border: 1px solid var(--border-subtle);
            overflow: hidden;
            transition: all var(--transition-base);
        }

        .faq-item:hover {
            border-color: var(--border-gold);
        }

        .faq-item.active {
            border-color: var(--accent-neon);
            box-shadow: 0 4px 20px rgba(45, 226, 230, 0.08);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 22px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            text-align: left;
            cursor: pointer;
            transition: all var(--transition-base);
        }

        .faq-question .faq-toggle {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--accent-neon);
            transition: transform var(--transition-base);
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
            color: var(--accent-gold-bright);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 22px;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 0 22px 18px;
        }

        .faq-answer p {
            font-size: 14px;
            line-height: 1.8;
            color: var(--text-secondary);
        }

        /* ============ Guarantee ============ */
        .guarantee-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .guarantee-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(26, 29, 46, 0.6);
            border-radius: var(--card-radius-md);
            border: 1px solid var(--border-subtle);
            padding: 16px 18px;
            transition: all var(--transition-base);
        }

        .guarantee-item:hover {
            border-color: var(--border-gold);
            background: var(--bg-card-hover);
        }

        .guarantee-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(45, 226, 230, 0.08);
            border: 1px solid rgba(45, 226, 230, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }

        .guarantee-item span {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.4;
        }

        /* ============ Tools / extra sections ============ */
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .tool-card {
            background: rgba(26, 29, 46, 0.75);
            border-radius: var(--card-radius-md);
            border: 1px solid var(--border-subtle);
            padding: 22px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: all var(--transition-base);
        }

        .tool-card:hover {
            border-color: var(--accent-neon);
            box-shadow: var(--shadow-card);
            transform: translateY(-3px);
        }

        .tool-card h3 {
            font-size: 16px;
        }
        .tool-card p {
            font-size: 13px;
            color: var(--text-secondary);
        }

        /* ============ Topic / subscription ============ */
        .topic-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }

        .topic-pill {
            padding: 14px 18px;
            background: rgba(26, 29, 46, 0.7);
            border-radius: 999px;
            border: 1px solid var(--border-subtle);
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            text-align: center;
            transition: all var(--transition-base);
            cursor: pointer;
        }

        .topic-pill:hover {
            border-color: var(--accent-neon);
            color: var(--accent-neon);
            background: rgba(45, 226, 230, 0.06);
            box-shadow: 0 0 12px rgba(45, 226, 230, 0.15);
        }

        .subscribe-card {
    background: linear-gradient(135deg, rgba(200, 170, 110, 0.08), rgba(26, 29, 46, 0.9));
            border: 1px solid var(--border-gold);
            border-radius: var(--card-radius-lg);
            padding: 32px;
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .subscribe-card h2 {
            margin-bottom: 10px;
        }
        .subscribe-card p {
            font-size: 14px;
            margin-bottom: 18px;
        }

        .subscribe-form {
            display: flex;
            gap: 10px;
            max-width: 420px;
            margin: 0 auto;
        }

        .subscribe-form input {
            flex: 1;
            background: rgba(15, 18, 32, 0.8);
            border: 1px solid var(--border-subtle);
            border-radius: var(--btn-radius);
            padding: 12px 16px;
            font-size: 14px;
            color: var(--text-primary);
            transition: all var(--transition-base);
        }

        .subscribe-form input::placeholder {
            color: var(--text-muted);
        }
        .subscribe-form input:focus {
            outline: none;
            border-color: var(--accent-neon);
            box-shadow: 0 0 12px rgba(45, 226, 230, 0.2);
        }

        /* ============ Bottom fixed CTA ============ */
        .bottom-cta-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 900;
            background: rgba(15, 18, 32, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-top: 1px solid rgba(200, 170, 110, 0.3);
            padding: 12px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
            transition: transform var(--transition-base);
        }

        .bottom-cta-bar .cta-text {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .bottom-cta-bar .cta-text span {
            color: var(--accent-neon);
        }

        .bottom-cta-bar .btn {
            padding: 10px 22px;
            font-size: 14px;
        }

        /* ============ Footer ============ */
        .site-footer {
            background: rgba(10, 12, 20, 0.95);
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 80px;
            margin-bottom: 58px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
            gap: 36px;
        }

        .footer-brand p {
            font-size: 13px;
            line-height: 1.7;
            margin-top: 12px;
            color: var(--text-secondary);
        }

        .footer-col h4 {
            font-size: 14px;
            margin-bottom: 14px;
            color: var(--text-primary);
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-col a {
            font-size: 13px;
            color: var(--text-secondary);
            transition: all var(--transition-base);
        }

        .footer-col a:hover {
            color: var(--accent-neon);
        }

        .footer-bottom {
            margin-top: 36px;
            padding-top: 20px;
            border-top: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 12px;
            color: var(--text-muted);
        }

        .footer-bottom a {
            color: var(--text-secondary);
        }
        .footer-bottom a:hover {
            color: var(--accent-neon);
        }

        /* ============ Responsive ============ */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero-panel {
                max-width: 540px;
            }
            .value-cards-grid {
                grid-template-columns: 1fr 1fr;
            }
            .value-card.featured {
                grid-column: span 2;
                min-height: auto;
            }
            .scene-grid,
            .schedule-grid,
            .news-grid,
            .quote-grid,
            .comparison-grid,
            .tools-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .guarantee-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .topic-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            :root {
                --space-section: 56px;
                --card-radius-lg: 16px;
                --card-radius-md: 14px;
            }
            .nav-container {
                height: 60px;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background: rgba(15, 18, 32, 0.97);
                flex-direction: column;
                padding: 16px 24px;
                gap: 4px;
                border-bottom: 1px solid var(--border-subtle);
                box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                width: 100%;
                padding: 12px 16px;
            }
            .nav-toggle {
                display: flex;
            }
            .hero {
                min-height: auto;
                padding: 48px 0 40px;
            }
            .hero h1 {
                font-size: 32px;
            }
            .hero-sub {
                font-size: 15px;
            }
            .section-title {
                font-size: 22px;
            }
            .data-badges-grid {
                grid-template-columns: 1fr 1fr;
            }
            .value-cards-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .value-card.featured {
                grid-column: span 1;
            }
            .scene-grid,
            .schedule-grid,
            .news-grid,
            .quote-grid,
            .comparison-grid,
            .tools-grid {
                grid-template-columns: 1fr;
            }
            .guarantee-grid {
                grid-template-columns: 1fr;
            }
            .topic-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .brand-intro-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                text-align: center;
            }
            .brand-icon {
                margin: 0 auto;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .subscribe-form {
                flex-direction: column;
            }
            .bottom-cta-bar {
                padding: 10px 16px;
            }
            .bottom-cta-bar .cta-text {
                font-size: 12px;
            }
            .bottom-cta-bar .btn {
                padding: 8px 16px;
                font-size: 13px;
            }
        }

        @media (max-width: 520px) {
            :root {
                --space-section: 44px;
                --space-card-pad: 18px;
            }
            .container {
                padding: 0 16px;
            }
            .hero h1 {
                font-size: 26px;
            }
            .hero-actions {
                flex-direction: column;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
            .data-badges-grid {
                grid-template-columns: 1fr;
            }
            .score-card {
                flex-direction: column;
                align-items: flex-start;
            }
            .score-card-right {
                text-align: left;
            }
            .ranking-bar {
                flex-wrap: wrap;
            }
            .rank-progress {
                width: 70px;
            }
            .topic-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }

/* roulang page: category1 */
:root {
        --bg-primary: #0F1220;
        --bg-secondary: #111627;
        --bg-card: rgba(26, 29, 46, 0.92);
        --bg-card-hover: rgba(30, 34, 54, 0.96);
        --text-primary: #F5F7FA;
        --text-secondary: #A0A5B3;
        --text-muted: #6B7180;
        --accent-gold: #C8AA6E;
        --accent-gold-bright: #D4AF7A;
        --accent-neon: #2DE2E6;
        --accent-neon-soft: #35E0D0;
        --border-subtle: rgba(255, 255, 255, 0.08);
        --border-gold: rgba(200, 170, 110, 0.35);
        --card-radius-lg: 20px;
        --card-radius-md: 16px;
        --card-radius-sm: 12px;
        --pill-radius: 999px;
        --btn-radius: 12px;
        --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.35);
        --shadow-card-hover: 0 14px 36px rgba(45, 226, 230, 0.12);
        --shadow-glow: 0 0 12px rgba(45, 226, 230, 0.35);
        --space-section: 72px;
        --space-card-pad: 24px;
        --font-stack: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
        --container-max: 1240px;
        --container-narrow: 1080px;
        --transition-base: 0.25s ease;
        --transition-slow: 0.4s ease;
    }

    @media screen and (max-width: 768px) {
        :root {
            --space-section: 44px;
            --space-card-pad: 18px;
            --card-radius-lg: 16px;
            --card-radius-md: 14px;
        }
    }

    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
    }

    body {
        font-family: var(--font-stack);
        font-size: 15px;
        line-height: 1.75;
        color: var(--text-primary);
        background: var(--bg-primary);
        background-image: linear-gradient(165deg, #0F1220 0%, #141827 45%, #1A1D2E 100%);
        min-height: 100vh;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        margin: 0;
    }

    a {
        color: inherit;
        text-decoration: none;
        transition: color var(--transition-base), opacity var(--transition-base);
    }

    a:hover {
        color: var(--accent-neon);
    }

    img {
        display: block;
        max-width: 100%;
        height: auto;
        border-radius: var(--card-radius-sm);
    }

    button,
    input,
    select,
    textarea {
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
    }

    button {
        cursor: pointer;
        border: none;
        background: none;
        color: inherit;
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible {
        outline: 2px solid var(--accent-neon);
        outline-offset: 3px;
        border-radius: 4px;
    }

    .container {
        width: 100%;
        max-width: var(--container-max);
        margin: 0 auto;
        padding: 0 24px;
    }

    .container-narrow {
        max-width: var(--container-narrow);
    }

    section {
        padding: var(--space-section) 0;
        position: relative;
    }

    .section-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.08em;
        color: var(--accent-gold-bright);
        text-transform: uppercase;
        margin-bottom: 14px;
    }

    .section-label::before {
        content: '';
        width: 20px;
        height: 2px;
        background: linear-gradient(90deg, var(--accent-neon), transparent);
        border-radius: 2px;
    }

    .section-title {
        font-size: 28px;
        font-weight: 700;
        line-height: 1.4;
        color: var(--text-primary);
        margin-bottom: 14px;
        letter-spacing: 0.01em;
    }

    .section-desc {
        font-size: 15px;
        line-height: 1.85;
        color: var(--text-secondary);
        max-width: 720px;
        margin-bottom: 28px;
    }

    .section-head {
        margin-bottom: 36px;
    }

    .section-head.center {
        text-align: center;
    }

    .section-head.center .section-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .text-gold {
        color: var(--accent-gold-bright);
    }

    .text-neon {
        color: var(--accent-neon);
    }

    .text-muted {
        color: var(--text-muted);
    }

    /* Header / Nav */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(15, 18, 32, 0.92);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 2px solid transparent;
        border-image: linear-gradient(90deg, var(--accent-neon), var(--accent-gold), var(--accent-neon)) 1;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    }

    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        height: 68px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 19px;
        font-weight: 700;
        color: var(--text-primary);
        letter-spacing: 0.02em;
        white-space: nowrap;
    }

    .logo .logo-mark {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--accent-gold), var(--accent-neon));
        display: flex;
        align-items: center;
        justify-content: center;
        color: #0F1220;
        font-weight: 700;
        font-size: 17px;
        flex-shrink: 0;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 6px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-links li a {
        display: block;
        padding: 8px 16px;
        border-radius: var(--pill-radius);
        font-size: 14px;
        font-weight: 500;
        color: var(--text-secondary);
        position: relative;
        transition: color var(--transition-base), background var(--transition-base), text-shadow var(--transition-base);
    }

    .nav-links li a:hover {
        color: var(--text-primary);
        background: rgba(255, 255, 255, 0.04);
    }

    .nav-links li a.active {
        color: var(--accent-neon);
        background: rgba(45, 226, 230, 0.08);
        text-shadow: 0 0 8px rgba(45, 226, 230, 0.5);
    }

    .nav-links li a.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 16px;
        right: 16px;
        height: 2px;
        background: var(--accent-neon);
        border-radius: 2px;
        box-shadow: 0 0 8px var(--accent-neon);
    }

    .nav-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        padding: 8px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.04);
    }

    .nav-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--text-primary);
        border-radius: 2px;
        transition: transform var(--transition-base), opacity var(--transition-base);
    }

    /* Breadcrumb */
    .breadcrumb {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        font-size: 13px;
        color: var(--text-muted);
        padding: 24px 0 0;
        margin-bottom: 8px;
    }

    .breadcrumb a {
        color: var(--text-secondary);
    }

    .breadcrumb a:hover {
        color: var(--accent-neon);
    }

    .breadcrumb .sep {
        color: var(--text-muted);
        opacity: 0.6;
    }

    .breadcrumb .current {
        color: var(--accent-gold-bright);
        font-weight: 500;
    }

    /* Page Header */
    .page-header {
        padding: 40px 0 32px;
        border-bottom: 1px solid var(--border-subtle);
    }

    .page-header .h1-wrap {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 32px;
        flex-wrap: wrap;
    }

    .page-header h1 {
        font-size: 36px;
        font-weight: 700;
        line-height: 1.3;
        margin: 0 0 12px;
        color: var(--text-primary);
        letter-spacing: 0.01em;
    }

    .page-header .lead {
        font-size: 15px;
        color: var(--text-secondary);
        max-width: 680px;
        margin: 0;
        line-height: 1.85;
    }

    .live-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(45, 226, 230, 0.1);
        border: 1px solid rgba(45, 226, 230, 0.25);
        color: var(--accent-neon);
        font-size: 13px;
        font-weight: 600;
        padding: 8px 16px;
        border-radius: var(--pill-radius);
        white-space: nowrap;
        animation: live-pulse 2s ease-in-out infinite;
    }

    .live-pill .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--accent-neon);
        box-shadow: 0 0 8px var(--accent-neon);
        flex-shrink: 0;
    }

    @keyframes live-pulse {
        0%, 100% { box-shadow: 0 0 0 0 rgba(45, 226, 230, 0.3); }
        50% { box-shadow: 0 0 18px 2px rgba(45, 226, 230, 0.15); }
    }

    /* Score Stream */
    .score-stream {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .score-card {
        display: flex;
        align-items: center;
        gap: 20px;
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--card-radius-lg);
        padding: 22px 24px;
        box-shadow: var(--shadow-card);
        transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
        position: relative;
        overflow: hidden;
    }

    .score-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 3px;
        border-radius: 3px 0 0 3px;
    }

    .score-card.status-live::before {
        background: var(--accent-neon);
        box-shadow: 0 0 12px var(--accent-neon);
    }

    .score-card.status-upcoming::before {
        background: var(--text-muted);
    }

    .score-card.status-ended::before {
        background: var(--accent-gold);
    }

    .score-card:hover {
        transform: translateY(-4px);
        border-color: rgba(45, 226, 230, 0.3);
        box-shadow: var(--shadow-card-hover);
        background: var(--bg-card-hover);
    }

    .score-card .team-emblem {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 16px;
        color: #0F1220;
        background: linear-gradient(135deg, var(--accent-gold), var(--accent-neon-soft));
    }

    .score-card .team-emblem.dark {
        background: linear-gradient(135deg, #2A2F4A, #3A3F5A);
        color: var(--text-primary);
    }

    .score-card .match-info {
        flex: 1;
        min-width: 0;
    }

    .score-card .teams-row {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .score-card .team-name {
        font-weight: 600;
        font-size: 16px;
        color: var(--text-primary);
        white-space: nowrap;
    }

    .score-card .vs {
        color: var(--text-muted);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.05em;
    }

    .score-card .score-value {
        font-size: 26px;
        font-weight: 700;
        color: var(--text-primary);
        letter-spacing: 0.02em;
        flex-shrink: 0;
    }

    .score-card .score-value.live-score {
        color: var(--accent-neon);
        text-shadow: 0 0 10px rgba(45, 226, 230, 0.4);
    }

    .score-card .match-meta {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 6px;
        font-size: 12px;
        color: var(--text-muted);
    }

    .score-card .status-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        font-weight: 600;
        padding: 4px 12px;
        border-radius: var(--pill-radius);
        flex-shrink: 0;
    }

    .status-tag.live {
        background: rgba(45, 226, 230, 0.12);
        color: var(--accent-neon);
        border: 1px solid rgba(45, 226, 230, 0.25);
    }

    .status-tag.upcoming {
        background: rgba(255, 255, 255, 0.06);
        color: var(--text-secondary);
        border: 1px solid var(--border-subtle);
    }

    .status-tag.ended {
        background: rgba(200, 170, 110, 0.1);
        color: var(--accent-gold-bright);
        border: 1px solid var(--border-gold);
    }

    .score-card .view-link {
        color: var(--accent-neon);
        font-size: 13px;
        font-weight: 500;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        transition: color var(--transition-base);
    }

    .score-card .view-link:hover {
        color: var(--accent-neon-soft);
    }

    /* Status Strip */
    .status-strip {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 8px;
    }

    .status-strip .strip-item {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--card-radius-md);
        padding: 20px 22px;
        text-align: center;
        transition: border-color var(--transition-base), box-shadow var(--transition-base);
    }

    .status-strip .strip-item:hover {
        border-color: rgba(45, 226, 230, 0.25);
        box-shadow: var(--shadow-card-hover);
    }

    .status-strip .strip-num {
        font-size: 30px;
        font-weight: 700;
        color: var(--accent-neon);
        letter-spacing: 0.02em;
    }

    .status-strip .strip-num.gold {
        color: var(--accent-gold-bright);
    }

    .status-strip .strip-num.gray {
        color: var(--text-secondary);
    }

    .status-strip .strip-label {
        font-size: 13px;
        color: var(--text-secondary);
        margin-top: 4px;
    }

    /* Quick Filter */
    .filter-bar {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .filter-chip {
        padding: 8px 18px;
        border-radius: var(--pill-radius);
        font-size: 13px;
        font-weight: 500;
        color: var(--text-secondary);
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--border-subtle);
        transition: all var(--transition-base);
    }

    .filter-chip:hover {
        color: var(--text-primary);
        border-color: rgba(45, 226, 230, 0.3);
    }

    .filter-chip.active {
        color: #0F1220;
        background: var(--accent-gold);
        border-color: var(--accent-gold);
        font-weight: 600;
    }

    /* Featured Matchup */
    .featured-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .featured-card {
        display: flex;
        gap: 20px;
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--card-radius-lg);
        padding: 24px;
        box-shadow: var(--shadow-card);
        transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
        align-items: center;
    }

    .featured-card:hover {
        transform: translateY(-4px);
        border-color: rgba(200, 170, 110, 0.35);
        box-shadow: var(--shadow-card-hover);
    }

    .featured-card img {
        width: 110px;
        height: 110px;
        object-fit: cover;
        border-radius: var(--card-radius-md);
        flex-shrink: 0;
    }

    .featured-card .featured-info {
        flex: 1;
    }

    .featured-card h3 {
        font-size: 18px;
        font-weight: 600;
        margin: 0 0 8px;
        color: var(--text-primary);
    }

    .featured-card p {
        font-size: 13px;
        color: var(--text-secondary);
        margin: 0 0 12px;
        line-height: 1.7;
    }

    .featured-card .meta-line {
        font-size: 12px;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    /* Data note */
    .data-note-box {
        background: linear-gradient(135deg, rgba(200, 170, 110, 0.08), rgba(45, 226, 230, 0.06));
        border: 1px solid var(--border-gold);
        border-radius: var(--card-radius-lg);
        padding: 28px 30px;
        display: flex;
        gap: 24px;
        align-items: flex-start;
    }

    .data-note-box .note-icon {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent-gold), var(--accent-neon));
        display: flex;
        align-items: center;
        justify-content: center;
        color: #0F1220;
        font-size: 24px;
        font-weight: 700;
        flex-shrink: 0;
    }

    .data-note-box h3 {
        font-size: 18px;
        font-weight: 600;
        margin: 0 0 8px;
        color: var(--text-primary);
    }

    .data-note-box p {
        font-size: 14px;
        color: var(--text-secondary);
        margin: 0 0 12px;
        line-height: 1.85;
    }

    .data-note-box .note-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }

    .data-note-box .note-list li {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        color: var(--text-secondary);
    }

    .data-note-box .note-list li::before {
        content: '✓';
        color: var(--accent-neon);
        font-weight: 700;
    }

    /* Quick tools */
    .quick-tools {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .quick-tool-card {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--card-radius-md);
        padding: 24px 22px;
        text-align: center;
        transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
    }

    .quick-tool-card:hover {
        transform: translateY(-4px);
        border-color: rgba(45, 226, 230, 0.3);
        box-shadow: var(--shadow-card-hover);
    }

    .quick-tool-card .tool-icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(45, 226, 230, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 14px;
        color: var(--accent-neon);
        font-size: 22px;
        font-weight: 700;
    }

    .quick-tool-card h3 {
        font-size: 16px;
        font-weight: 600;
        margin: 0 0 8px;
        color: var(--text-primary);
    }

    .quick-tool-card p {
        font-size: 13px;
        color: var(--text-secondary);
        margin: 0 0 14px;
        line-height: 1.7;
    }

    .quick-tool-card a {
        color: var(--accent-gold-bright);
        font-size: 13px;
        font-weight: 500;
    }

    .quick-tool-card a:hover {
        color: var(--accent-neon);
    }

    /* Subscribe CTA */
    .subscribe-box {
        background: linear-gradient(135deg, #1A1D2E 0%, #141827 60%, #0F1220 100%);
        border: 1px solid var(--border-subtle);
        border-radius: var(--card-radius-lg);
        padding: 36px 32px;
        display: flex;
        gap: 32px;
        align-items: center;
        flex-wrap: wrap;
        box-shadow: var(--shadow-card);
        position: relative;
        overflow: hidden;
    }

    .subscribe-box::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(45, 226, 230, 0.08), transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .subscribe-box .sub-info {
        flex: 1;
        min-width: 260px;
        position: relative;
        z-index: 1;
    }

    .subscribe-box h3 {
        font-size: 22px;
        font-weight: 700;
        margin: 0 0 8px;
        color: var(--text-primary);
    }

    .subscribe-box p {
        font-size: 14px;
        color: var(--text-secondary);
        margin: 0;
        line-height: 1.8;
    }

    .subscribe-form {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        position: relative;
        z-index: 1;
        min-width: 280px;
    }

    .subscribe-form input {
        flex: 1;
        min-width: 200px;
        padding: 12px 18px;
        border-radius: var(--btn-radius);
        border: 1px solid var(--border-subtle);
        background: rgba(15, 18, 32, 0.7);
        color: var(--text-primary);
        font-size: 14px;
        transition: border-color var(--transition-base);
    }

    .subscribe-form input::placeholder {
        color: var(--text-muted);
    }

    .subscribe-form input:focus {
        border-color: var(--accent-neon);
        outline: none;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        border-radius: var(--btn-radius);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.01em;
        transition: all var(--transition-base);
        white-space: nowrap;
    }

    .btn-primary {
        background: var(--accent-gold);
        color: #0F1220;
    }

    .btn-primary:hover {
        background: var(--accent-gold-bright);
        box-shadow: 0 0 12px rgba(200, 170, 110, 0.4);
        transform: translateY(-2px);
        color: #0F1220;
    }

    .btn-secondary {
        background: transparent;
        color: var(--text-primary);
        border: 1px solid rgba(255, 255, 255, 0.25);
    }

    .btn-secondary:hover {
        border-color: var(--accent-neon);
        color: var(--accent-neon);
        box-shadow: 0 0 12px rgba(45, 226, 230, 0.25);
        transform: translateY(-2px);
    }

    .btn-neon {
        background: var(--accent-neon);
        color: #0F1220;
    }

    .btn-neon:hover {
        background: var(--accent-neon-soft);
        box-shadow: 0 0 14px rgba(45, 226, 230, 0.5);
        transform: translateY(-2px);
        color: #0F1220;
    }

    /* More link */
    .more-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--accent-gold-bright);
        font-size: 14px;
        font-weight: 500;
        transition: color var(--transition-base);
    }

    .more-link:hover {
        color: var(--accent-neon);
    }

    .more-link .arrow {
        transition: transform var(--transition-base);
    }

    .more-link:hover .arrow {
        transform: translateX(4px);
    }

    /* Bottom fixed bar */
    .bottom-fixed-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(15, 18, 32, 0.96);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-top: 1px solid rgba(200, 170, 110, 0.25);
        padding: 14px 24px;
        z-index: 900;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap;
        box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
    }

    .bottom-fixed-bar p {
        margin: 0;
        font-size: 14px;
        color: var(--text-secondary);
        flex: 1;
        min-width: 200px;
    }

    .bottom-fixed-bar .btn {
        flex-shrink: 0;
    }

    /* Footer */
    .site-footer {
        background: var(--bg-secondary);
        border-top: 1px solid var(--border-subtle);
        padding: 56px 0 24px;
        margin-top: 40px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 32px;
        margin-bottom: 36px;
    }

    .footer-brand p {
        font-size: 13px;
        color: var(--text-secondary);
        margin: 14px 0 0;
        line-height: 1.8;
        max-width: 320px;
    }

    .footer-col h4 {
        font-size: 15px;
        font-weight: 600;
        color: var(--text-primary);
        margin: 0 0 14px;
    }

    .footer-col ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-col ul li a {
        font-size: 13px;
        color: var(--text-secondary);
        transition: color var(--transition-base);
    }

    .footer-col ul li a:hover {
        color: var(--accent-neon);
    }

    .footer-bottom {
        border-top: 1px solid var(--border-subtle);
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
        font-size: 12px;
        color: var(--text-muted);
    }

    .footer-bottom a {
        color: var(--text-secondary);
    }

    .footer-bottom a:hover {
        color: var(--accent-neon);
    }

    /* Page bottom spacer for fixed bar */
    .page-bottom-spacer {
        height: 70px;
    }

    /* Responsive */
    @media screen and (max-width: 1024px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr 1fr;
        }
        .featured-grid {
            grid-template-columns: 1fr;
        }
        .quick-tools {
            grid-template-columns: 1fr 1fr;
        }
        .status-strip {
            grid-template-columns: 1fr 1fr 1fr;
            gap: 12px;
        }
    }

    @media screen and (max-width: 768px) {
        .nav-container {
            height: 60px;
        }
        .logo {
            font-size: 17px;
        }
        .logo .logo-mark {
            width: 32px;
            height: 32px;
            font-size: 15px;
            border-radius: 8px;
        }
        .nav-toggle {
            display: flex;
        }
        .nav-links {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(15, 18, 32, 0.98);
            flex-direction: column;
            align-items: stretch;
            gap: 4px;
            padding: 16px 24px 20px;
            border-bottom: 2px solid transparent;
            border-image: linear-gradient(90deg, var(--accent-neon), var(--accent-gold), var(--accent-neon)) 1;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
        }
        .nav-links.open {
            display: flex;
        }
        .nav-links li a {
            padding: 12px 16px;
            font-size: 15px;
        }
        .nav-links li a.active::after {
            left: 8px;
            right: auto;
            width: 3px;
            top: 0;
            bottom: 0;
            height: auto;
            border-radius: 0 3px 3px 0;
        }
        .page-header h1 {
            font-size: 28px;
        }
        .page-header .h1-wrap {
            flex-direction: column;
            gap: 16px;
        }
        .score-card {
            flex-wrap: wrap;
            gap: 14px;
            padding: 18px;
        }
        .score-card .score-value {
            font-size: 22px;
        }
        .score-card .team-emblem {
            width: 38px;
            height: 38px;
            font-size: 14px;
        }
        .status-strip {
            grid-template-columns: 1fr;
        }
        .quick-tools {
            grid-template-columns: 1fr;
        }
        .featured-card {
            flex-direction: column;
            align-items: flex-start;
        }
        .featured-card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
        }
        .data-note-box {
            flex-direction: column;
        }
        .subscribe-box {
            flex-direction: column;
            align-items: flex-start;
        }
        .subscribe-form {
            width: 100%;
        }
        .subscribe-form input {
            min-width: 100%;
        }
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }
        .bottom-fixed-bar {
            padding: 10px 16px;
            flex-direction: column;
            text-align: center;
        }
        .bottom-fixed-bar p {
            font-size: 13px;
        }
        .section-title {
            font-size: 22px;
        }
    }

    @media screen and (max-width: 520px) {
        .container {
            padding: 0 16px;
        }
        .page-header h1 {
            font-size: 24px;
        }
        .score-card .teams-row {
            gap: 8px;
        }
        .score-card .team-name {
            font-size: 14px;
        }
        .score-card .score-value {
            font-size: 18px;
        }
        .filter-bar {
            gap: 6px;
        }
        .filter-chip {
            padding: 6px 12px;
            font-size: 12px;
        }
        .btn {
            padding: 10px 18px;
            font-size: 13px;
        }
    }

/* roulang page: category3 */
:root {
            --bg-primary: #0F1220;
            --bg-secondary: #111627;
            --bg-card: rgba(26, 29, 46, 0.92);
            --bg-card-hover: rgba(30, 34, 54, 0.96);
            --text-primary: #F5F7FA;
            --text-secondary: #A0A5B3;
            --text-muted: #6B7180;
            --accent-gold: #C8AA6E;
            --accent-gold-bright: #D4AF7A;
            --accent-neon: #2DE2E6;
            --accent-neon-soft: #35E0D0;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-gold: rgba(200, 170, 110, 0.35);
            --card-radius-lg: 20px;
            --card-radius-md: 16px;
            --card-radius-sm: 12px;
            --pill-radius: 999px;
            --btn-radius: 12px;
            --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 14px 36px rgba(45, 226, 230, 0.12);
            --shadow-glow: 0 0 12px rgba(45, 226, 230, 0.35);
            --space-section: 72px;
            --space-card-pad: 24px;
            --font-stack: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
            --container-max: 1240px;
            --container-narrow: 1080px;
            --transition-base: 0.25s ease;
            --transition-slow: 0.4s ease;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-stack);
            font-size: 15px;
            line-height: 1.75;
            color: var(--text-primary);
            background: var(--bg-primary);
            background-image: linear-gradient(165deg, #0F1220 0%, #141827 45%, #1A1D2E 100%);
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-bottom: 72px;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-base), opacity var(--transition-base);
        }

        a:hover {
            color: var(--accent-neon);
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
            border-radius: var(--card-radius-sm);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
            color: inherit;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--accent-neon);
            outline-offset: 3px;
            border-radius: 4px;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        .container-narrow {
            max-width: var(--container-narrow);
        }

        section {
            padding: var(--space-section) 0;
            position: relative;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: var(--accent-gold-bright);
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .section-label::before {
            content: '';
            width: 20px;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-neon), transparent);
            border-radius: 2px;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.4;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.01em;
        }

        .section-desc {
            font-size: 15px;
            line-height: 1.85;
            color: var(--text-secondary);
            max-width: 720px;
            margin-bottom: 28px;
        }

        .section-head {
            margin-bottom: 36px;
        }

        .section-head.center {
            text-align: center;
        }

        .section-head.center .section-desc {
            margin-left: auto;
            margin-right: auto;
        }

        .text-gold {
            color: var(--accent-gold-bright);
        }

        .text-neon {
            color: var(--accent-neon);
        }

        .text-muted {
            color: var(--text-muted);
        }

        /* Header / Nav */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(15, 18, 32, 0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 2px solid transparent;
            border-image: linear-gradient(90deg, var(--accent-neon), var(--accent-gold), var(--accent-neon)) 1;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            height: 68px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 19px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .logo .logo-mark {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--accent-gold-bright), var(--accent-gold));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            color: #0F1220;
            box-shadow: 0 0 16px rgba(200, 170, 110, 0.3);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links li {
            margin: 0;
        }

        .nav-links a {
            display: block;
            padding: 8px 16px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            position: relative;
            transition: color var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
        }

        .nav-links a:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.06);
        }

        .nav-links a.active {
            color: var(--accent-neon);
            background: rgba(45, 226, 230, 0.08);
            box-shadow: 0 0 8px rgba(45, 226, 230, 0.25);
            font-weight: 600;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 8px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--border-subtle);
        }

        .nav-toggle span {
            width: 22px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: transform var(--transition-base), opacity var(--transition-base);
        }

        .nav-toggle[aria-expanded="true"] span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-toggle[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle[aria-expanded="true"] span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Breadcrumb */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .breadcrumb a {
            color: var(--text-secondary);
        }

        .breadcrumb a:hover {
            color: var(--accent-neon);
        }

        .breadcrumb .sep {
            color: var(--text-muted);
        }

        .breadcrumb .current {
            color: var(--accent-gold-bright);
            font-weight: 500;
        }

        /* Category Hero */
        .page-hero {
            padding: 56px 0 40px;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -80px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(45, 226, 230, 0.08) 0%, transparent 65%);
            pointer-events: none;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -60px;
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, rgba(200, 170, 110, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .page-hero .container {
            position: relative;
            z-index: 1;
        }

        .page-hero h1 {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.35;
            color: var(--text-primary);
            margin: 0 0 16px;
            letter-spacing: 0.01em;
        }

        .page-hero .hero-desc {
            font-size: 16px;
            line-height: 1.85;
            color: var(--text-secondary);
            max-width: 760px;
            margin-bottom: 24px;
        }

        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            border-radius: var(--pill-radius);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            font-size: 13px;
            color: var(--text-secondary);
            transition: border-color var(--transition-base), background var(--transition-base);
        }

        .hero-badge:hover {
            border-color: var(--accent-neon);
            background: rgba(45, 226, 230, 0.06);
        }

        .hero-badge .badge-num {
            font-size: 22px;
            font-weight: 700;
            color: var(--accent-neon);
            letter-spacing: 0.02em;
        }

        .hero-badge .badge-label {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Ranking List */
        .ranking-section {
            padding-top: 24px;
        }

        .ranking-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .ranking-card {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 20px 24px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--card-radius-md);
            box-shadow: var(--shadow-card);
            transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
            position: relative;
        }

        .ranking-card:hover {
            transform: translateY(-3px);
            border-color: rgba(45, 226, 230, 0.35);
            box-shadow: var(--shadow-card-hover);
        }

        .ranking-card.rank-top {
            border-color: rgba(200, 170, 110, 0.3);
            background: linear-gradient(135deg, rgba(200, 170, 110, 0.06), rgba(26, 29, 46, 0.92));
        }

        .rank-number {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            flex-shrink: 0;
        }

        .rank-top .rank-number {
            background: linear-gradient(135deg, var(--accent-gold-bright), var(--accent-gold));
            color: #0F1220;
            border-color: transparent;
            box-shadow: 0 0 16px rgba(200, 170, 110, 0.35);
        }

        .team-emblem {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            font-weight: 700;
            color: #F5F7FA;
            flex-shrink: 0;
            background: linear-gradient(135deg, #2a2f4a, #1a1d2e);
            border: 2px solid rgba(255, 255, 255, 0.12);
        }

        .team-emblem.emblem-1 {
            background: linear-gradient(135deg, #c8aa6e, #8a7a55);
            color: #0F1220;
            border-color: rgba(200, 170, 110, 0.4);
        }

        .team-emblem.emblem-2 {
            background: linear-gradient(135deg, #2de2e6, #1a8a8e);
            color: #0F1220;
            border-color: rgba(45, 226, 230, 0.3);
        }

        .team-emblem.emblem-3 {
            background: linear-gradient(135deg, #b5744a, #7a4e2f);
            color: #F5F7FA;
            border-color: rgba(181, 116, 74, 0.4);
        }

        .team-emblem.emblem-4 {
            background: linear-gradient(135deg, #4a6db5, #2f4a7a);
            color: #F5F7FA;
            border-color: rgba(74, 109, 181, 0.4);
        }

        .team-emblem.emblem-5 {
            background: linear-gradient(135deg, #6b4a9b, #3f2f5a);
            color: #F5F7FA;
            border-color: rgba(107, 74, 155, 0.4);
        }

        .team-emblem.emblem-6 {
            background: linear-gradient(135deg, #3a8a5a, #264f37);
            color: #F5F7FA;
            border-color: rgba(58, 138, 90, 0.4);
        }

        .rank-info {
            flex: 1;
            min-width: 0;
        }

        .rank-team-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
            letter-spacing: 0.02em;
        }

        .rank-stats {
            display: flex;
            gap: 16px;
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 8px;
            flex-wrap: wrap;
        }

        .rank-stats span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .rank-progress {
            height: 6px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 3px;
            overflow: hidden;
            max-width: 320px;
        }

        .rank-progress .progress-fill {
            height: 100%;
            border-radius: 3px;
            background: linear-gradient(90deg, var(--accent-neon), var(--accent-neon-soft));
            transition: width var(--transition-slow);
        }

        .rank-top .rank-progress .progress-fill {
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-bright));
        }

        .rank-points {
            text-align: right;
            flex-shrink: 0;
        }

        .rank-points .points {
            font-size: 26px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.02em;
            line-height: 1.2;
        }

        .rank-points .points-label {
            font-size: 12px;
            color: var(--text-muted);
        }

        .rank-change {
            display: inline-flex;
            align-items: center;
            gap: 3px;
            font-size: 13px;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 6px;
        }

        .rank-change.up {
            color: var(--accent-neon-soft);
            background: rgba(53, 224, 208, 0.1);
        }

        .rank-change.down {
            color: var(--accent-gold-bright);
            background: rgba(200, 170, 110, 0.1);
        }

        .rank-change.flat {
            color: var(--text-muted);
            background: rgba(255, 255, 255, 0.05);
        }

        .ranking-more {
            text-align: center;
            margin-top: 28px;
        }

        /* Change snapshot */
        .change-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 16px;
        }

        .change-card {
            padding: 20px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--card-radius-md);
            box-shadow: var(--shadow-card);
            transition: transform var(--transition-base), border-color var(--transition-base);
        }

        .change-card:hover {
            transform: translateY(-3px);
            border-color: rgba(45, 226, 230, 0.3);
        }

        .change-card .change-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .change-card .change-team {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .change-card .change-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Power eval */
        .power-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
        }

        .power-card {
            padding: 22px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--card-radius-md);
            box-shadow: var(--shadow-card);
            text-align: center;
            transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
        }

        .power-card:hover {
            transform: translateY(-4px);
            border-color: rgba(200, 170, 110, 0.35);
            box-shadow: var(--shadow-card-hover);
        }

        .power-card .power-icon {
            font-size: 28px;
            margin-bottom: 10px;
            display: block;
        }

        .power-card .power-value {
            font-size: 28px;
            font-weight: 700;
            color: var(--accent-neon);
            line-height: 1.3;
            letter-spacing: 0.02em;
        }

        .power-card .power-label {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
            margin-top: 4px;
        }

        .power-card .power-desc {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 8px;
            line-height: 1.6;
        }

        /* Region distribution */
        .region-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: center;
        }

        .region-image-wrap {
            border-radius: var(--card-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-subtle);
        }

        .region-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 16/10;
        }

        .region-bars {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .region-bar-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .region-bar-item .region-name {
            width: 80px;
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
            flex-shrink: 0;
        }

        .region-bar-item .region-track {
            flex: 1;
            height: 10px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 5px;
            overflow: hidden;
        }

        .region-bar-item .region-fill {
            height: 100%;
            border-radius: 5px;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-bright));
            transition: width var(--transition-slow);
        }

        .region-bar-item .region-count {
            width: 50px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
            text-align: right;
            flex-shrink: 0;
        }

        /* History timeline */
        .timeline-list {
            display: flex;
            flex-direction: column;
            gap: 0;
            position: relative;
            padding-left: 28px;
        }

        .timeline-list::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, var(--accent-neon), var(--accent-gold), transparent);
            border-radius: 2px;
        }

        .timeline-item {
            position: relative;
            padding: 18px 20px;
            margin-bottom: 12px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--card-radius-md);
            box-shadow: var(--shadow-card);
            transition: border-color var(--transition-base), transform var(--transition-base);
        }

        .timeline-item:hover {
            border-color: rgba(45, 226, 230, 0.3);
            transform: translateX(4px);
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -24px;
            top: 24px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent-neon);
            box-shadow: 0 0 8px rgba(45, 226, 230, 0.5);
        }

        .timeline-item .tl-date {
            font-size: 12px;
            color: var(--accent-gold-bright);
            font-weight: 600;
            letter-spacing: 0.04em;
            margin-bottom: 4px;
        }

        .timeline-item .tl-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .timeline-item .tl-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 820px;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--card-radius-md);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: border-color var(--transition-base);
        }

        .faq-item:hover {
            border-color: rgba(45, 226, 230, 0.25);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 22px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            text-align: left;
            transition: color var(--transition-base);
        }

        .faq-question:hover {
            color: var(--accent-neon);
        }

        .faq-question .faq-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--accent-neon);
            transition: transform var(--transition-base), background var(--transition-base);
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            background: rgba(45, 226, 230, 0.12);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-base);
            padding: 0 22px;
        }

        .faq-item.open .faq-answer {
            max-height: 200px;
            padding: 0 22px 18px;
        }

        .faq-answer p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin: 0;
        }

        /* CTA Bar */
        .cta-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 900;
            background: rgba(15, 18, 32, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-top: 1px solid rgba(200, 170, 110, 0.25);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.45);
            padding: 14px 0;
        }

        .cta-bar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .cta-bar .cta-text {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .cta-bar .cta-text strong {
            color: var(--text-primary);
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 22px;
            border-radius: var(--btn-radius);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.01em;
            transition: all var(--transition-base);
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-gold-bright), var(--accent-gold));
            color: #0F1220;
            box-shadow: 0 4px 16px rgba(200, 170, 110, 0.25);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #e2c48d, var(--accent-gold-bright));
            box-shadow: 0 6px 24px rgba(200, 170, 110, 0.4);
            transform: translateY(-2px);
            color: #0F1220;
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-primary);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--accent-neon);
            color: var(--accent-neon);
            box-shadow: var(--shadow-glow);
        }

        .btn-sm {
            padding: 8px 16px;
            font-size: 13px;
            border-radius: 10px;
        }

        /* Footer */
        .site-footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 28px;
            margin-top: 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 36px;
        }

        .footer-brand .logo {
            margin-bottom: 12px;
        }

        .footer-brand p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 320px;
            margin: 0;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0 0 12px;
            letter-spacing: 0.04em;
        }

        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul a {
            font-size: 13px;
            color: var(--text-secondary);
            transition: color var(--transition-base);
        }

        .footer-col ul a:hover {
            color: var(--accent-neon);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            padding-top: 20px;
            border-top: 1px solid var(--border-subtle);
            font-size: 12px;
            color: var(--text-muted);
        }

        .footer-bottom a {
            color: var(--text-secondary);
        }

        .footer-bottom a:hover {
            color: var(--accent-neon);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            :root {
                --space-section: 56px;
                --card-radius-lg: 16px;
                --card-radius-md: 14px;
            }
            .page-hero h1 {
                font-size: 30px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .region-layout {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --space-section: 44px;
                --space-card-pad: 18px;
            }
            .nav-toggle {
                display: flex;
            }
            .nav-links {
                position: fixed;
                top: 68px;
                left: 0;
                right: 0;
                flex-direction: column;
                align-items: stretch;
                background: rgba(15, 18, 32, 0.97);
                backdrop-filter: blur(16px);
                -webkit-backdrop-filter: blur(16px);
                padding: 16px 24px 24px;
                gap: 4px;
                border-bottom: 2px solid transparent;
                border-image: linear-gradient(90deg, var(--accent-neon), var(--accent-gold), var(--accent-neon)) 1;
                box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
                transform: translateY(-120%);
                transition: transform var(--transition-slow);
                z-index: 999;
            }
            .nav-links.open {
                transform: translateY(0);
            }
            .nav-links a {
                padding: 12px 16px;
                font-size: 15px;
                border-radius: 10px;
            }
            .page-hero h1 {
                font-size: 26px;
            }
            .ranking-card {
                flex-wrap: wrap;
                gap: 12px;
                padding: 16px;
            }
            .rank-points {
                text-align: left;
                display: flex;
                align-items: center;
                gap: 8px;
            }
            .rank-points .points-label {
                display: inline;
            }
            .section-title {
                font-size: 22px;
            }
            .cta-bar .container {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .cta-bar .btn {
                width: 100%;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .timeline-list {
                padding-left: 20px;
            }
            .timeline-item::before {
                left: -18px;
                width: 8px;
                height: 8px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .page-hero h1 {
                font-size: 22px;
            }
            .page-hero .hero-desc {
                font-size: 14px;
            }
            .hero-badge {
                padding: 8px 14px;
                font-size: 12px;
            }
            .hero-badge .badge-num {
                font-size: 18px;
            }
            .ranking-card {
                flex-direction: column;
                align-items: flex-start;
            }
            .rank-points {
                width: 100%;
                justify-content: space-between;
            }
            .rank-progress {
                max-width: 100%;
            }
            .power-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .power-card {
                padding: 16px;
            }
            .power-card .power-value {
                font-size: 22px;
            }
            .change-grid {
                grid-template-columns: 1fr;
            }
            .section-title {
                font-size: 20px;
            }
            .faq-question {
                font-size: 14px;
                padding: 16px;
            }
            .faq-answer {
                padding: 0 16px;
            }
            .faq-item.open .faq-answer {
                padding: 0 16px 16px;
            }
        }

/* roulang page: category2 */
:root {
            --bg-primary: #0F1220;
            --bg-secondary: #111627;
            --bg-card: rgba(26, 29, 46, 0.92);
            --bg-card-hover: rgba(30, 34, 54, 0.96);
            --text-primary: #F5F7FA;
            --text-secondary: #A0A5B3;
            --text-muted: #6B7180;
            --accent-gold: #C8AA6E;
            --accent-gold-bright: #D4AF7A;
            --accent-neon: #2DE2E6;
            --accent-neon-soft: #35E0D0;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-gold: rgba(200, 170, 110, 0.35);
            --card-radius-lg: 20px;
            --card-radius-md: 16px;
            --card-radius-sm: 12px;
            --pill-radius: 999px;
            --btn-radius: 12px;
            --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 14px 36px rgba(45, 226, 230, 0.12);
            --shadow-glow: 0 0 12px rgba(45, 226, 230, 0.35);
            --space-section: 72px;
            --space-card-pad: 24px;
            --font-stack: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
            --container-max: 1240px;
            --container-narrow: 1080px;
            --transition-base: 0.25s ease;
            --transition-slow: 0.4s ease;
        }
        @media (max-width: 768px) {
            :root {
                --space-section: 56px;
                --card-radius-lg: 16px;
                --card-radius-md: 14px;
            }
        }
        @media (max-width: 520px) {
            :root {
                --space-section: 44px;
                --space-card-pad: 18px;
            }
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-stack);
            font-size: 15px;
            line-height: 1.75;
            color: var(--text-primary);
            background: var(--bg-primary);
            background-image: linear-gradient(165deg, #0F1220 0%, #141827 45%, #1A1D2E 100%);
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            margin: 0;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-base), opacity var(--transition-base);
        }
        a:hover {
            color: var(--accent-neon);
        }
        img {
            display: block;
            max-width: 100%;
            height: auto;
            border-radius: var(--card-radius-sm);
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }
        button {
            cursor: pointer;
            border: none;
            background: none;
            color: inherit;
        }
        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--accent-neon);
            outline-offset: 3px;
            border-radius: 4px;
        }
        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }
        .container-narrow {
            max-width: var(--container-narrow);
        }
        section {
            padding: var(--space-section) 0;
            position: relative;
        }
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: var(--accent-gold-bright);
            text-transform: uppercase;
            margin-bottom: 14px;
        }
        .section-label::before {
            content: '';
            width: 20px;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-neon), transparent);
            border-radius: 2px;
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.4;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.01em;
        }
        .section-desc {
            font-size: 15px;
            line-height: 1.85;
            color: var(--text-secondary);
            max-width: 720px;
            margin-bottom: 28px;
        }
        .section-head {
            margin-bottom: 36px;
        }
        .section-head.center {
            text-align: center;
        }
        .section-head.center .section-desc {
            margin-left: auto;
            margin-right: auto;
        }
        .text-gold {
            color: var(--accent-gold-bright);
        }
        .text-neon {
            color: var(--accent-neon);
        }
        .text-muted {
            color: var(--text-muted);
        }
        /* ============ Header / Nav ============ */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(15, 18, 32, 0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 2px solid transparent;
            border-image: linear-gradient(90deg, var(--accent-neon), var(--accent-gold), var(--accent-neon)) 1;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
        }
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            height: 68px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 19px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .logo .logo-mark {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-neon));
            color: #0F1220;
            font-weight: 700;
            font-size: 18px;
            flex-shrink: 0;
            box-shadow: 0 0 16px rgba(45, 226, 230, 0.3);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-links li a {
            display: block;
            padding: 8px 14px;
            border-radius: var(--pill-radius);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            position: relative;
            white-space: nowrap;
            transition: all var(--transition-base);
        }
        .nav-links li a:hover {
            color: var(--text-primary);
            background: rgba(45, 226, 230, 0.08);
        }
        .nav-links li a.active {
            color: var(--accent-neon);
            background: rgba(45, 226, 230, 0.12);
            text-shadow: 0 0 8px rgba(45, 226, 230, 0.5);
            box-shadow: inset 0 0 0 1px rgba(45, 226, 230, 0.25);
        }
        .nav-links li a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--accent-neon);
            border-radius: 2px;
            box-shadow: 0 0 8px var(--accent-neon);
        }
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 8px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
        }
        .nav-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all var(--transition-base);
        }
        .nav-toggle[aria-expanded="true"] span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .nav-toggle[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }
        .nav-toggle[aria-expanded="true"] span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
        /* ============ Breadcrumb ============ */
        .breadcrumb-bar {
            padding: 18px 0;
            background: rgba(15, 18, 32, 0.6);
            border-bottom: 1px solid var(--border-subtle);
        }
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
            font-size: 13px;
            color: var(--text-muted);
            flex-wrap: wrap;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            color: var(--text-muted);
            font-size: 12px;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent-neon);
        }
        .breadcrumb .current {
            color: var(--accent-gold-bright);
            font-weight: 500;
        }
        /* ============ Page Intro ============ */
        .page-intro {
            padding: 36px 0 12px;
        }
        .page-intro h1 {
            font-size: 34px;
            font-weight: 700;
            line-height: 1.35;
            margin: 0 0 12px;
            color: var(--text-primary);
            letter-spacing: 0.01em;
        }
        .page-intro p {
            font-size: 15px;
            line-height: 1.85;
            color: var(--text-secondary);
            max-width: 760px;
            margin: 0;
        }
        /* ============ Date Filter Chips ============ */
        .date-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding: 12px 0;
        }
        .date-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 18px;
            border-radius: var(--pill-radius);
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-base);
        }
        .date-chip:hover {
            color: var(--text-primary);
            border-color: rgba(45, 226, 230, 0.4);
            background: rgba(45, 226, 230, 0.08);
        }
        .date-chip.active {
            color: var(--accent-neon);
            background: rgba(45, 226, 230, 0.12);
            border-color: rgba(45, 226, 230, 0.4);
            box-shadow: 0 0 12px rgba(45, 226, 230, 0.2);
        }
        /* ============ Schedule Cards ============ */
        .schedule-block {
            padding: 20px 0;
        }
        .schedule-block-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 18px;
        }
        .schedule-block-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .schedule-block-title .date-badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            border-radius: var(--pill-radius);
            font-size: 12px;
            font-weight: 600;
            background: rgba(200, 170, 110, 0.15);
            color: var(--accent-gold-bright);
            border: 1px solid var(--border-gold);
        }
        .schedule-count {
            font-size: 13px;
            color: var(--text-muted);
        }
        .schedule-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }
        .match-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--card-radius-lg);
            padding: 22px var(--space-card-pad);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-slow);
            display: flex;
            flex-direction: column;
            gap: 14px;
            position: relative;
            overflow: hidden;
        }
        .match-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            border-radius: 0 4px 4px 0;
            background: var(--accent-gold);
            opacity: 0;
            transition: opacity var(--transition-base);
        }
        .match-card:hover {
            background: var(--bg-card-hover);
            border-color: rgba(45, 226, 230, 0.35);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-4px);
        }
        .match-card:hover::before {
            opacity: 1;
        }
        .match-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }
        .match-type-tag {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            border-radius: var(--pill-radius);
            font-size: 12px;
            font-weight: 600;
            background: rgba(200, 170, 110, 0.2);
            color: var(--accent-gold-bright);
            border: 1px solid var(--border-gold);
        }
        .match-time {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
        }
        .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }
        .team {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
            min-width: 0;
        }
        .team:last-child {
            justify-content: flex-end;
        }
        .team-logo-placeholder {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(135deg, #3A3F5A, #1E2235);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        .team-logo-placeholder.gold {
            background: linear-gradient(135deg, var(--accent-gold), #8B7340);
            color: #0F1220;
        }
        .team-logo-placeholder.neon {
            background: linear-gradient(135deg, var(--accent-neon), #1A8F8A);
            color: #0F1220;
        }
        .team-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .match-score-divider {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-muted);
            flex-shrink: 0;
            letter-spacing: 0.05em;
        }
        .match-status {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: var(--pill-radius);
        }
        .match-status.live {
            background: rgba(45, 226, 230, 0.15);
            color: var(--accent-neon);
            border: 1px solid rgba(45, 226, 230, 0.4);
        }
        .match-status.live .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent-neon);
            animation: pulse-dot 1.2s ease-in-out infinite;
        }
        .match-status.done {
            background: rgba(200, 170, 110, 0.15);
            color: var(--accent-gold-bright);
            border: 1px solid var(--border-gold);
        }
        .match-status.upcoming {
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-muted);
            border: 1px solid var(--border-subtle);
        }
        .match-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding-top: 12px;
            border-top: 1px solid var(--border-subtle);
        }
        .match-venue {
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .match-link {
            font-size: 13px;
            font-weight: 500;
            color: var(--accent-neon);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .match-link:hover {
            color: var(--accent-neon-soft);
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(0.7); }
        }
        /* ============ Featured / Focus ============ */
        .focus-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        .focus-card {
            background: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: var(--card-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-slow);
        }
        .focus-card:hover {
            border-color: rgba(45, 226, 230, 0.4);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-4px);
        }
        .focus-card-img-wrap {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
        }
        .focus-card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
            transition: transform var(--transition-slow);
        }
        .focus-card:hover .focus-card-img-wrap img {
            transform: scale(1.05);
        }
        .focus-card-img-wrap .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(15, 18, 32, 0.85) 0%, transparent 60%);
        }
        .focus-card-body {
            padding: 18px 20px 20px;
        }
        .focus-card-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            color: var(--accent-gold-bright);
            margin-bottom: 10px;
        }
        .focus-card-title {
            font-size: 17px;
            font-weight: 700;
            line-height: 1.4;
            color: var(--text-primary);
            margin-bottom: 8px;
        }
        .focus-card-desc {
            font-size: 13px;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 14px;
        }
        .focus-card-link {
            font-size: 13px;
            font-weight: 500;
            color: var(--accent-neon);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        /* ============ Topic Entry ============ */
        .topic-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .topic-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-subtle);
            border-radius: var(--card-radius-md);
            padding: 22px 18px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            transition: all var(--transition-base);
            min-height: 130px;
        }
        .topic-card:hover {
            border-color: rgba(45, 226, 230, 0.35);
            background: rgba(45, 226, 230, 0.06);
            transform: translateY(-3px);
            box-shadow: var(--shadow-card-hover);
        }
        .topic-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            background: rgba(200, 170, 110, 0.15);
            color: var(--accent-gold-bright);
            border: 1px solid var(--border-gold);
        }
        .topic-card h3 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
        }
        .topic-card p {
            font-size: 12px;
            line-height: 1.6;
            color: var(--text-muted);
            margin: 0;
        }
        /* ============ Info Panel ============ */
        .info-panel {
            background: linear-gradient(135deg, rgba(200, 170, 110, 0.08), rgba(45, 226, 230, 0.05));
            border: 1px solid var(--border-gold);
            border-radius: var(--card-radius-lg);
            padding: 28px var(--space-card-pad);
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .info-panel-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 700;
            background: rgba(200, 170, 110, 0.2);
            color: var(--accent-gold-bright);
            border: 1px solid var(--border-gold);
            flex-shrink: 0;
        }
        .info-panel-content {
            flex: 1;
            min-width: 240px;
        }
        .info-panel-content h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 8px;
        }
        .info-panel-content p {
            font-size: 14px;
            line-height: 1.75;
            color: var(--text-secondary);
            margin: 0;
        }
        /* ============ FAQ ============ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 880px;
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--card-radius-md);
            overflow: hidden;
            transition: border-color var(--transition-base);
        }
        .faq-item:hover {
            border-color: rgba(45, 226, 230, 0.25);
        }
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 22px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            text-align: left;
            background: transparent;
            cursor: pointer;
            transition: color var(--transition-base);
        }
        .faq-question:hover {
            color: var(--accent-neon);
        }
        .faq-question .faq-indicator {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 16px;
            font-weight: 400;
            color: var(--text-muted);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-base);
        }
        .faq-item.open .faq-indicator {
            color: var(--accent-neon);
            background: rgba(45, 226, 230, 0.12);
            border-color: rgba(45, 226, 230, 0.35);
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-slow);
            padding: 0 22px;
            font-size: 14px;
            line-height: 1.8;
            color: var(--text-secondary);
        }
        .faq-item.open .faq-answer {
            max-height: 280px;
            padding: 0 22px 18px;
        }
        .faq-question::before {
            content: '';
            width: 3px;
            height: 20px;
            border-radius: 3px;
            background: var(--accent-neon);
            margin-right: 4px;
            flex-shrink: 0;
            opacity: 0;
            transition: opacity var(--transition-base);
        }
        .faq-item.open .faq-question::before {
            opacity: 1;
        }
        /* ============ Subscribe CTA ============ */
        .subscribe-card {
            background: linear-gradient(135deg, rgba(15, 18, 32, 0.95), rgba(30, 34, 54, 0.95));
            border: 1px solid var(--border-gold);
            border-radius: var(--card-radius-lg);
            padding: 36px var(--space-card-pad);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
            flex-wrap: wrap;
            box-shadow: var(--shadow-card);
        }
        .subscribe-card-text {
            flex: 1;
            min-width: 260px;
        }
        .subscribe-card-text h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 10px;
        }
        .subscribe-card-text p {
            font-size: 14px;
            line-height: 1.75;
            color: var(--text-secondary);
            margin: 0;
        }
        .subscribe-form {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
            flex-wrap: wrap;
        }
        .subscribe-form input {
            padding: 12px 18px;
            border-radius: var(--btn-radius);
            border: 1px solid var(--border-subtle);
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            font-size: 14px;
            min-width: 240px;
            transition: border-color var(--transition-base), box-shadow var(--transition-base);
        }
        .subscribe-form input::placeholder {
            color: var(--text-muted);
        }
        .subscribe-form input:focus {
            outline: none;
            border-color: var(--accent-neon);
            box-shadow: 0 0 0 3px rgba(45, 226, 230, 0.15);
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: var(--btn-radius);
            font-size: 14px;
            font-weight: 600;
            color: #0F1220;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-bright));
            border: none;
            transition: all var(--transition-base);
            white-space: nowrap;
        }
        .btn-primary:hover {
            box-shadow: 0 0 16px rgba(200, 170, 110, 0.4);
            transform: translateY(-2px);
            filter: brightness(1.05);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 11px 22px;
            border-radius: var(--btn-radius);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-primary);
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.25);
            transition: all var(--transition-base);
            white-space: nowrap;
        }
        .btn-outline:hover {
            border-color: var(--accent-neon);
            color: var(--accent-neon);
            box-shadow: 0 0 12px rgba(45, 226, 230, 0.25);
            transform: translateY(-2px);
        }
        .btn-gold {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 11px 24px;
            border-radius: var(--btn-radius);
            font-size: 14px;
            font-weight: 600;
            color: #0F1220;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-bright));
            border: none;
            transition: all var(--transition-base);
            white-space: nowrap;
        }
        .btn-gold:hover {
            box-shadow: 0 0 16px rgba(200, 170, 110, 0.4);
            transform: translateY(-2px);
        }
        /* ============ Bottom Sticky CTA ============ */
        .bottom-sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 800;
            background: rgba(15, 18, 32, 0.96);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-top: 1px solid rgba(45, 226, 230, 0.25);
            padding: 12px 0;
            box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
            display: none;
        }
        .bottom-sticky-cta .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }
        .bottom-sticky-cta p {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0;
            flex: 1;
        }
        /* ============ Footer ============ */
        .site-footer {
            background: #0D0F1A;
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 28px;
            margin-top: 32px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-brand .logo {
            font-size: 17px;
            margin-bottom: 12px;
        }
        .footer-brand p {
            font-size: 13px;
            line-height: 1.75;
            color: var(--text-muted);
            margin: 0;
            max-width: 300px;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0 0 14px;
        }
        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-col ul a {
            font-size: 13px;
            color: var(--text-muted);
            transition: color var(--transition-base);
        }
        .footer-col ul a:hover {
            color: var(--accent-neon);
        }
        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            font-size: 12px;
            color: var(--text-muted);
        }
        .footer-bottom a {
            color: var(--text-muted);
        }
        .footer-bottom a:hover {
            color: var(--accent-neon);
        }
        /* ============ Responsive ============ */
        @media (max-width: 1024px) {
            .focus-grid {
                grid-template-columns: 1fr 1fr;
            }
            .topic-grid {
                grid-template-columns: 1fr 1fr;
            }
            .schedule-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: flex;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 68px;
                left: 0;
                right: 0;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                background: rgba(15, 18, 32, 0.98);
                border-bottom: 2px solid transparent;
                border-image: linear-gradient(90deg, var(--accent-neon), var(--accent-gold), var(--accent-neon)) 1;
                padding: 12px 24px;
                box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links li a {
                padding: 14px 8px;
                border-radius: 8px;
                font-size: 15px;
            }
            .nav-links li a.active::after {
                display: none;
            }
            .page-intro h1 {
                font-size: 26px;
            }
            .section-title {
                font-size: 22px;
            }
            .focus-grid {
                grid-template-columns: 1fr;
            }
            .topic-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .subscribe-card {
                flex-direction: column;
                align-items: flex-start;
            }
            .subscribe-form {
                width: 100%;
            }
            .subscribe-form input {
                flex: 1;
                min-width: 0;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .nav-container {
                height: 60px;
            }
            .nav-links {
                top: 60px;
                padding: 10px 16px;
            }
            .logo {
                font-size: 16px;
            }
            .logo .logo-mark {
                width: 30px;
                height: 30px;
                font-size: 15px;
                border-radius: 8px;
            }
            .page-intro {
                padding: 24px 0 8px;
            }
            .page-intro h1 {
                font-size: 22px;
            }
            .page-intro p {
                font-size: 13px;
            }
            .section-title {
                font-size: 20px;
            }
            .match-card {
                padding: 16px;
            }
            .match-teams {
                gap: 6px;
                flex-wrap: wrap;
            }
            .team {
                flex: 1 1 40%;
            }
            .topic-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .subscribe-form input {
                min-width: 100%;
            }
            .btn-primary,
            .btn-outline,
            .btn-gold {
                width: 100%;
            }
            .bottom-sticky-cta {
                display: block;
                padding: 10px 0;
                padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
            }
            .bottom-sticky-cta p {
                font-size: 12px;
            }
            body.has-sticky-cta {
                padding-bottom: 72px;
            }
        }
        @media (min-width: 521px) {
            .bottom-sticky-cta {
                display: none;
            }
        }

/* roulang page: category4 */
:root {
            --bg-primary: #0F1220;
            --bg-secondary: #111627;
            --bg-card: rgba(26, 29, 46, 0.92);
            --bg-card-hover: rgba(30, 34, 54, 0.96);
            --text-primary: #F5F7FA;
            --text-secondary: #A0A5B3;
            --text-muted: #6B7180;
            --accent-gold: #C8AA6E;
            --accent-gold-bright: #D4AF7A;
            --accent-neon: #2DE2E6;
            --accent-neon-soft: #35E0D0;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-gold: rgba(200, 170, 110, 0.35);
            --card-radius-lg: 20px;
            --card-radius-md: 16px;
            --card-radius-sm: 12px;
            --pill-radius: 999px;
            --btn-radius: 12px;
            --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 14px 36px rgba(45, 226, 230, 0.12);
            --shadow-glow: 0 0 12px rgba(45, 226, 230, 0.35);
            --space-section: 72px;
            --space-card-pad: 24px;
            --font-stack: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
            --container-max: 1240px;
            --container-narrow: 1080px;
            --transition-base: 0.25s ease;
            --transition-slow: 0.4s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-stack);
            font-size: 15px;
            line-height: 1.75;
            color: var(--text-primary);
            background: var(--bg-primary);
            background-image: linear-gradient(165deg, #0F1220 0%, #141827 45%, #1A1D2E 100%);
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-base), opacity var(--transition-base);
        }

        a:hover {
            color: var(--accent-neon);
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
            border-radius: var(--card-radius-sm);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
            color: inherit;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--accent-neon);
            outline-offset: 3px;
            border-radius: 4px;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        .container-narrow {
            max-width: var(--container-narrow);
        }

        section {
            padding: var(--space-section) 0;
            position: relative;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: var(--accent-gold-bright);
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .section-label::before {
            content: '';
            width: 20px;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-neon), transparent);
            border-radius: 2px;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.4;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.01em;
        }

        .section-desc {
            font-size: 15px;
            line-height: 1.85;
            color: var(--text-secondary);
            max-width: 720px;
            margin-bottom: 28px;
        }

        .section-head {
            margin-bottom: 36px;
        }

        .section-head.center {
            text-align: center;
        }

        .section-head.center .section-desc {
            margin-left: auto;
            margin-right: auto;
        }

        .text-gold {
            color: var(--accent-gold-bright);
        }

        .text-neon {
            color: var(--accent-neon);
        }

        .text-muted {
            color: var(--text-muted);
        }

        /* ============ Header / Nav ============ */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(15, 18, 32, 0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 2px solid transparent;
            border-image: linear-gradient(90deg, var(--accent-neon), var(--accent-gold), var(--accent-neon)) 1;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            height: 68px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 19px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .logo .logo-mark {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-bright));
            color: #0F1220;
            font-weight: 800;
            font-size: 18px;
            box-shadow: 0 0 16px rgba(200, 170, 110, 0.4);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links li a {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            position: relative;
            transition: color var(--transition-base), background var(--transition-base);
        }

        .nav-links li a:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.05);
        }

        .nav-links li a.active {
            color: var(--accent-neon);
            background: rgba(45, 226, 230, 0.08);
            box-shadow: 0 0 8px rgba(45, 226, 230, 0.25);
            text-shadow: 0 0 8px rgba(45, 226, 230, 0.35);
        }

        .nav-links li a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 16px;
            right: 16px;
            height: 2px;
            background: var(--accent-neon);
            border-radius: 2px;
            box-shadow: 0 0 8px var(--accent-neon);
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            padding: 8px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
        }

        .nav-toggle span {
            display: block;
            width: 20px;
            height: 2px;
            border-radius: 2px;
            background: var(--text-primary);
            transition: transform var(--transition-base), opacity var(--transition-base);
        }

        .nav-toggle.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-toggle.open span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* ============ Breadcrumb ============ */
        .breadcrumb-section {
            padding: 24px 0 0;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .breadcrumb a {
            color: var(--text-secondary);
        }

        .breadcrumb a:hover {
            color: var(--accent-neon);
        }

        .breadcrumb .sep {
            color: var(--accent-gold);
            font-weight: 600;
        }

        .breadcrumb .current {
            color: var(--accent-neon);
            font-weight: 500;
        }

        /* ============ Page Header ============ */
        .page-header-section {
            padding: 36px 0 40px;
        }

        .page-header {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .page-header h1 {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.35;
            color: var(--text-primary);
            letter-spacing: 0.01em;
        }

        .page-header .subtitle {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-secondary);
            max-width: 780px;
        }

        .page-header .meta-tags {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .page-header .meta-tags span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: var(--pill-radius);
            font-size: 12px;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
            color: var(--text-secondary);
        }

        .page-header .meta-tags span:first-child {
            background: rgba(45, 226, 230, 0.08);
            border-color: rgba(45, 226, 230, 0.3);
            color: var(--accent-neon);
        }

        .page-header .meta-tags span:nth-child(2) {
            background: rgba(200, 170, 110, 0.08);
            border-color: rgba(200, 170, 110, 0.3);
            color: var(--accent-gold-bright);
        }

        /* ============ News List ============ */
        .news-list-section {
            padding-top: 12px;
        }

        .news-list {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .news-item {
            display: grid;
            grid-template-columns: 110px 1fr;
            gap: 24px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--card-radius-lg);
            padding: 24px;
            transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
            box-shadow: var(--shadow-card);
        }

        .news-item:hover {
            border-color: rgba(45, 226, 230, 0.35);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }

        .news-item .news-date {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            gap: 4px;
            padding: 12px 8px;
            background: rgba(200, 170, 110, 0.06);
            border: 1px solid rgba(200, 170, 110, 0.2);
            border-radius: var(--card-radius-md);
            text-align: center;
        }

        .news-item .news-date .day {
            font-size: 28px;
            font-weight: 700;
            color: var(--accent-gold-bright);
            line-height: 1.2;
        }

        .news-item .news-date .month {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .news-item .news-body {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .news-item .news-body h2 {
            font-size: 19px;
            font-weight: 700;
            line-height: 1.45;
            color: var(--text-primary);
        }

        .news-item .news-body .summary {
            font-size: 14px;
            line-height: 1.8;
            color: var(--text-secondary);
            flex: 1;
        }

        .news-item .news-body .news-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 4px;
        }

        .news-item .news-body .news-meta .tag {
            display: inline-block;
            padding: 3px 12px;
            border-radius: var(--pill-radius);
            font-size: 12px;
            font-weight: 500;
            background: rgba(45, 226, 230, 0.08);
            border: 1px solid rgba(45, 226, 230, 0.25);
            color: var(--accent-neon);
        }

        .news-item .news-body .news-meta .tag.gold {
            background: rgba(200, 170, 110, 0.08);
            border-color: rgba(200, 170, 110, 0.3);
            color: var(--accent-gold-bright);
        }

        .news-item .news-body .news-meta .read-more {
            margin-left: auto;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-neon);
            transition: color var(--transition-base), text-shadow var(--transition-base);
        }

        .news-item .news-body .news-meta .read-more:hover {
            color: var(--accent-neon-soft);
            text-shadow: 0 0 8px rgba(45, 226, 230, 0.4);
        }

        .news-item .news-body .news-meta .read-more::after {
            content: '→';
            font-size: 14px;
        }

        /* ============ Topics ============ */
        .topics-section {
            background: rgba(15, 18, 32, 0.55);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .topics-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .topic-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--card-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
        }

        .topic-card:hover {
            border-color: rgba(200, 170, 110, 0.4);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-4px);
        }

        .topic-card .topic-image {
            aspect-ratio: 16/9;
            overflow: hidden;
            position: relative;
        }

        .topic-card .topic-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
            transition: transform var(--transition-slow);
        }

        .topic-card:hover .topic-image img {
            transform: scale(1.04);
        }

        .topic-card .topic-image .badge {
            position: absolute;
            top: 12px;
            left: 12px;
            display: inline-block;
            padding: 4px 12px;
            border-radius: var(--pill-radius);
            font-size: 12px;
            font-weight: 600;
            background: rgba(15, 18, 32, 0.85);
            color: var(--accent-neon);
            border: 1px solid rgba(45, 226, 230, 0.35);
        }

        .topic-card .topic-content {
            padding: 18px 20px 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .topic-card .topic-content h3 {
            font-size: 17px;
            font-weight: 700;
            line-height: 1.45;
            color: var(--text-primary);
        }

        .topic-card .topic-content p {
            font-size: 13px;
            line-height: 1.75;
            color: var(--text-secondary);
        }

        .topic-card .topic-content .topic-link {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-gold-bright);
            margin-top: 4px;
        }

        .topic-card .topic-content .topic-link:hover {
            color: var(--accent-neon);
        }

        /* ============ Stats Bar ============ */
        .stats-section {
            padding: 36px 0;
        }

        .stats-bar {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .stat-badge {
            display: flex;
            align-items: center;
            gap: 14px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--card-radius-md);
            padding: 16px 20px;
            box-shadow: var(--shadow-card);
        }

        .stat-badge .stat-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            background: rgba(200, 170, 110, 0.1);
            border: 1px solid rgba(200, 170, 110, 0.25);
            color: var(--accent-gold-bright);
            flex-shrink: 0;
        }

        .stat-badge .stat-icon.neon {
            background: rgba(45, 226, 230, 0.1);
            border-color: rgba(45, 226, 230, 0.25);
            color: var(--accent-neon);
        }

        .stat-badge .stat-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .stat-badge .stat-info .value {
            font-size: 22px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-primary);
        }

        .stat-badge .stat-info .label {
            font-size: 12px;
            color: var(--text-secondary);
            letter-spacing: 0.03em;
        }

        /* ============ Subscribe CTA ============ */
        .subscribe-section {
            background: linear-gradient(135deg, rgba(200, 170, 110, 0.06) 0%, rgba(45, 226, 230, 0.04) 100%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--card-radius-lg);
            padding: 36px 32px;
            margin: 32px 0 0;
        }

        .subscribe-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }

        .subscribe-inner .subscribe-text {
            flex: 1;
            min-width: 260px;
        }

        .subscribe-inner .subscribe-text h2 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .subscribe-inner .subscribe-text p {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .subscribe-inner .subscribe-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
        }

        .subscribe-inner .subscribe-form input {
            padding: 12px 18px;
            border-radius: var(--btn-radius);
            border: 1px solid var(--border-subtle);
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-primary);
            font-size: 14px;
            min-width: 240px;
            transition: border-color var(--transition-base), box-shadow var(--transition-base);
        }

        .subscribe-inner .subscribe-form input::placeholder {
            color: var(--text-muted);
        }

        .subscribe-inner .subscribe-form input:focus {
            border-color: var(--accent-neon);
            box-shadow: 0 0 12px rgba(45, 226, 230, 0.25);
            outline: none;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: var(--btn-radius);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.02em;
            transition: all var(--transition-base);
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-bright));
            color: #0F1220;
            box-shadow: 0 4px 16px rgba(200, 170, 110, 0.3);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--accent-gold-bright), #E0C084);
            box-shadow: 0 6px 24px rgba(200, 170, 110, 0.45);
            transform: translateY(-2px);
            color: #0F1220;
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid rgba(255, 255, 255, 0.25);
        }

        .btn-secondary:hover {
            border-color: var(--accent-neon);
            color: var(--accent-neon);
            box-shadow: 0 0 12px rgba(45, 226, 230, 0.2);
            transform: translateY(-2px);
        }

        /* ============ FAQ ============ */
        .faq-section {
            padding-bottom: 48px;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 860px;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--card-radius-md);
            overflow: hidden;
            transition: border-color var(--transition-base);
        }

        .faq-item:hover {
            border-color: rgba(200, 170, 110, 0.3);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 22px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            user-select: none;
        }

        .faq-question .faq-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(45, 226, 230, 0.1);
            color: var(--accent-neon);
            font-size: 16px;
            flex-shrink: 0;
            transition: transform var(--transition-base);
        }

        .faq-item.open .faq-question .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-base);
            padding: 0 22px;
        }

        .faq-item.open .faq-answer {
            max-height: 200px;
            padding: 0 22px 18px;
        }

        .faq-answer p {
            font-size: 14px;
            line-height: 1.8;
            color: var(--text-secondary);
        }

        /* ============ Bottom CTA ============ */
        .bottom-cta-section {
            padding: 24px 0 48px;
        }

        .bottom-cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            background: linear-gradient(135deg, rgba(45, 226, 230, 0.06) 0%, rgba(200, 170, 110, 0.06) 100%);
            border: 1px solid rgba(200, 170, 110, 0.3);
            border-radius: var(--card-radius-lg);
            padding: 24px 28px;
        }

        .bottom-cta p {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-primary);
            flex: 1;
            min-width: 200px;
        }

        /* ============ Footer ============ */
        .site-footer {
            background: #0B0D16;
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 24px;
            margin-top: 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }

        .footer-brand .logo {
            margin-bottom: 14px;
        }

        .footer-brand p {
            font-size: 13px;
            line-height: 1.8;
            color: var(--text-secondary);
            max-width: 300px;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.02em;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-col ul li a {
            font-size: 13px;
            color: var(--text-secondary);
            transition: color var(--transition-base);
        }

        .footer-col ul li a:hover {
            color: var(--accent-neon);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            padding-top: 20px;
            border-top: 1px solid var(--border-subtle);
            font-size: 12px;
            color: var(--text-muted);
        }

        .footer-bottom a {
            color: var(--text-secondary);
        }

        .footer-bottom a:hover {
            color: var(--accent-neon);
        }

        /* ============ Mobile Bottom Bar ============ */
        .mobile-bottom-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 999;
            background: rgba(15, 18, 32, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-top: 1px solid rgba(200, 170, 110, 0.3);
            padding: 10px 16px;
            padding-bottom: max(10px, env(safe-area-inset-bottom));
        }

        .mobile-bottom-bar .bar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .mobile-bottom-bar .bar-text {
            font-size: 13px;
            color: var(--text-secondary);
            flex: 1;
        }

        .mobile-bottom-bar .btn {
            padding: 10px 18px;
            font-size: 13px;
        }

        /* ============ Responsive ============ */
        @media (max-width: 1024px) {
            .topics-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-bar {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1.6fr 1fr 1fr;
                gap: 28px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --space-section: 48px;
                --card-radius-lg: 16px;
                --card-radius-md: 14px;
            }

            .nav-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 68px;
                left: 0;
                right: 0;
                flex-direction: column;
                align-items: stretch;
                padding: 16px 24px 24px;
                background: rgba(15, 18, 32, 0.98);
                border-bottom: 2px solid var(--border-gold);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
                transform: translateY(-110%);
                transition: transform var(--transition-slow);
                z-index: 999;
            }

            .nav-links.open {
                transform: translateY(0);
            }

            .nav-links li a {
                padding: 14px 16px;
                font-size: 15px;
                border-radius: 10px;
            }

            .nav-links li a.active::after {
                display: none;
            }

            .nav-links li a.active {
                background: rgba(45, 226, 230, 0.1);
            }

            .page-header h1 {
                font-size: 28px;
            }

            .news-item {
                grid-template-columns: 1fr;
                gap: 14px;
                padding: 20px;
            }

            .news-item .news-date {
                flex-direction: row;
                align-items: center;
                gap: 10px;
                padding: 10px 14px;
            }

            .news-item .news-date .day {
                font-size: 22px;
            }

            .news-item .news-body .news-meta .read-more {
                margin-left: 0;
            }

            .topics-grid {
                grid-template-columns: 1fr;
            }

            .stats-bar {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .stat-badge {
                padding: 12px 14px;
                gap: 10px;
            }

            .stat-badge .stat-info .value {
                font-size: 18px;
            }

            .subscribe-section {
                padding: 24px 20px;
            }

            .subscribe-inner {
                flex-direction: column;
                align-items: flex-start;
            }

            .subscribe-inner .subscribe-form {
                width: 100%;
            }

            .subscribe-inner .subscribe-form input {
                flex: 1;
                min-width: 0;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .mobile-bottom-bar {
                display: block;
            }

            .site-footer {
                padding-bottom: 88px;
            }

            .bottom-cta-section {
                display: none;
            }
        }

        @media (max-width: 520px) {
            :root {
                --space-section: 36px;
                --space-card-pad: 18px;
            }

            .container {
                padding: 0 16px;
            }

            .page-header h1 {
                font-size: 24px;
            }

            .page-header .subtitle {
                font-size: 14px;
            }

            .section-title {
                font-size: 22px;
            }

            .stats-bar {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .stat-badge {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .news-item {
                padding: 16px;
            }

            .news-item .news-body h2 {
                font-size: 17px;
            }

            .faq-question {
                font-size: 14px;
                padding: 14px 16px;
            }

            .faq-answer {
                padding: 0 16px;
            }

            .faq-item.open .faq-answer {
                padding: 0 16px 14px;
            }

            .subscribe-inner .subscribe-form {
                flex-direction: column;
            }

            .subscribe-inner .subscribe-form input {
                width: 100%;
                min-width: 100%;
            }

            .subscribe-inner .subscribe-form .btn {
                width: 100%;
                justify-content: center;
            }

            .mobile-bottom-bar .bar-text {
                font-size: 12px;
            }

            .mobile-bottom-bar .btn {
                padding: 8px 14px;
                font-size: 12px;
            }
        }
