/* roulang page: index */
:root {
            --bg-page: #15181d;
            --bg-surface: #1d2128;
            --bg-surface-2: #242a33;
            --border-subtle: #333a45;
            --text-primary: #f2f5f9;
            --text-secondary: #a7b1bd;
            --text-muted: #6e7885;
            --accent-score: #f5b942;
            --accent-score-hover: #ffc857;
            --accent-score-active: #d99d2e;
            --accent-positive: #3ec6a8;
            --accent-negative: #e06c5b;
            --accent-link: #6ca8ff;
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-badge: 4px;
            --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.28);
            --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.38);
            --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system, sans-serif;
            --font-mono: "DIN Alternate", "Bebas Neue", "Consolas", "Monaco", "Roboto Mono", monospace;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-page);
            color: var(--text-primary);
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a {
            color: var(--accent-link);
            text-decoration: none;
            transition: color 0.2s ease, text-decoration-color 0.2s ease;
        }

        a:hover {
            color: #8dbaff;
            text-decoration: underline;
            text-decoration-color: rgba(108, 168, 255, 0.5);
            text-underline-offset: 3px;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        .btn:focus-visible {
            outline: 2px solid rgba(245, 185, 66, 0.45);
            outline-offset: 2px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1200px;
        }

        .container-fluid {
            max-width: 1400px;
        }

        /* ========== Header / Nav ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: rgba(21, 24, 29, 0.82);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid transparent;
            transition: border-color 0.25s ease, background 0.25s ease;
            min-height: 68px;
        }

        .site-header.scrolled {
            background: rgba(21, 24, 29, 0.94);
            border-bottom-color: var(--border-subtle);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 68px;
            gap: 24px;
            flex-wrap: wrap;
            padding: 8px 0;
        }

        .brand-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            white-space: nowrap;
            text-decoration: none;
        }

        .brand-logo:hover {
            color: var(--text-primary);
            text-decoration: none;
        }

        .brand-logo .logo-mark {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(245, 185, 66, 0.22), rgba(245, 185, 66, 0.06));
            border: 1px solid rgba(245, 185, 66, 0.4);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-score);
            font-size: 18px;
            flex-shrink: 0;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex: 1;
            justify-content: center;
        }

        .main-nav .nav-link {
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 6px;
            transition: color 0.2s ease, background 0.2s ease;
            white-space: nowrap;
            position: relative;
        }

        .main-nav .nav-link:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.05);
            text-decoration: none;
        }

        .main-nav .nav-link.active {
            color: var(--accent-score);
            background: rgba(245, 185, 66, 0.08);
        }

        .main-nav .nav-link.active::after {
            content: "";
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 2px;
            background: var(--accent-score);
            border-radius: 2px;
        }

        .lang-switch {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            border: 1px solid var(--border-subtle);
            border-radius: 999px;
            padding: 3px;
            background: rgba(255, 255, 255, 0.03);
            flex-shrink: 0;
            min-height: 36px;
        }

        .lang-switch .lang-option {
            font-size: 12px;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 999px;
            border: none;
            background: transparent;
            color: var(--text-muted);
            transition: all 0.2s ease;
            cursor: pointer;
            white-space: nowrap;
        }

        .lang-switch .lang-option:hover {
            color: var(--text-primary);
        }

        .lang-switch .lang-option.active {
            background: rgba(245, 185, 66, 0.18);
            color: var(--accent-score);
            border: 1px solid rgba(245, 185, 66, 0.35);
        }

        .navbar-toggler {
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 6px 10px;
            background: transparent;
            color: var(--text-secondary);
        }

        .navbar-toggler:focus {
            outline: 2px solid rgba(245, 185, 66, 0.45);
            outline-offset: 2px;
            box-shadow: none;
        }

        .navbar-toggler .fa-bars {
            font-size: 18px;
        }

        @media (max-width: 991.98px) {
            .header-inner {
                flex-wrap: nowrap;
            }
            .main-nav {
                justify-content: flex-start;
                flex-direction: column;
                gap: 2px;
                align-items: stretch;
                padding: 16px 0 8px;
            }
            .main-nav .nav-link {
                padding: 10px 14px;
                font-size: 15px;
                text-align: left;
            }
            .main-nav .nav-link.active::after {
                display: none;
            }
            .lang-switch {
                margin: 8px 0 4px;
                align-self: flex-start;
            }
            .navbar-collapse {
                border-top: 1px solid var(--border-subtle);
                margin-top: 8px;
            }
        }

        @media (max-width: 575.98px) {
            .header-inner {
                min-height: 56px;
                gap: 12px;
            }
            .site-header {
                min-height: 56px;
            }
            .brand-logo {
                font-size: 17px;
            }
            .brand-logo .logo-mark {
                width: 30px;
                height: 30px;
                font-size: 15px;
            }
        }

        /* ========== Hero ========== */
        .hero-section {
            position: relative;
            min-height: 480px;
            padding: 76px 0 72px;
            background-color: var(--bg-page);
            background-image: url('/assets/images/8a06d8fba7c8f313.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(21, 24, 29, 0.72);
            z-index: 1;
        }

        .hero-section::after {
            content: "";
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(245, 185, 66, 0.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(245, 185, 66, 0.035) 1px, transparent 1px);
            background-size: 36px 36px;
            z-index: 1;
            pointer-events: none;
        }

        .hero-section .container {
            position: relative;
            z-index: 2;
        }

        .hero-left {
            padding-right: 24px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.3px;
            color: var(--accent-score);
            background: rgba(245, 185, 66, 0.1);
            border: 1px solid rgba(245, 185, 66, 0.28);
            padding: 6px 14px;
            border-radius: 999px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hero-badge .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-positive);
            animation: pulse-dot 1.8s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 0 0 rgba(62, 198, 168, 0.5);
            }
            50% {
                opacity: 0.7;
                box-shadow: 0 0 0 6px rgba(62, 198, 168, 0);
            }
        }

        .hero-section h1 {
            font-size: clamp(28px, 4.5vw, 40px);
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: 0.5px;
            margin-bottom: 18px;
            color: var(--text-primary);
        }

        .hero-section h1 .highlight {
            color: var(--accent-score);
        }

        .hero-subtitle {
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-secondary);
            max-width: 560px;
            margin-bottom: 28px;
        }

        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 28px;
        }

        .btn-primary-amber {
            background: var(--accent-score);
            border: none;
            color: #15181d;
            font-weight: 700;
            font-size: 15px;
            padding: 12px 26px;
            border-radius: var(--radius-btn);
            transition: all 0.25s ease;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary-amber:hover {
            background: var(--accent-score-hover);
            color: #15181d;
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(245, 185, 66, 0.22);
            text-decoration: none;
        }

        .btn-primary-amber:active {
            background: var(--accent-score-active);
            transform: translateY(0);
            box-shadow: none;
        }

        .btn-outline-ghost {
            background: transparent;
            border: 1px solid var(--border-subtle);
            color: var(--text-primary);
            font-weight: 600;
            font-size: 15px;
            padding: 12px 26px;
            border-radius: var(--radius-btn);
            transition: all 0.25s ease;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-outline-ghost:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            border-color: #4a5462;
            text-decoration: none;
        }

        .btn-outline-ghost:active {
            background: rgba(255, 255, 255, 0.08);
        }

        .hero-trust-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 22px;
        }

        .trust-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
        }

        .trust-item i {
            color: var(--accent-score);
            font-size: 14px;
        }

        .hero-right-card {
            background: rgba(29, 33, 40, 0.88);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 22px;
            backdrop-filter: blur(8px);
        }

        .hero-right-card .card-header-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border-subtle);
        }

        .hero-right-card .card-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }

        .hero-right-card .live-tag {
            font-size: 11px;
            font-weight: 700;
            color: var(--accent-negative);
            background: rgba(224, 108, 91, 0.12);
            border: 1px solid rgba(224, 108, 91, 0.35);
            padding: 3px 10px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            letter-spacing: 0.3px;
        }

        .hero-right-card .live-tag .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent-negative);
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        .score-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            border-bottom: 1px solid rgba(51, 58, 69, 0.5);
        }

        .score-row:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .score-teams {
            display: flex;
            flex-direction: column;
            gap: 2px;
            flex: 1;
        }

        .score-team-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .score-team-name .team-tag {
            font-size: 11px;
            font-weight: 700;
            color: var(--text-muted);
            background: var(--bg-surface-2);
            padding: 1px 6px;
            border-radius: 3px;
            letter-spacing: 0.3px;
        }

        .score-status {
            font-size: 11px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 5px;
            margin-top: 3px;
        }

        .score-status .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-positive);
            display: inline-block;
        }

        .score-status .status-dot.upcoming {
            background: var(--text-muted);
        }

        .score-number {
            font-family: var(--font-mono);
            font-size: 26px;
            font-weight: 700;
            color: var(--accent-score);
            letter-spacing: 1px;
            min-width: 72px;
            text-align: center;
            flex-shrink: 0;
        }

        .score-number .divider {
            color: var(--text-muted);
            font-size: 18px;
            margin: 0 4px;
        }

        .score-game-info {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 4px;
            text-align: center;
            font-family: var(--font-mono);
        }

        @media (max-width: 991.98px) {
            .hero-section {
                padding: 56px 0 48px;
                min-height: auto;
            }
            .hero-left {
                padding-right: 0;
                margin-bottom: 32px;
            }
            .hero-right-card {
                max-width: 520px;
            }
        }

        @media (max-width: 575.98px) {
            .hero-section {
                padding: 40px 0 36px;
            }
            .hero-section h1 {
                font-size: 26px;
            }
            .hero-subtitle {
                font-size: 14px;
            }
            .score-number {
                font-size: 22px;
                min-width: 58px;
            }
            .hero-cta-group .btn {
                width: 100%;
                justify-content: center;
            }
            .hero-trust-badges {
                gap: 8px 14px;
            }
        }

        /* ========== Section Common ========== */
        .content-section {
            padding: 72px 0;
        }

        .content-section.alt-bg {
            background: var(--bg-surface);
        }

        .content-section.tight-bg {
            background: var(--bg-surface-2);
        }

        .section-label {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-score);
            letter-spacing: 0.8px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: clamp(24px, 3.5vw, 30px);
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: 0.3px;
            margin-bottom: 16px;
            color: var(--text-primary);
        }

        .section-desc {
            font-size: 15px;
            line-height: 1.75;
            color: var(--text-secondary);
            max-width: 720px;
            margin-bottom: 32px;
        }

        @media (max-width: 767.98px) {
            .content-section {
                padding: 48px 0;
            }
            .section-title {
                font-size: 22px;
            }
        }

        @media (max-width: 575.98px) {
            .section-title {
                font-size: 20px;
            }
        }

        /* ========== Cards ========== */
        .info-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 24px;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-card);
        }

        .info-card:hover {
            border-color: #4a5462;
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }

        .info-card .card-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            background: rgba(245, 185, 66, 0.1);
            border: 1px solid rgba(245, 185, 66, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--accent-score);
            margin-bottom: 16px;
        }

        .info-card .card-title-sm {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .info-card .card-text-sm {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        /* ========== Pain Point Cards ========== */
        .pain-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 26px 24px;
            height: 100%;
            transition: all 0.3s ease;
        }

        .pain-card:hover {
            border-color: rgba(224, 108, 91, 0.4);
            box-shadow: var(--shadow-card-hover);
        }

        .pain-card .pain-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: rgba(224, 108, 91, 0.1);
            border: 1px solid rgba(224, 108, 91, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--accent-negative);
            margin-bottom: 16px;
        }

        .pain-card .pain-title {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .pain-card .pain-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ========== Channel Grid ========== */
        .channel-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 24px 20px;
            height: 100%;
            transition: all 0.3s ease;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text-primary);
        }

        .channel-card:hover {
            border-color: rgba(245, 185, 66, 0.4);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-4px);
            text-decoration: none;
            color: var(--text-primary);
        }

        .channel-card .channel-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            background: rgba(245, 185, 66, 0.08);
            border: 1px solid rgba(245, 185, 66, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--accent-score);
        }

        .channel-card .channel-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .channel-card .channel-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.55;
        }

        /* ========== Stat Numbers ========== */
        .stat-block {
            text-align: center;
            padding: 28px 16px;
            background: var(--bg-surface);
            border-radius: var(--radius-card);
            border: 1px solid var(--border-subtle);
            height: 100%;
            transition: all 0.3s ease;
        }

        .stat-block:hover {
            border-color: rgba(245, 185, 66, 0.35);
        }

        .stat-number {
            font-family: var(--font-mono);
            font-size: 38px;
            font-weight: 700;
            color: var(--accent-score);
            letter-spacing: 2px;
            line-height: 1.2;
            margin-bottom: 8px;
        }

        .stat-number .unit {
            font-size: 20px;
            color: var(--text-muted);
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .stat-label {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: 0.3px;
        }

        @media (max-width: 575.98px) {
            .stat-number {
                font-size: 30px;
            }
        }

        /* ========== Testimonial ========== */
        .testimonial-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 24px;
            height: 100%;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            border-color: #4a5462;
            box-shadow: var(--shadow-card-hover);
        }

        .testimonial-card .quote-mark {
            font-size: 32px;
            color: rgba(245, 185, 66, 0.35);
            line-height: 1;
            margin-bottom: 12px;
            font-family: Georgia, serif;
        }

        .testimonial-card .quote-text {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 18px;
        }

        .testimonial-card .testimonial-footer {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-card .avatar-placeholder {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-surface-2);
            border: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 16px;
            flex-shrink: 0;
        }

        .testimonial-card .testimonial-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .testimonial-card .testimonial-role {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ========== Audience Cards ========== */
        .audience-card {
            background: var(--bg-surface-2);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 22px 20px;
            height: 100%;
            border-left: 3px solid var(--accent-score);
            transition: all 0.3s ease;
        }

        .audience-card:hover {
            border-left-color: var(--accent-score-hover);
            box-shadow: var(--shadow-card-hover);
            transform: translateX(3px);
        }

        .audience-card .audience-icon {
            font-size: 26px;
            color: var(--accent-score);
            margin-bottom: 12px;
        }

        .audience-card .audience-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .audience-card .audience-reason {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.65;
        }

        /* ========== Team Table ========== */
        .custom-table-wrapper {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        .custom-table {
            width: 100%;
            border-collapse: collapse;
            margin: 0;
        }

        .custom-table thead th {
            background: var(--bg-surface-2);
            color: var(--text-muted);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            padding: 14px 16px;
            border-bottom: 1px solid var(--border-subtle);
            text-align: left;
            white-space: nowrap;
        }

        .custom-table tbody td {
            padding: 14px 16px;
            border-bottom: 1px solid rgba(51, 58, 69, 0.5);
            font-size: 14px;
            color: var(--text-secondary);
            vertical-align: middle;
        }

        .custom-table tbody tr:last-child td {
            border-bottom: none;
        }

        .custom-table tbody tr:hover {
            background: var(--bg-surface-2);
        }

        .custom-table .rank-cell {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 18px;
            color: var(--text-primary);
            width: 56px;
        }

        .custom-table .rank-cell.top-rank {
            color: var(--accent-score);
        }

        .custom-table .team-name-cell {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 15px;
        }

        .custom-table .winrate-cell {
            font-family: var(--font-mono);
            font-weight: 700;
            color: var(--accent-positive);
            font-size: 15px;
        }

        .custom-table .points-cell {
            font-family: var(--font-mono);
            font-weight: 600;
            color: var(--accent-score);
            font-size: 15px;
        }

        .custom-table .form-dots {
            display: flex;
            gap: 4px;
            align-items: center;
        }

        .custom-table .form-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--text-muted);
        }

        .custom-table .form-dot.win {
            background: var(--accent-positive);
        }

        .custom-table .form-dot.loss {
            background: var(--accent-negative);
        }

        @media (max-width: 767.98px) {
            .custom-table-wrapper {
                overflow-x: auto;
            }
            .custom-table {
                min-width: 560px;
            }
        }

        /* ========== Hero Cards Horizontal ========== */
        .hero-card-h {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 18px;
            min-width: 220px;
            flex: 0 0 auto;
            transition: all 0.3s ease;
            text-decoration: none;
            color: var(--text-primary);
            display: block;
        }

        .hero-card-h:hover {
            border-color: rgba(108, 168, 255, 0.4);
            box-shadow: var(--shadow-card-hover);
            text-decoration: none;
            color: var(--text-primary);
        }

        .hero-card-h .hero-avatar {
            width: 44px;
            height: 44px;
            border-radius: 8px;
            background: var(--bg-surface-2);
            border: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--accent-link);
            margin-bottom: 12px;
        }

        .hero-card-h .hero-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .hero-card-h .hero-stats-row {
            display: flex;
            gap: 14px;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .hero-card-h .hero-stats-row .winrate-highlight {
            color: var(--accent-positive);
            font-weight: 600;
            font-family: var(--font-mono);
        }

        .hero-card-h .hero-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            color: var(--text-muted);
            background: var(--bg-surface-2);
            padding: 2px 8px;
            border-radius: var(--radius-badge);
        }

        .horizontal-scroll-row {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding-bottom: 12px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--border-subtle) transparent;
        }

        .horizontal-scroll-row::-webkit-scrollbar {
            height: 5px;
        }

        .horizontal-scroll-row::-webkit-scrollbar-track {
            background: transparent;
        }

        .horizontal-scroll-row::-webkit-scrollbar-thumb {
            background: var(--border-subtle);
            border-radius: 4px;
        }

        .horizontal-scroll-row>* {
            scroll-snap-align: start;
        }

        /* ========== News List ========== */
        .news-item {
            display: flex;
            gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid var(--border-subtle);
            align-items: flex-start;
            transition: all 0.3s ease;
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-item:hover {
            background: rgba(255, 255, 255, 0.02);
        }

        .news-item .news-date {
            font-family: var(--font-mono);
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
            white-space: nowrap;
            min-width: 76px;
            padding-top: 3px;
        }

        .news-item .news-content {
            flex: 1;
        }

        .news-item .news-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
            line-height: 1.4;
        }

        .news-item .news-summary {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.65;
            margin-bottom: 10px;
        }

        .news-item .btn-read-more {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-link);
            background: none;
            border: none;
            padding: 0;
            cursor: pointer;
            transition: color 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .news-item .btn-read-more:hover {
            color: #8dbaff;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .news-item .news-thumb {
            width: 140px;
            height: 90px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
            border: 1px solid var(--border-subtle);
        }

        @media (max-width: 767.98px) {
            .news-item {
                flex-direction: column;
                gap: 8px;
            }
            .news-item .news-date {
                min-width: auto;
            }
            .news-item .news-thumb {
                width: 100%;
                height: auto;
                max-height: 180px;
            }
        }

        /* ========== Data Bar ========== */
        .data-bar {
            background: var(--bg-surface-2);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px 32px;
            align-items: center;
            background-image:
                linear-gradient(rgba(245, 185, 66, 0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(245, 185, 66, 0.025) 1px, transparent 1px);
            background-size: 28px 28px;
        }

        .data-bar .data-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .data-bar .data-item .data-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent-positive);
            flex-shrink: 0;
        }

        .data-bar .data-item .data-dot.warning {
            background: var(--accent-score);
        }

        .data-bar .data-item .data-dot.inactive {
            background: var(--text-muted);
        }

        .data-bar .data-item .data-value {
            font-family: var(--font-mono);
            font-size: 22px;
            font-weight: 700;
            color: var(--accent-score);
            letter-spacing: 1px;
        }

        .data-bar .data-item .data-label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
        }

        @media (max-width: 575.98px) {
            .data-bar {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
            .data-bar .data-item .data-value {
                font-size: 20px;
            }
        }

        /* ========== FAQ ========== */
        .faq-accordion .accordion-item {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            margin-bottom: 12px;
            overflow: hidden;
        }

        .faq-accordion .accordion-button {
            background: var(--bg-surface);
            color: var(--text-primary);
            font-size: 16px;
            font-weight: 600;
            padding: 18px 20px;
            border: none;
            box-shadow: none;
            border-radius: var(--radius-card);
            position: relative;
            transition: all 0.3s ease;
            letter-spacing: 0.2px;
        }

        .faq-accordion .accordion-button::after {
            content: "\f067";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            background: none;
            color: var(--accent-score);
            font-size: 14px;
            transition: transform 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .faq-accordion .accordion-button:not(.collapsed)::after {
            content: "\f068";
            transform: rotate(0deg);
        }

        .faq-accordion .accordion-button:focus {
            box-shadow: none;
            outline: 2px solid rgba(245, 185, 66, 0.4);
            outline-offset: -2px;
        }

        .faq-accordion .accordion-button:not(.collapsed) {
            background: var(--bg-surface-2);
            color: var(--accent-score);
        }

        .faq-accordion .accordion-body {
            background: var(--bg-surface);
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.75;
            padding: 16px 20px 20px;
            border-top: 1px solid var(--border-subtle);
        }

        .faq-accordion .accordion-item.question-open {
            border-left: 3px solid var(--accent-score);
        }

        /* ========== Brand Intro ========== */
        .brand-intro-block {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 32px 28px;
            box-shadow: var(--shadow-card);
        }

        .brand-intro-block .brand-intro-text {
            font-size: 15px;
            line-height: 1.85;
            color: var(--text-secondary);
            margin-bottom: 18px;
        }

        .brand-intro-block .brand-intro-text:last-child {
            margin-bottom: 0;
        }

        /* ========== CTA Section ========== */
        .cta-section {
            background: rgba(245, 185, 66, 0.08);
            border: 1px solid rgba(245, 185, 66, 0.35);
            border-radius: var(--radius-card);
            padding: 48px 32px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: "";
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(245, 185, 66, 0.04);
            pointer-events: none;
        }

        .cta-section .cta-title {
            font-size: clamp(22px, 3vw, 28px);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .cta-section .cta-sub {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 28px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }

        .cta-section .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 575.98px) {
            .cta-section {
                padding: 36px 20px;
            }
            .cta-section .cta-buttons .btn {
                width: 100%;
                justify-content: center;
            }
        }

        /* ========== Footer ========== */
        .site-footer {
            background: var(--bg-surface);
            border-top: 1px solid var(--border-subtle);
            padding: 56px 0 0;
            margin-top: 56px;
        }

        .footer-columns {
            padding-bottom: 36px;
            border-bottom: 1px solid var(--border-subtle);
        }

        .footer-brand-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-brand-name .logo-mark-sm {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            background: rgba(245, 185, 66, 0.15);
            border: 1px solid rgba(245, 185, 66, 0.35);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-score);
            font-size: 13px;
        }

        .footer-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 300px;
        }

        .footer-heading {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            margin-bottom: 14px;
            text-transform: uppercase;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            font-size: 13px;
            color: var(--text-muted);
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: var(--text-primary);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .footer-bottom-bar {
            padding: 18px 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .footer-bottom-bar a {
            color: var(--text-muted);
            transition: color 0.2s ease;
        }

        .footer-bottom-bar a:hover {
            color: var(--text-primary);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        @media (max-width: 767.98px) {
            .site-footer {
                padding-top: 40px;
            }
            .footer-bottom-bar {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
        }

        /* ========== Utility ========== */
        .text-accent-score {
            color: var(--accent-score);
        }
        .text-accent-positive {
            color: var(--accent-positive);
        }
        .text-accent-negative {
            color: var(--accent-negative);
        }
        .font-mono {
            font-family: var(--font-mono);
        }
        .section-gap-sm {
            height: 8px;
        }
        .section-gap-md {
            height: 16px;
        }

        /* ========== Bootstrap Overrides ========== */
        .accordion-button {
            background-color: var(--bg-surface);
        }

        .accordion-item {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-subtle);
        }

        .breadcrumb {
            background: transparent;
            padding: 0;
            margin-bottom: 0;
            font-size: 13px;
        }

        .breadcrumb-item a {
            color: var(--text-muted);
        }

        .breadcrumb-item a:hover {
            color: var(--text-primary);
        }

        .breadcrumb-item.active {
            color: var(--accent-score);
        }

        .breadcrumb-item+.breadcrumb-item::before {
            content: "/";
            color: var(--text-muted);
            padding: 0 6px;
        }

        .btn {
            border-radius: var(--radius-btn);
            font-weight: 600;
            letter-spacing: 0.2px;
            transition: all 0.25s ease;
        }

        .btn:focus {
            box-shadow: none;
        }

        /* Responsive text adjustments */
        @media (max-width: 575.98px) {
            body {
                font-size: 14px;
            }
            .section-desc {
                font-size: 14px;
            }
            .info-card,
            .pain-card,
            .testimonial-card,
            .audience-card {
                padding: 18px 16px;
            }
            .info-card .card-title-sm,
            .pain-card .pain-title {
                font-size: 16px;
            }
        }

/* roulang page: category2 */
:root {
      --bg-page: #15181d;
      --bg-surface: #1d2128;
      --bg-surface-2: #242a33;
      --border-subtle: #333a45;
      --text-primary: #f2f5f9;
      --text-secondary: #a7b1bd;
      --text-muted: #6e7885;
      --accent-score: #f5b942;
      --accent-score-hover: #ffc857;
      --accent-score-active: #d99d2e;
      --accent-positive: #3ec6a8;
      --accent-negative: #e06c5b;
      --accent-link: #6ca8ff;
      --radius-card: 12px;
      --radius-btn: 8px;
      --radius-badge: 4px;
      --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.28);
      --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.38);
      --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system, sans-serif;
      --font-mono: "DIN Alternate", "Bebas Neue", "Consolas", "Monaco", "Roboto Mono", monospace;
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      background-color: var(--bg-page);
      color: var(--text-primary);
      font-family: var(--font-sans);
      font-size: 15px;
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }
    a {
      color: var(--accent-link);
      text-decoration: none;
      transition: color 0.2s ease, text-decoration-color 0.2s ease;
    }
    a:hover {
      color: #8dbaff;
      text-decoration: underline;
      text-decoration-color: rgba(108, 168, 255, 0.5);
      text-underline-offset: 3px;
    }
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    .btn:focus-visible {
      outline: 2px solid rgba(245, 185, 66, 0.45);
      outline-offset: 2px;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .container {
      max-width: 1200px;
    }
    .container-fluid {
      max-width: 1400px;
    }
    /* ========== Header / Nav ========== */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1050;
      background: rgba(21, 24, 29, 0.82);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid transparent;
      transition: border-color 0.25s ease, background 0.25s ease;
      min-height: 68px;
    }
    .site-header.scrolled {
      background: rgba(21, 24, 29, 0.94);
      border-bottom-color: var(--border-subtle);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 68px;
      gap: 24px;
      flex-wrap: wrap;
      padding: 8px 0;
    }
    .brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 700;
      color: var(--text-primary);
      letter-spacing: 0.5px;
      white-space: nowrap;
      text-decoration: none;
    }
    .brand-logo:hover {
      color: var(--text-primary);
      text-decoration: none;
    }
    .brand-logo .logo-mark {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: linear-gradient(135deg, rgba(245, 185, 66, 0.22), rgba(245, 185, 66, 0.06));
      border: 1px solid rgba(245, 185, 66, 0.4);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-score);
      font-size: 18px;
      flex-shrink: 0;
    }
    .main-nav {
      display: flex;
      align-items: center;
      gap: 4px;
      flex: 1;
      justify-content: center;
    }
    .main-nav .nav-link {
      color: var(--text-secondary);
      font-size: 14px;
      font-weight: 500;
      padding: 8px 14px;
      border-radius: 6px;
      transition: color 0.2s ease, background 0.2s ease;
      white-space: nowrap;
      position: relative;
    }
    .main-nav .nav-link:hover {
      color: var(--text-primary);
      background: rgba(255, 255, 255, 0.05);
      text-decoration: none;
    }
    .main-nav .nav-link.active {
      color: var(--accent-score);
      background: rgba(245, 185, 66, 0.08);
    }
    .main-nav .nav-link.active::after {
      content: "";
      position: absolute;
      bottom: 2px;
      left: 50%;
      transform: translateX(-50%);
      width: 16px;
      height: 2px;
      background: var(--accent-score);
      border-radius: 2px;
    }
    .navbar-toggler {
      border: 1px solid var(--border-subtle);
      border-radius: 8px;
      padding: 6px 10px;
      background: transparent;
      color: var(--text-secondary);
    }
    .navbar-toggler:focus {
      outline: 2px solid rgba(245, 185, 66, 0.45);
      outline-offset: 2px;
      box-shadow: none;
    }
    .navbar-toggler .fa-bars {
      font-size: 18px;
    }
    .lang-switch {
      display: flex;
      align-items: center;
      border: 1px solid var(--border-subtle);
      border-radius: 20px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .lang-option {
      border: none;
      background: transparent;
      color: var(--text-secondary);
      font-size: 12px;
      font-weight: 500;
      padding: 6px 14px;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease;
    }
    .lang-option.active {
      background: rgba(245, 185, 66, 0.15);
      color: var(--accent-score);
    }
    .lang-option:hover {
      color: var(--text-primary);
    }
    @media (max-width: 991.98px) {
      .header-inner {
        flex-wrap: nowrap;
      }
      .main-nav {
        justify-content: flex-start;
        flex-direction: column;
        gap: 2px;
        align-items: stretch;
        padding: 16px 0 8px;
      }
      .main-nav .nav-link {
        padding: 10px 14px;
        font-size: 15px;
        text-align: left;
      }
      .main-nav .nav-link.active::after {
        display: none;
      }
      .navbar-collapse {
        border-top: 1px solid var(--border-subtle);
        margin-top: 8px;
      }
      .lang-switch {
        margin: 12px 0 8px;
        align-self: flex-start;
      }
    }
    /* ========== Section General ========== */
    .section-block {
      padding: 56px 0;
    }
    .section-block.section-alt {
      background: var(--bg-surface);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
    }
    .section-title {
      font-size: 26px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 12px;
      letter-spacing: 0.5px;
    }
    .section-subtitle {
      font-size: 15px;
      color: var(--text-secondary);
      margin-bottom: 32px;
      max-width: 720px;
    }
    .text-accent-score {
      color: var(--accent-score);
    }
    .text-accent-positive {
      color: var(--accent-positive);
    }
    .text-accent-negative {
      color: var(--accent-negative);
    }
    .fw-mono {
      font-family: var(--font-mono);
    }
    /* ========== Breadcrumb ========== */
    .breadcrumb-section {
      padding: 32px 0 16px;
      background: transparent;
    }
    .breadcrumb-custom {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 16px;
      flex-wrap: wrap;
    }
    .breadcrumb-custom a {
      color: var(--text-secondary);
      text-decoration: none;
    }
    .breadcrumb-custom a:hover {
      color: var(--accent-score);
    }
    .breadcrumb-custom .separator {
      color: var(--text-muted);
    }
    .page-title-group {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }
    .page-title-group h1 {
      font-size: 32px;
      font-weight: 700;
      color: var(--text-primary);
      margin: 0;
      letter-spacing: 0.5px;
    }
    .page-cover-img {
      width: 180px;
      height: 120px;
      border-radius: var(--radius-card);
      object-fit: cover;
      border: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-card);
    }
    @media (max-width: 576px) {
      .page-title-group h1 {
        font-size: 26px;
      }
      .page-cover-img {
        width: 120px;
        height: 80px;
      }
    }
    /* ========== Team Cards ========== */
    .team-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-card);
      padding: 20px;
      height: 100%;
      transition: box-shadow 0.25s ease, border-color 0.25s ease;
    }
    .team-card:hover {
      box-shadow: var(--shadow-card-hover);
      border-color: rgba(245, 185, 66, 0.3);
    }
    .team-card .team-name {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 4px;
    }
    .team-card .team-region {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }
    .winrate-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }
    .winrate-label {
      font-size: 13px;
      color: var(--text-secondary);
      width: 36px;
      flex-shrink: 0;
    }
    .progress {
      flex: 1;
      height: 8px;
      background-color: var(--bg-surface-2);
      border-radius: 4px;
      overflow: hidden;
    }
    .progress-bar {
      background-color: var(--accent-positive);
      border-radius: 4px;
      transition: width 0.6s ease;
    }
    .winrate-value {
      font-family: var(--font-mono);
      font-weight: 700;
      font-size: 16px;
      color: var(--accent-positive);
      width: 48px;
      text-align: right;
    }
    .recent-form {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 12px;
      flex-wrap: wrap;
    }
    .recent-label {
      font-size: 12px;
      color: var(--text-muted);
      margin-right: 4px;
    }
    .form-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      display: inline-block;
    }
    .form-dot.win {
      background-color: var(--accent-positive);
    }
    .form-dot.loss {
      background-color: var(--accent-negative);
    }
    .core-player {
      font-size: 13px;
      color: var(--text-secondary);
      border-top: 1px solid var(--border-subtle);
      padding-top: 12px;
    }
    .core-player span {
      color: var(--accent-score);
      font-weight: 600;
      margin-left: 6px;
    }
    /* ========== Rank Movement ========== */
    .rank-movement-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .rank-movement-item {
      display: flex;
      align-items: center;
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: 8px;
      padding: 12px 16px;
      transition: background 0.2s ease;
    }
    .rank-movement-item:hover {
      background: var(--bg-surface-2);
    }
    .rank-movement-item .rank-badge {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(245, 185, 66, 0.1);
      color: var(--accent-score);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-mono);
      font-weight: 700;
      font-size: 16px;
      margin-right: 14px;
      flex-shrink: 0;
    }
    .rank-movement-item .team-info {
      flex: 1;
    }
    .rank-movement-item .team-info .team-name-sm {
      font-size: 15px;
      font-weight: 600;
      color: var(--text-primary);
    }
    .rank-movement-item .team-info .change-desc {
      font-size: 12px;
      color: var(--text-muted);
    }
    .rank-movement-item .change-indicator {
      font-size: 14px;
      font-weight: 700;
      font-family: var(--font-mono);
    }
    .change-up {
      color: var(--accent-positive);
    }
    .change-down {
      color: var(--accent-negative);
    }
    .change-flat {
      color: var(--text-muted);
    }
    /* ========== Data Dimension ========== */
    .data-dimension-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-left: 3px solid var(--accent-score);
      border-radius: var(--radius-card);
      padding: 20px 24px;
    }
    .data-dimension-box p {
      margin-bottom: 8px;
      color: var(--text-secondary);
      font-size: 14px;
    }
    .data-dimension-box p:last-child {
      margin-bottom: 0;
    }
    /* ========== Tag Cloud ========== */
    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .tag-cloud .tag-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: 20px;
      padding: 6px 16px;
      font-size: 13px;
      color: var(--text-secondary);
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
      cursor: default;
      user-select: none;
    }
    .tag-cloud .tag-item:hover {
      background: var(--bg-surface-2);
      color: var(--text-primary);
      border-color: rgba(245, 185, 66, 0.4);
    }
    /* ========== Focus Teams ========== */
    .focus-team-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-card);
      padding: 20px;
      height: 100%;
      transition: box-shadow 0.25s ease;
    }
    .focus-team-card:hover {
      box-shadow: var(--shadow-card);
    }
    .focus-team-card .focus-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 8px;
    }
    .focus-team-card .focus-desc {
      font-size: 14px;
      color: var(--text-secondary);
    }
    /* ========== CTA ========== */
    .cta-section {
      background: linear-gradient(135deg, rgba(245, 185, 66, 0.08), rgba(245, 185, 66, 0.02));
      border: 1px solid rgba(245, 185, 66, 0.2);
      border-radius: var(--radius-card);
      padding: 40px 32px;
      text-align: center;
    }
    .cta-section h2 {
      font-size: 24px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 12px;
    }
    .cta-section p {
      color: var(--text-secondary);
      margin-bottom: 24px;
    }
    .btn-custom-primary {
      background: var(--accent-score);
      color: #15181d;
      border: none;
      border-radius: var(--radius-btn);
      padding: 10px 24px;
      font-weight: 600;
      font-size: 15px;
      transition: background 0.2s ease, transform 0.1s ease;
    }
    .btn-custom-primary:hover {
      background: var(--accent-score-hover);
      color: #15181d;
      transform: translateY(-1px);
    }
    .btn-custom-primary:active {
      background: var(--accent-score-active);
      transform: translateY(0);
    }
    .btn-custom-secondary {
      background: transparent;
      color: var(--text-primary);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-btn);
      padding: 10px 24px;
      font-weight: 600;
      font-size: 15px;
      transition: background 0.2s ease, border-color 0.2s ease;
    }
    .btn-custom-secondary:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: var(--text-muted);
      color: var(--text-primary);
    }
    /* ========== Footer ========== */
    .site-footer {
      background: var(--bg-surface);
      border-top: 1px solid var(--border-subtle);
      padding: 48px 0 24px;
      margin-top: 40px;
    }
    .footer-brand-name {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-primary);
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
    }
    .logo-mark-sm {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      background: rgba(245, 185, 66, 0.15);
      border: 1px solid rgba(245, 185, 66, 0.4);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-score);
      font-size: 14px;
    }
    .footer-desc {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.7;
    }
    .footer-heading {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 14px;
    }
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links li {
      margin-bottom: 8px;
    }
    .footer-links a {
      color: var(--text-secondary);
      font-size: 13px;
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .footer-links a:hover {
      color: var(--accent-score);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .footer-bottom-bar {
      border-top: 1px solid var(--border-subtle);
      margin-top: 32px;
      padding-top: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 12px;
      color: var(--text-muted);
    }
    .footer-bottom-bar a {
      color: var(--text-secondary);
      text-decoration: none;
    }
    .footer-bottom-bar a:hover {
      color: var(--accent-score);
      text-decoration: underline;
    }
    @media (max-width: 768px) {
      .section-block {
        padding: 40px 0;
      }
      .page-title-group {
        flex-direction: column;
        align-items: flex-start;
      }
      .cta-section {
        padding: 28px 20px;
      }
      .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
      }
    }

/* roulang page: category1 */
:root {
            --bg-page: #15181d;
            --bg-surface: #1d2128;
            --bg-surface-2: #242a33;
            --border-subtle: #333a45;
            --text-primary: #f2f5f9;
            --text-secondary: #a7b1bd;
            --text-muted: #6e7885;
            --accent-score: #f5b942;
            --accent-score-hover: #ffc857;
            --accent-score-active: #d99d2e;
            --accent-positive: #3ec6a8;
            --accent-negative: #e06c5b;
            --accent-link: #6ca8ff;
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-badge: 4px;
            --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.28);
            --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.38);
            --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system, sans-serif;
            --font-mono: "DIN Alternate", "Bebas Neue", "Consolas", "Monaco", "Roboto Mono", monospace;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--bg-page);
            color: var(--text-primary);
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-link);
            text-decoration: none;
            transition: color 0.2s ease, text-decoration-color 0.2s ease;
        }
        a:hover {
            color: #8dbaff;
            text-decoration: underline;
            text-decoration-color: rgba(108, 168, 255, 0.5);
            text-underline-offset: 3px;
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        .btn:focus-visible {
            outline: 2px solid rgba(245, 185, 66, 0.45);
            outline-offset: 2px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
        }
        .container-fluid {
            max-width: 1400px;
        }

        /* ========== Header / Nav ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: rgba(21, 24, 29, 0.82);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid transparent;
            transition: border-color 0.25s ease, background 0.25s ease;
            min-height: 68px;
        }
        .site-header.scrolled {
            background: rgba(21, 24, 29, 0.94);
            border-bottom-color: var(--border-subtle);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 68px;
            gap: 24px;
            flex-wrap: wrap;
            padding: 8px 0;
        }
        .brand-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            white-space: nowrap;
            text-decoration: none;
        }
        .brand-logo:hover {
            color: var(--text-primary);
            text-decoration: none;
        }
        .brand-logo .logo-mark {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(245, 185, 66, 0.22), rgba(245, 185, 66, 0.06));
            border: 1px solid rgba(245, 185, 66, 0.4);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-score);
            font-size: 18px;
            flex-shrink: 0;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex: 1;
            justify-content: center;
        }
        .main-nav .nav-link {
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 6px;
            transition: color 0.2s ease, background 0.2s ease;
            white-space: nowrap;
            position: relative;
        }
        .main-nav .nav-link:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.05);
            text-decoration: none;
        }
        .main-nav .nav-link.active {
            color: var(--accent-score);
            background: rgba(245, 185, 66, 0.08);
        }
        .main-nav .nav-link.active::after {
            content: "";
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 2px;
            background: var(--accent-score);
            border-radius: 2px;
        }
        .navbar-toggler {
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 6px 10px;
            background: transparent;
            color: var(--text-secondary);
            box-shadow: none;
        }
        .navbar-toggler:focus {
            outline: 2px solid rgba(245, 185, 66, 0.45);
            outline-offset: 2px;
            box-shadow: none;
        }
        .navbar-toggler .fa-bars {
            font-size: 18px;
        }
        .lang-switch {
            display: inline-flex;
            align-items: center;
            gap: 2px;
            border: 1px solid var(--border-subtle);
            border-radius: 999px;
            padding: 3px;
            min-width: 100px;
            height: 36px;
            flex-shrink: 0;
        }
        .lang-switch .lang-option {
            flex: 1;
            height: 28px;
            border-radius: 999px;
            border: none;
            background: transparent;
            color: var(--text-muted);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.3px;
            transition: background 0.2s ease, color 0.2s ease;
        }
        .lang-switch .lang-option.active {
            background: rgba(245, 185, 66, 0.16);
            color: var(--accent-score);
        }
        .lang-switch .lang-option:hover {
            color: var(--text-primary);
        }

        /* ========== Breadcrumb ========== */
        .breadcrumb-section {
            padding: 28px 0 0;
            background: transparent;
        }
        .breadcrumb-custom {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            list-style: none;
            padding: 0;
            margin: 0 0 8px;
            font-size: 13px;
            color: var(--text-muted);
        }
        .breadcrumb-custom li {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .breadcrumb-custom li:not(:last-child)::after {
            content: "/";
            color: var(--text-muted);
            opacity: 0.6;
        }
        .breadcrumb-custom a {
            color: var(--text-muted);
            transition: color 0.2s ease;
        }
        .breadcrumb-custom a:hover {
            color: var(--accent-score);
            text-decoration: none;
        }
        .breadcrumb-custom .current {
            color: var(--accent-score);
            font-weight: 600;
        }

        /* ========== Page Header / H1 ========== */
        .page-hero {
            position: relative;
            padding: 40px 0 48px;
            background: radial-gradient(circle at 20% 30%, rgba(245, 185, 66, 0.06), transparent 55%),
                        radial-gradient(circle at 80% 65%, rgba(108, 168, 255, 0.04), transparent 50%),
                        var(--bg-page);
            border-bottom: 1px solid var(--border-subtle);
            overflow: hidden;
        }
        .page-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/8a06d8fba7c8f313.png');
            background-size: cover;
            background-position: center;
            opacity: 0.18;
            pointer-events: none;
        }
        .page-hero .page-hero-inner {
            position: relative;
            z-index: 1;
            display: flex;
            flex-wrap: wrap;
            align-items: flex-end;
            justify-content: space-between;
            gap: 20px;
        }
        .page-hero .page-title-wrap h1 {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: 0.5px;
            margin: 0 0 10px;
            color: var(--text-primary);
        }
        .page-hero .page-title-wrap h1 .score-highlight {
            color: var(--accent-score);
        }
        .page-hero .page-sub {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 620px;
            margin: 0;
            line-height: 1.75;
        }
        .page-hero .hero-meta {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .page-hero .hero-meta .meta-item {
            text-align: center;
        }
        .page-hero .hero-meta .meta-num {
            font-family: var(--font-mono);
            font-size: 25px;
            font-weight: 700;
            color: var(--accent-score);
            line-height: 1.2;
        }
        .page-hero .hero-meta .meta-label {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        /* ========== Section Common ========== */
        .content-section {
            padding: 56px 0;
        }
        .content-section.section-alt {
            background: var(--bg-surface);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        .section-heading {
            margin-bottom: 28px;
        }
        .section-heading h2 {
            font-size: 26px;
            font-weight: 700;
            line-height: 1.3;
            margin: 0 0 8px;
            color: var(--text-primary);
        }
        .section-heading h2 .accent {
            color: var(--accent-score);
        }
        .section-heading p {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.7;
        }

        /* ========== Score Table ========== */
        .score-table-wrap {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }
        .score-table-toolbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            padding: 16px 20px;
            border-bottom: 1px solid var(--border-subtle);
            background: rgba(255, 255, 255, 0.02);
        }
        .score-table-toolbar .toolbar-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .score-table-toolbar .toolbar-title .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-positive);
            animation: livePulse 2s ease-in-out infinite;
        }
        @keyframes livePulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.35; }
        }
        .score-table-toolbar .toolbar-note {
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .score-table-toolbar .toolbar-note i {
            color: var(--accent-score);
            font-size: 12px;
        }
        .score-table {
            width: 100%;
            border-collapse: collapse;
            margin: 0;
        }
        .score-table thead th {
            padding: 12px 16px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.3px;
            text-transform: uppercase;
            color: var(--text-muted);
            background: rgba(255, 255, 255, 0.02);
            border-bottom: 1px solid var(--border-subtle);
            white-space: nowrap;
            text-align: left;
        }
        .score-table thead th:nth-child(3),
        .score-table thead th:nth-child(5) {
            text-align: center;
        }
        .score-table tbody td {
            padding: 14px 16px;
            font-size: 14px;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border-subtle);
            vertical-align: middle;
        }
        .score-table tbody tr {
            transition: background 0.2s ease;
        }
        .score-table tbody tr:hover {
            background: var(--bg-surface-2);
        }
        .score-table tbody tr:last-child td {
            border-bottom: none;
        }
        .score-table .match-event {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            white-space: nowrap;
        }
        .score-table .match-event .event-tag {
            display: inline-block;
            padding: 2px 8px;
            border-radius: var(--radius-badge);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.2px;
            background: rgba(108, 168, 255, 0.1);
            color: var(--accent-link);
            border: 1px solid rgba(108, 168, 255, 0.25);
        }
        .score-table .team-names {
            font-weight: 600;
            color: var(--text-primary);
            white-space: nowrap;
            font-size: 14px;
        }
        .score-table .team-names .vs {
            color: var(--text-muted);
            font-weight: 400;
            margin: 0 6px;
            font-size: 12px;
        }
        .score-table .score-display {
            font-family: var(--font-mono);
            font-size: 20px;
            font-weight: 700;
            color: var(--accent-score);
            text-align: center;
            letter-spacing: 0.5px;
            min-width: 52px;
            display: inline-block;
        }
        .score-table .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: var(--radius-badge);
            white-space: nowrap;
        }
        .status-badge .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .status-badge.live {
            background: rgba(62, 198, 168, 0.1);
            color: var(--accent-positive);
            border: 1px solid rgba(62, 198, 168, 0.3);
        }
        .status-badge.live .status-dot {
            background: var(--accent-positive);
            animation: livePulse 2s ease-in-out infinite;
        }
        .status-badge.finished {
            background: rgba(110, 120, 133, 0.1);
            color: var(--text-muted);
            border: 1px solid rgba(110, 120, 133, 0.25);
        }
        .status-badge.finished .status-dot {
            background: var(--text-muted);
        }
        .status-badge.upcoming {
            background: rgba(245, 185, 66, 0.08);
            color: var(--accent-score);
            border: 1px solid rgba(245, 185, 66, 0.3);
        }
        .status-badge.upcoming .status-dot {
            background: var(--accent-score);
        }
        .score-table .match-time {
            font-family: var(--font-mono);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            text-align: center;
            white-space: nowrap;
        }
        .score-table-wrap .table-responsive {
            border-radius: 0 0 var(--radius-card) var(--radius-card);
        }
        .score-table-wrap .table-responsive::-webkit-scrollbar {
            height: 6px;
        }
        .score-table-wrap .table-responsive::-webkit-scrollbar-track {
            background: var(--bg-surface);
        }
        .score-table-wrap .table-responsive::-webkit-scrollbar-thumb {
            background: var(--border-subtle);
            border-radius: 3px;
        }

        /* ========== Stats Mini ========== */
        .stats-mini-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .stats-mini-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 20px;
            text-align: center;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
        }
        .stats-mini-card:hover {
            border-color: rgba(245, 185, 66, 0.3);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .stats-mini-card .stat-num {
            font-family: var(--font-mono);
            font-size: 32px;
            font-weight: 700;
            color: var(--accent-score);
            line-height: 1.2;
            letter-spacing: 0.5px;
        }
        .stats-mini-card .stat-num.positive {
            color: var(--accent-positive);
        }
        .stats-mini-card .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
            margin-top: 4px;
            letter-spacing: 0.3px;
        }
        .stats-mini-card .stat-sub {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 2px;
            opacity: 0.8;
        }

        /* ========== Featured Matches ========== */
        .featured-matches-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .featured-match-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
        }
        .featured-match-card:hover {
            border-color: rgba(245, 185, 66, 0.3);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .featured-match-card .fmc-img {
            height: 140px;
            overflow: hidden;
            position: relative;
        }
        .featured-match-card .fmc-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .featured-match-card:hover .fmc-img img {
            transform: scale(1.04);
        }
        .featured-match-card .fmc-img .fmc-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(21,24,29,0.1) 0%, rgba(21,24,29,0.7) 100%);
            display: flex;
            align-items: flex-end;
            padding: 12px 16px;
        }
        .featured-match-card .fmc-img .fmc-event-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
            letter-spacing: 0.3px;
        }
        .featured-match-card .fmc-body {
            padding: 16px 18px 18px;
        }
        .featured-match-card .fmc-teams {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-weight: 600;
            font-size: 15px;
            color: var(--text-primary);
            margin-bottom: 10px;
        }
        .featured-match-card .fmc-teams .fmc-vs {
            color: var(--text-muted);
            font-weight: 400;
            font-size: 12px;
        }
        .featured-match-card .fmc-info {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 13px;
            color: var(--text-secondary);
        }
        .featured-match-card .fmc-info .fmc-status {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-weight: 600;
        }
        .featured-match-card .fmc-info .fmc-status .dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
        }
        .featured-match-card .fmc-info .fmc-status.live .dot {
            background: var(--accent-positive);
        }
        .featured-match-card .fmc-info .fmc-status.upcoming .dot {
            background: var(--accent-score);
        }
        .featured-match-card .fmc-info .fmc-time {
            font-family: var(--font-mono);
            font-weight: 500;
        }

        /* ========== Coverage Strip ========== */
        .coverage-strip {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 24px 28px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px 32px;
            box-shadow: var(--shadow-card);
        }
        .coverage-strip .coverage-icon {
            width: 52px;
            height: 52px;
            border-radius: var(--radius-card);
            background: rgba(245, 185, 66, 0.1);
            border: 1px solid rgba(245, 185, 66, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-score);
            font-size: 22px;
            flex-shrink: 0;
        }
        .coverage-strip .coverage-text {
            flex: 1;
            min-width: 220px;
        }
        .coverage-strip .coverage-text h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0 0 4px;
        }
        .coverage-strip .coverage-text p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.65;
        }
        .coverage-strip .coverage-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .coverage-strip .coverage-tags .cov-tag {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
            color: var(--text-secondary);
            white-space: nowrap;
        }

        /* ========== Data Note ========== */
        .data-note {
            background: rgba(245, 185, 66, 0.04);
            border: 1px solid rgba(245, 185, 66, 0.2);
            border-radius: var(--radius-card);
            padding: 20px 24px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
        .data-note .note-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(245, 185, 66, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-score);
            font-size: 16px;
            flex-shrink: 0;
        }
        .data-note .note-body h3 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0 0 4px;
        }
        .data-note .note-body p {
            font-size: 13px;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.7;
        }
        .data-note .note-body .note-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 8px;
            font-size: 12px;
            color: var(--text-muted);
        }
        .data-note .note-body .note-meta i {
            color: var(--accent-positive);
            margin-right: 4px;
        }

        /* ========== CTA Section ========== */
        .cta-panel {
            background: linear-gradient(135deg, rgba(245, 185, 66, 0.1), rgba(245, 185, 66, 0.03));
            border: 1px solid rgba(245, 185, 66, 0.3);
            border-radius: var(--radius-card);
            padding: 36px 32px;
            text-align: center;
            box-shadow: var(--shadow-card);
        }
        .cta-panel h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 8px;
        }
        .cta-panel h2 .accent {
            color: var(--accent-score);
        }
        .cta-panel p {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0 0 22px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }
        .cta-panel .cta-btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        /* ========== Buttons ========== */
        .btn-score {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 24px;
            border-radius: var(--radius-btn);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.2px;
            border: none;
            cursor: pointer;
            transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease, color 0.2s ease;
            text-decoration: none;
        }
        .btn-score.btn-primary-custom {
            background: var(--accent-score);
            color: #15181d;
        }
        .btn-score.btn-primary-custom:hover {
            background: var(--accent-score-hover);
            color: #15181d;
            text-decoration: none;
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(245, 185, 66, 0.3);
        }
        .btn-score.btn-primary-custom:active {
            background: var(--accent-score-active);
            transform: translateY(0);
            box-shadow: none;
        }
        .btn-score.btn-outline-custom {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-subtle);
        }
        .btn-score.btn-outline-custom:hover {
            background: rgba(255, 255, 255, 0.05);
            text-decoration: none;
            border-color: rgba(245, 185, 66, 0.35);
            transform: translateY(-1px);
        }
        .btn-score.btn-outline-custom:active {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(0);
        }

        /* ========== Footer ========== */
        .site-footer {
            background: #111418;
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 0;
            margin-top: 0;
        }
        .site-footer .footer-brand-name {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        .site-footer .logo-mark-sm {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            background: rgba(245, 185, 66, 0.16);
            border: 1px solid rgba(245, 185, 66, 0.35);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-score);
            font-size: 13px;
            flex-shrink: 0;
        }
        .site-footer .footer-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.75;
            max-width: 360px;
        }
        .site-footer .footer-heading {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            letter-spacing: 0.3px;
            margin-bottom: 14px;
        }
        .site-footer .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer .footer-links li {
            margin-bottom: 8px;
        }
        .site-footer .footer-links a {
            font-size: 13px;
            color: var(--text-muted);
            transition: color 0.2s ease, padding-left 0.2s ease;
            text-decoration: none;
        }
        .site-footer .footer-links a:hover {
            color: var(--accent-score);
            text-decoration: underline;
            text-underline-offset: 3px;
            padding-left: 2px;
        }
        .site-footer .footer-bottom-bar {
            border-top: 1px solid var(--border-subtle);
            padding: 18px 0;
            margin-top: 36px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            font-size: 12px;
            color: var(--text-muted);
        }
        .site-footer .footer-bottom-bar a {
            color: var(--text-muted);
            text-decoration: none;
        }
        .site-footer .footer-bottom-bar a:hover {
            color: var(--accent-score);
            text-decoration: underline;
        }

        /* ========== Responsive ========== */
        @media (max-width: 991.98px) {
            .header-inner {
                flex-wrap: wrap;
                gap: 12px;
            }
            .main-nav {
                flex-direction: column;
                align-items: stretch;
                gap: 2px;
                padding: 12px 0 8px;
            }
            .main-nav .nav-link {
                padding: 10px 14px;
                font-size: 15px;
                text-align: left;
            }
            .main-nav .nav-link.active::after {
                display: none;
            }
            .navbar-collapse {
                border-top: 1px solid var(--border-subtle);
                margin-top: 8px;
            }
            .lang-switch {
                margin-top: 8px;
            }
            .page-hero {
                padding: 32px 0 36px;
            }
            .page-hero .page-title-wrap h1 {
                font-size: 30px;
            }
            .page-hero .hero-meta {
                gap: 20px;
            }
            .page-hero .hero-meta .meta-num {
                font-size: 22px;
            }
            .featured-matches-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 767.98px) {
            .header-inner {
                min-height: 56px;
                padding: 6px 0;
            }
            .brand-logo {
                font-size: 18px;
            }
            .brand-logo .logo-mark {
                width: 32px;
                height: 32px;
                font-size: 15px;
            }
            .page-hero {
                padding: 24px 0 28px;
            }
            .page-hero .page-title-wrap h1 {
                font-size: 26px;
            }
            .page-hero .hero-meta {
                gap: 16px;
            }
            .page-hero .hero-meta .meta-num {
                font-size: 20px;
            }
            .content-section {
                padding: 48px 0;
            }
            .section-heading h2 {
                font-size: 22px;
            }
            .stats-mini-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .featured-matches-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .score-table-wrap {
                border-radius: 10px;
            }
            .score-table-toolbar {
                padding: 12px 14px;
                flex-direction: column;
                align-items: flex-start;
            }
            .cta-panel {
                padding: 28px 16px;
            }
            .cta-panel h2 {
                font-size: 20px;
            }
            .coverage-strip {
                padding: 18px 16px;
                flex-direction: column;
                align-items: flex-start;
            }
            .data-note {
                padding: 16px 14px;
                flex-direction: column;
                align-items: flex-start;
            }
            .site-footer {
                padding: 32px 0 0;
            }
            .site-footer .footer-bottom-bar {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }
        }
        @media (max-width: 575.98px) {
            .page-hero .page-title-wrap h1 {
                font-size: 24px;
            }
            .section-heading h2 {
                font-size: 20px;
            }
            .btn-score {
                padding: 10px 18px;
                font-size: 13px;
                width: 100%;
                justify-content: center;
            }
            .cta-btn-group {
                flex-direction: column;
                width: 100%;
            }
            .cta-btn-group .btn-score {
                width: 100%;
            }
            .score-table thead th,
            .score-table tbody td {
                padding: 10px 12px;
                font-size: 12px;
            }
            .score-table .score-display {
                font-size: 17px;
                min-width: 42px;
            }
            .coverage-strip .coverage-tags .cov-tag {
                font-size: 11px;
                padding: 3px 8px;
            }
        }

/* roulang page: category3 */
:root {
            --bg-page: #15181d;
            --bg-surface: #1d2128;
            --bg-surface-2: #242a33;
            --border-subtle: #333a45;
            --text-primary: #f2f5f9;
            --text-secondary: #a7b1bd;
            --text-muted: #6e7885;
            --accent-score: #f5b942;
            --accent-score-hover: #ffc857;
            --accent-score-active: #d99d2e;
            --accent-positive: #3ec6a8;
            --accent-negative: #e06c5b;
            --accent-link: #6ca8ff;
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-badge: 4px;
            --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.28);
            --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.38);
            --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system, sans-serif;
            --font-mono: "DIN Alternate", "Bebas Neue", "Consolas", "Monaco", "Roboto Mono", monospace;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--bg-page);
            color: var(--text-primary);
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-link);
            text-decoration: none;
            transition: color 0.2s ease, text-decoration-color 0.2s ease;
        }
        a:hover {
            color: #8dbaff;
            text-decoration: underline;
            text-decoration-color: rgba(108, 168, 255, 0.5);
            text-underline-offset: 3px;
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        .btn:focus-visible {
            outline: 2px solid rgba(245, 185, 66, 0.45);
            outline-offset: 2px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
        }
        .container-fluid {
            max-width: 1400px;
        }

        /* ========== Header / Nav ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: rgba(21, 24, 29, 0.82);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid transparent;
            transition: border-color 0.25s ease, background 0.25s ease;
            min-height: 68px;
        }
        .site-header.scrolled {
            background: rgba(21, 24, 29, 0.94);
            border-bottom-color: var(--border-subtle);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 68px;
            gap: 24px;
            flex-wrap: wrap;
            padding: 8px 0;
        }
        .brand-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            white-space: nowrap;
            text-decoration: none;
        }
        .brand-logo:hover {
            color: var(--text-primary);
            text-decoration: none;
        }
        .brand-logo .logo-mark {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(245, 185, 66, 0.22), rgba(245, 185, 66, 0.06));
            border: 1px solid rgba(245, 185, 66, 0.4);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-score);
            font-size: 18px;
            flex-shrink: 0;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex: 1;
            justify-content: center;
        }
        .main-nav .nav-link {
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 6px;
            transition: color 0.2s ease, background 0.2s ease;
            white-space: nowrap;
            position: relative;
        }
        .main-nav .nav-link:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.05);
            text-decoration: none;
        }
        .main-nav .nav-link.active {
            color: var(--accent-score);
            background: rgba(245, 185, 66, 0.08);
        }
        .main-nav .nav-link.active::after {
            content: "";
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 2px;
            background: var(--accent-score);
            border-radius: 2px;
        }
        .navbar-toggler {
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 6px 10px;
            background: transparent;
            color: var(--text-secondary);
        }
        .navbar-toggler:focus {
            outline: 2px solid rgba(245, 185, 66, 0.45);
            outline-offset: 2px;
            box-shadow: none;
        }
        .navbar-toggler .fa-bars {
            font-size: 18px;
        }
        .lang-switch {
            display: flex;
            align-items: center;
            gap: 2px;
            border: 1px solid var(--border-subtle);
            border-radius: 999px;
            padding: 3px;
            background: rgba(255, 255, 255, 0.02);
            flex-shrink: 0;
        }
        .lang-option {
            border: none;
            background: transparent;
            color: var(--text-muted);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.3px;
            padding: 5px 12px;
            border-radius: 999px;
            cursor: pointer;
            transition: color 0.2s ease, background 0.2s ease;
        }
        .lang-option.active {
            background: var(--bg-surface-2);
            color: var(--text-primary);
        }
        .lang-option:hover {
            color: var(--text-primary);
        }

        /* ========== Page Header / Breadcrumb ========== */
        .page-head {
            padding: 40px 0 24px;
            border-bottom: 1px solid var(--border-subtle);
            background: rgba(21, 24, 29, 0.7);
        }
        .breadcrumb {
            margin-bottom: 12px;
            font-size: 13px;
            color: var(--text-muted);
        }
        .breadcrumb-item a {
            color: var(--text-secondary);
            text-decoration: none;
        }
        .breadcrumb-item a:hover {
            color: var(--accent-score);
            text-decoration: none;
        }
        .breadcrumb-item.active {
            color: var(--text-muted);
        }
        .breadcrumb-item + .breadcrumb-item::before {
            content: "/";
            color: var(--text-muted);
            margin: 0 8px;
        }
        .page-title {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: 0.5px;
            color: var(--text-primary);
            margin-bottom: 8px;
        }
        .page-subtitle {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 720px;
            line-height: 1.75;
        }

        /* ========== Common Section ========== */
        .section {
            padding: 56px 0;
        }
        .section-head {
            margin-bottom: 32px;
        }
        .section-title {
            font-size: 26px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-primary);
            margin-bottom: 8px;
        }
        .section-desc {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 720px;
            line-height: 1.75;
        }

        /* ========== Cards ========== */
        .surface-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 20px 24px;
            box-shadow: var(--shadow-card);
            transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
        }
        .surface-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(245, 185, 66, 0.25);
        }

        /* ========== Buttons ========== */
        .btn-primary-custom {
            background: var(--accent-score);
            color: #15181d;
            border: none;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 0.3px;
            padding: 10px 22px;
            transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
            box-shadow: 0 4px 14px rgba(245, 185, 66, 0.18);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: #15181d;
        }
        .btn-primary-custom:hover {
            background: var(--accent-score-hover);
            color: #15181d;
            text-decoration: none;
            box-shadow: 0 6px 20px rgba(245, 185, 66, 0.28);
        }
        .btn-primary-custom:active {
            background: var(--accent-score-active);
            transform: translateY(1px);
        }
        .btn-outline-custom {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0.3px;
            padding: 10px 22px;
            transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }
        .btn-outline-custom:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.2);
            color: var(--text-primary);
            text-decoration: none;
        }
        .btn-outline-custom:active {
            background: rgba(255, 255, 255, 0.08);
        }

        /* ========== Hero Card ========== */
        .hero-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 20px 24px;
            box-shadow: var(--shadow-card);
        }

        /* ========== Hero Winrate Card ========== */
        .hero-win-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 18px;
            box-shadow: var(--shadow-card);
            transition: box-shadow 0.25s ease, border-color 0.25s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .hero-win-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(245, 185, 66, 0.25);
        }
        .hero-win-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 14px;
        }
        .hero-win-avatar {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            object-fit: cover;
            border: 1px solid var(--border-subtle);
            flex-shrink: 0;
        }
        .hero-win-info {
            flex: 1;
            min-width: 0;
        }
        .hero-win-name {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.2;
        }
        .hero-win-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 6px;
        }
        .hero-tag {
            display: inline-block;
            background: rgba(108, 168, 255, 0.1);
            color: var(--accent-link);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.2px;
            padding: 3px 10px;
            border-radius: var(--radius-badge);
            border: 1px solid rgba(108, 168, 255, 0.2);
        }
        .hero-win-stats {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: auto;
        }
        .hero-stat-item {
            display: flex;
            flex-direction: column;
        }
        .hero-stat-label {
            font-size: 12px;
            color: var(--text-muted);
            letter-spacing: 0.3px;
            margin-bottom: 4px;
        }
        .hero-stat-value {
            font-family: var(--font-mono);
            font-size: 22px;
            font-weight: 700;
            color: var(--accent-score);
            line-height: 1.1;
        }
        .hero-stat-value.winrate-high {
            color: var(--accent-positive);
        }

        /* ========== Version Banner ========== */
        .version-banner {
            background: linear-gradient(135deg, rgba(245, 185, 66, 0.1), rgba(245, 185, 66, 0.03)), var(--bg-surface);
            border: 1px solid rgba(245, 185, 66, 0.3);
            border-radius: var(--radius-card);
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            box-shadow: var(--shadow-card);
        }
        .version-banner-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: rgba(245, 185, 66, 0.15);
            border: 1px solid rgba(245, 185, 66, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-score);
            font-size: 18px;
            flex-shrink: 0;
        }
        .version-banner-text {
            flex: 1;
            min-width: 200px;
        }
        .version-banner-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .version-banner-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ========== Info Strip ========== */
        .info-strip {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 20px 24px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            box-shadow: var(--shadow-card);
        }
        .info-strip-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(62, 198, 168, 0.12);
            border: 1px solid rgba(62, 198, 168, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-positive);
            font-size: 16px;
            flex-shrink: 0;
        }
        .info-strip-content {
            flex: 1;
        }
        .info-strip-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
        }
        .info-strip-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ========== FAQ ========== */
        .faq-panel {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            margin-bottom: 12px;
            overflow: hidden;
            transition: border-color 0.25s ease;
        }
        .faq-panel:hover {
            border-color: rgba(245, 185, 66, 0.2);
        }
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-size: 16px;
            font-weight: 600;
            padding: 18px 20px;
            cursor: pointer;
            text-align: left;
            transition: background 0.2s ease;
        }
        .faq-question:hover {
            background: rgba(255, 255, 255, 0.03);
        }
        .faq-question:focus-visible {
            outline: 2px solid rgba(245, 185, 66, 0.45);
            outline-offset: -2px;
        }
        .faq-icon {
            flex-shrink: 0;
            color: var(--accent-score);
            font-size: 14px;
            transition: transform 0.3s ease;
        }
        .faq-question[aria-expanded="true"] .faq-icon {
            transform: rotate(45deg);
        }
        .faq-answer {
            display: none;
            padding: 0 20px 18px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.75;
        }
        .faq-answer.show {
            display: block;
        }

        /* ========== CTA Strip ========== */
        .cta-strip {
            background: linear-gradient(135deg, rgba(245, 185, 66, 0.1), rgba(245, 185, 66, 0.03));
            border: 1px solid rgba(245, 185, 66, 0.3);
            border-radius: var(--radius-card);
            padding: 32px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }
        .cta-strip-text {
            flex: 1;
            min-width: 240px;
        }
        .cta-strip-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 6px;
        }
        .cta-strip-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        .cta-strip-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            flex-shrink: 0;
        }

        /* ========== Footer ========== */
        .site-footer {
            background: #12151a;
            border-top: 1px solid var(--border-subtle);
            padding: 56px 0 24px;
            margin-top: 40px;
        }
        .footer-brand-name {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        .logo-mark-sm {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            background: linear-gradient(135deg, rgba(245, 185, 66, 0.22), rgba(245, 185, 66, 0.06));
            border: 1px solid rgba(245, 185, 66, 0.4);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-score);
            font-size: 14px;
        }
        .footer-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 320px;
        }
        .footer-heading {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            color: var(--text-secondary);
            font-size: 13px;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .footer-links a:hover {
            color: var(--text-primary);
            text-decoration: underline;
            text-decoration-color: rgba(255, 255, 255, 0.3);
            text-underline-offset: 3px;
        }
        .footer-bottom-bar {
            border-top: 1px solid var(--border-subtle);
            margin-top: 32px;
            padding-top: 16px;
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
            justify-content: space-between;
        }
        .footer-bottom-bar a {
            color: var(--text-secondary);
            text-decoration: none;
        }
        .footer-bottom-bar a:hover {
            color: var(--text-primary);
            text-decoration: underline;
        }

        /* ========== Responsive ========== */
        @media (min-width: 992px) {
            .main-nav {
                flex-direction: row;
                gap: 4px;
                justify-content: center;
                align-items: center;
                padding: 0;
            }
            .main-nav .nav-link {
                padding: 8px 14px;
                font-size: 14px;
                text-align: center;
            }
            .main-nav .nav-link.active::after {
                display: block;
            }
            .header-inner {
                flex-wrap: nowrap;
            }
            .navbar-collapse {
                border-top: none;
                margin-top: 0;
                display: flex !important;
                flex-basis: auto;
            }
        }
        @media (max-width: 991.98px) {
            .header-inner {
                flex-wrap: nowrap;
            }
            .main-nav {
                flex-direction: column;
                gap: 2px;
                align-items: stretch;
                padding: 16px 0 8px;
            }
            .main-nav .nav-link {
                padding: 10px 14px;
                font-size: 15px;
                text-align: left;
            }
            .main-nav .nav-link.active::after {
                display: none;
            }
            .navbar-collapse {
                border-top: 1px solid var(--border-subtle);
                margin-top: 8px;
                flex-basis: 100%;
            }
            .lang-switch {
                margin-top: 12px;
                align-self: flex-start;
            }
            .page-title {
                font-size: 26px;
            }
            .section {
                padding: 48px 0;
            }
            .section-title {
                font-size: 22px;
            }
            .hero-win-card {
                padding: 16px;
            }
            .hero-win-avatar {
                width: 40px;
                height: 40px;
            }
            .hero-win-name {
                font-size: 15px;
            }
            .hero-stat-value {
                font-size: 18px;
            }
            .version-banner {
                padding: 16px 18px;
                flex-direction: column;
                align-items: flex-start;
            }
            .cta-strip {
                flex-direction: column;
                align-items: flex-start;
                padding: 24px 20px;
            }
            .cta-strip-actions {
                width: 100%;
            }
            .cta-strip-actions .btn {
                flex: 1;
                justify-content: center;
            }
        }
        @media (max-width: 575.98px) {
            .page-head {
                padding: 28px 0 18px;
            }
            .page-title {
                font-size: 22px;
            }
            .section {
                padding: 40px 0;
            }
            .section-title {
                font-size: 20px;
            }
            .surface-card {
                padding: 16px 18px;
            }
            .hero-win-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .hero-win-stats {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .hero-stat-item {
                flex-direction: row;
                align-items: baseline;
                gap: 8px;
            }
            .hero-stat-value {
                font-size: 20px;
            }
            .footer-columns {
                gap: 24px;
            }
        }

/* roulang page: category5 */
:root {
            --bg-page: #15181d;
            --bg-surface: #1d2128;
            --bg-surface-2: #242a33;
            --border-subtle: #333a45;
            --text-primary: #f2f5f9;
            --text-secondary: #a7b1bd;
            --text-muted: #6e7885;
            --accent-score: #f5b942;
            --accent-score-hover: #ffc857;
            --accent-score-active: #d99d2e;
            --accent-positive: #3ec6a8;
            --accent-negative: #e06c5b;
            --accent-link: #6ca8ff;
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-badge: 4px;
            --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.28);
            --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.38);
            --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system, sans-serif;
            --font-mono: "DIN Alternate", "Bebas Neue", "Consolas", "Monaco", "Roboto Mono", monospace;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-page);
            color: var(--text-primary);
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a {
            color: var(--accent-link);
            text-decoration: none;
            transition: color 0.2s ease, text-decoration-color 0.2s ease;
        }

        a:hover {
            color: #8dbaff;
            text-decoration: underline;
            text-decoration-color: rgba(108, 168, 255, 0.5);
            text-underline-offset: 3px;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        .btn:focus-visible {
            outline: 2px solid rgba(245, 185, 66, 0.45);
            outline-offset: 2px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1200px;
        }

        .container-fluid {
            max-width: 1400px;
        }

        /* ========== Header / Nav ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: rgba(21, 24, 29, 0.82);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid transparent;
            transition: border-color 0.25s ease, background 0.25s ease;
            min-height: 68px;
        }

        .site-header.scrolled {
            background: rgba(21, 24, 29, 0.94);
            border-bottom-color: var(--border-subtle);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 68px;
            gap: 24px;
            flex-wrap: nowrap;
            padding: 8px 0;
        }

        .brand-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            white-space: nowrap;
            text-decoration: none;
        }

        .brand-logo:hover {
            color: var(--text-primary);
            text-decoration: none;
        }

        .brand-logo .logo-mark {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(245, 185, 66, 0.22), rgba(245, 185, 66, 0.06));
            border: 1px solid rgba(245, 185, 66, 0.4);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-score);
            font-size: 18px;
            flex-shrink: 0;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex: 1;
            justify-content: center;
        }

        .main-nav .nav-link {
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 6px;
            transition: color 0.2s ease, background 0.2s ease;
            white-space: nowrap;
            position: relative;
        }

        .main-nav .nav-link:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.05);
            text-decoration: none;
        }

        .main-nav .nav-link.active {
            color: var(--accent-score);
            background: rgba(245, 185, 66, 0.08);
        }

        .main-nav .nav-link.active::after {
            content: "";
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 2px;
            background: var(--accent-score);
            border-radius: 2px;
        }

        .navbar-toggler {
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 6px 10px;
            background: transparent;
            color: var(--text-secondary);
        }

        .navbar-toggler:focus {
            outline: 2px solid rgba(245, 185, 66, 0.45);
            outline-offset: 2px;
            box-shadow: none;
        }

        .navbar-toggler .fa-bars {
            font-size: 18px;
        }

        @media (max-width: 991.98px) {
            .header-inner {
                flex-wrap: wrap;
                gap: 8px;
            }
            .main-nav {
                justify-content: flex-start;
                flex-direction: column;
                gap: 2px;
                align-items: stretch;
                padding: 16px 0 8px;
            }
            .main-nav .nav-link {
                padding: 10px 14px;
                font-size: 15px;
                text-align: left;
            }
            .main-nav .nav-link.active::after {
                display: none;
            }
            .navbar-collapse {
                border-top: 1px solid var(--border-subtle);
                margin-top: 8px;
                padding-top: 8px;
            }
            .lang-switch {
                margin-top: 12px;
                margin-bottom: 8px;
                align-self: flex-start;
            }
        }

        .lang-switch {
            display: inline-flex;
            align-items: center;
            gap: 2px;
            border: 1px solid var(--border-subtle);
            border-radius: 999px;
            padding: 3px;
            background: rgba(255, 255, 255, 0.03);
            flex-shrink: 0;
        }

        .lang-option {
            border: none;
            background: transparent;
            color: var(--text-secondary);
            font-size: 12px;
            font-weight: 500;
            padding: 4px 12px;
            border-radius: 999px;
            cursor: pointer;
            transition: color 0.2s ease, background 0.2s ease;
            white-space: nowrap;
        }

        .lang-option:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.06);
        }

        .lang-option.active {
            background: rgba(245, 185, 66, 0.16);
            color: var(--accent-score);
            border: 1px solid rgba(245, 185, 66, 0.35);
        }

        /* ========== Page Header ========== */
        .page-header {
            padding: 48px 0 24px;
            border-bottom: 1px solid var(--border-subtle);
            background: linear-gradient(180deg, rgba(245, 185, 66, 0.03) 0%, transparent 100%);
        }

        .page-header .breadcrumb {
            margin-bottom: 16px;
        }

        .breadcrumb-item a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .breadcrumb-item a:hover {
            color: var(--accent-score);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: var(--text-muted);
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: var(--text-muted);
            content: "/";
        }

        .page-header h1 {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .page-header .lead {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 780px;
            line-height: 1.75;
            margin-bottom: 0;
        }

        /* ========== Section Common ========== */
        .section-block {
            padding: 56px 0;
        }

        .section-block-sm {
            padding: 40px 0;
        }

        .section-title {
            font-size: 26px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .section-subtitle {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.75;
            margin-bottom: 24px;
            max-width: 720px;
        }

        /* ========== Patch Status Highlight ========== */
        .patch-status-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 28px;
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }

        .patch-status-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--accent-score);
        }

        .patch-status-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: rgba(245, 185, 66, 0.12);
            border: 1px solid rgba(245, 185, 66, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--accent-score);
            flex-shrink: 0;
        }

        .patch-status-info {
            flex: 1;
            min-width: 240px;
        }

        .patch-status-info h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--text-primary);
        }

        .patch-status-info .patch-version {
            font-family: var(--font-mono);
            font-size: 28px;
            font-weight: 700;
            color: var(--accent-score);
            letter-spacing: 1px;
        }

        .patch-status-info p {
            color: var(--text-secondary);
            margin-bottom: 0;
            font-size: 14px;
        }

        .patch-status-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(62, 198, 168, 0.1);
            border: 1px solid rgba(62, 198, 168, 0.3);
            color: var(--accent-positive);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 999px;
            white-space: nowrap;
        }

        .patch-status-badge .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-positive);
            animation: pulse-dot 2s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(0.8); }
        }

        .patch-status-image {
            width: 160px;
            height: 100px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
            border: 1px solid var(--border-subtle);
        }

        @media (max-width: 767.98px) {
            .patch-status-card {
                padding: 20px;
                gap: 16px;
            }
            .patch-status-image {
                width: 100%;
                height: 140px;
                order: -1;
            }
            .patch-status-icon {
                width: 48px;
                height: 48px;
                font-size: 22px;
                border-radius: 12px;
            }
        }

        /* ========== Patch Grid Cards ========== */
        .patch-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 20px;
        }

        .patch-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: var(--shadow-card);
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .patch-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(245, 185, 66, 0.35);
        }

        .patch-card .patch-version-badge {
            display: inline-flex;
            align-items: center;
            font-family: var(--font-mono);
            font-size: 20px;
            font-weight: 700;
            color: var(--accent-score);
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .patch-card .patch-date {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .patch-card .patch-date i {
            font-size: 13px;
        }

        .patch-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 14px;
        }

        .patch-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: var(--radius-badge);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            color: var(--text-secondary);
            letter-spacing: 0.3px;
            transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
        }

        .patch-tag.positive {
            background: rgba(62, 198, 168, 0.1);
            border-color: rgba(62, 198, 168, 0.3);
            color: var(--accent-positive);
        }

        .patch-tag.negative {
            background: rgba(224, 108, 91, 0.1);
            border-color: rgba(224, 108, 91, 0.3);
            color: var(--accent-negative);
        }

        .patch-tag.neutral {
            background: rgba(255, 255, 255, 0.04);
            border-color: var(--border-subtle);
            color: var(--text-secondary);
        }

        .patch-card .patch-impact {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 0;
            flex: 1;
        }

        .patch-card .patch-impact strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        /* ========== Timeline ========== */
        .version-timeline {
            position: relative;
            padding-left: 28px;
        }

        .version-timeline::before {
            content: "";
            position: absolute;
            left: 8px;
            top: 4px;
            bottom: 4px;
            width: 2px;
            background: linear-gradient(180deg, var(--border-subtle), rgba(51, 58, 69, 0.3));
        }

        .timeline-item {
            position: relative;
            padding-bottom: 24px;
            padding-left: 12px;
        }

        .timeline-item:last-child {
            padding-bottom: 0;
        }

        .timeline-item::before {
            content: "";
            position: absolute;
            left: -24px;
            top: 6px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--bg-surface-2);
            border: 2px solid var(--accent-score);
        }

        .timeline-item .timeline-date {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-score);
            font-family: var(--font-mono);
            letter-spacing: 0.5px;
            margin-bottom: 2px;
        }

        .timeline-item .timeline-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .timeline-item .timeline-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* ========== Info Strip ========== */
        .info-strip {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 20px 24px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            box-shadow: var(--shadow-card);
        }

        .info-strip i {
            color: var(--accent-score);
            font-size: 20px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .info-strip p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 0;
        }

        .info-strip p strong {
            color: var(--text-primary);
        }

        /* ========== CTA Section ========== */
        .cta-section {
            background: linear-gradient(135deg, rgba(245, 185, 66, 0.08) 0%, rgba(245, 185, 66, 0.02) 100%);
            border: 1px solid rgba(245, 185, 66, 0.25);
            border-radius: var(--radius-card);
            padding: 40px 32px;
            text-align: center;
            box-shadow: var(--shadow-card);
        }

        .cta-section h2 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .cta-section p {
            color: var(--text-secondary);
            font-size: 15px;
            max-width: 560px;
            margin: 0 auto 24px;
            line-height: 1.7;
        }

        .cta-section .btn-group-cta {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 600;
            padding: 10px 24px;
            transition: all 0.25s ease;
            letter-spacing: 0.3px;
            border: 1px solid transparent;
        }

        .btn-primary {
            background: var(--accent-score);
            color: #15181d;
            border-color: var(--accent-score);
        }

        .btn-primary:hover,
        .btn-primary:focus {
            background: var(--accent-score-hover);
            border-color: var(--accent-score-hover);
            color: #15181d;
            box-shadow: 0 4px 16px rgba(245, 185, 66, 0.3);
        }

        .btn-primary:active {
            background: var(--accent-score-active);
            border-color: var(--accent-score-active);
            color: #15181d;
        }

        .btn-outline-light {
            background: transparent;
            color: var(--text-primary);
            border-color: var(--border-subtle);
        }

        .btn-outline-light:hover,
        .btn-outline-light:focus {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.25);
            color: var(--text-primary);
        }

        .btn-outline-light:active {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            color: var(--text-primary);
        }

        /* ========== Footer ========== */
        .site-footer {
            background: #121519;
            border-top: 1px solid var(--border-subtle);
            padding: 56px 0 24px;
            margin-top: 16px;
        }

        .footer-columns {
            margin-bottom: 32px;
        }

        .footer-brand-name {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .logo-mark-sm {
            width: 32px;
            height: 32px;
            border-radius: 7px;
            background: linear-gradient(135deg, rgba(245, 185, 66, 0.22), rgba(245, 185, 66, 0.06));
            border: 1px solid rgba(245, 185, 66, 0.4);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-score);
            font-size: 15px;
            flex-shrink: 0;
        }

        .footer-desc {
            color: var(--text-secondary);
            font-size: 13px;
            line-height: 1.7;
            margin-bottom: 0;
        }

        .footer-heading {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links li:last-child {
            margin-bottom: 0;
        }

        .footer-links a {
            color: var(--text-secondary);
            font-size: 13px;
            text-decoration: none;
            transition: color 0.2s ease, padding-left 0.2s ease;
        }

        .footer-links a:hover {
            color: var(--accent-score);
            text-decoration: none;
            padding-left: 4px;
        }

        .footer-bottom-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .footer-bottom-bar a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-bottom-bar a:hover {
            color: var(--accent-score);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .footer-bottom-links {
            display: inline-flex;
            gap: 8px;
            align-items: center;
        }

        /* ========== Responsive ========== */
        @media (max-width: 991.98px) {
            .section-block {
                padding: 48px 0;
            }
            .section-block-sm {
                padding: 32px 0;
            }
            .page-header {
                padding: 32px 0 20px;
            }
            .page-header h1 {
                font-size: 28px;
            }
            .section-title {
                font-size: 24px;
            }
            .patch-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 16px;
            }
        }

        @media (max-width: 767.98px) {
            .page-header h1 {
                font-size: 24px;
            }
            .section-title {
                font-size: 22px;
            }
            .section-block {
                padding: 40px 0;
            }
            .patch-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .patch-card {
                padding: 20px;
            }
            .cta-section {
                padding: 28px 20px;
            }
            .cta-section h2 {
                font-size: 20px;
            }
            .footer-bottom-bar {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .footer-columns {
                gap: 24px !important;
            }
        }

        @media (max-width: 575.98px) {
            .page-header h1 {
                font-size: 22px;
            }
            .section-title {
                font-size: 20px;
            }
            .patch-status-info .patch-version {
                font-size: 22px;
            }
            .btn {
                font-size: 14px;
                padding: 8px 18px;
                width: 100%;
                justify-content: center;
                display: inline-flex;
                align-items: center;
            }
            .btn-group-cta {
                flex-direction: column;
                width: 100%;
            }
            .timeline-item {
                padding-left: 6px;
            }
            .version-timeline {
                padding-left: 24px;
            }
            .timeline-item::before {
                left: -20px;
                width: 8px;
                height: 8px;
            }
            .info-strip {
                padding: 16px;
                gap: 10px;
            }
        }

/* roulang page: category6 */
:root {
            --bg-page: #15181d;
            --bg-surface: #1d2128;
            --bg-surface-2: #242a33;
            --border-subtle: #333a45;
            --text-primary: #f2f5f9;
            --text-secondary: #a7b1bd;
            --text-muted: #6e7885;
            --accent-score: #f5b942;
            --accent-score-hover: #ffc857;
            --accent-score-active: #d99d2e;
            --accent-positive: #3ec6a8;
            --accent-negative: #e06c5b;
            --accent-link: #6ca8ff;
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-badge: 4px;
            --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.28);
            --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.38);
            --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system, sans-serif;
            --font-mono: "DIN Alternate", "Bebas Neue", "Consolas", "Monaco", "Roboto Mono", monospace;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-page);
            color: var(--text-primary);
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            margin: 0;
        }

        a {
            color: var(--accent-link);
            text-decoration: none;
            transition: color 0.2s ease, text-decoration-color 0.2s ease;
        }

        a:hover {
            color: #8dbaff;
            text-decoration: underline;
            text-decoration-color: rgba(108, 168, 255, 0.5);
            text-underline-offset: 3px;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        .btn:focus-visible {
            outline: 2px solid rgba(245, 185, 66, 0.45);
            outline-offset: 2px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1200px;
        }

        .container-fluid {
            max-width: 1400px;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: rgba(21, 24, 29, 0.82);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid transparent;
            transition: border-color 0.25s ease, background 0.25s ease;
            min-height: 68px;
        }

        .site-header.scrolled {
            background: rgba(21, 24, 29, 0.94);
            border-bottom-color: var(--border-subtle);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 68px;
            gap: 24px;
            flex-wrap: nowrap;
            padding: 8px 0;
        }

        .brand-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            white-space: nowrap;
            text-decoration: none;
        }

        .brand-logo:hover {
            color: var(--text-primary);
            text-decoration: none;
        }

        .brand-logo .logo-mark {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(245, 185, 66, 0.22), rgba(245, 185, 66, 0.06));
            border: 1px solid rgba(245, 185, 66, 0.4);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-score);
            font-size: 18px;
            flex-shrink: 0;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex: 1;
            justify-content: center;
        }

        .main-nav .nav-link {
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 6px;
            transition: color 0.2s ease, background 0.2s ease;
            white-space: nowrap;
            position: relative;
        }

        .main-nav .nav-link:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.05);
            text-decoration: none;
        }

        .main-nav .nav-link.active {
            color: var(--accent-score);
            background: rgba(245, 185, 66, 0.08);
        }

        .main-nav .nav-link.active::after {
            content: "";
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 2px;
            background: var(--accent-score);
            border-radius: 2px;
        }

        .navbar-toggler {
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 6px 10px;
            background: transparent;
            color: var(--text-secondary);
        }

        .navbar-toggler:focus {
            outline: 2px solid rgba(245, 185, 66, 0.45);
            outline-offset: 2px;
            box-shadow: none;
        }

        .navbar-toggler .fa-bars {
            font-size: 18px;
        }

        .lang-switch {
            display: inline-flex;
            align-items: center;
            border: 1px solid var(--border-subtle);
            border-radius: 999px;
            padding: 3px;
            gap: 2px;
            background: rgba(255, 255, 255, 0.02);
            flex-shrink: 0;
        }

        .lang-option {
            border: none;
            background: transparent;
            color: var(--text-muted);
            font-size: 12px;
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 999px;
            transition: all 0.2s ease;
            letter-spacing: 0.3px;
            cursor: pointer;
        }

        .lang-option:hover {
            color: var(--text-primary);
        }

        .lang-option.active {
            background: rgba(245, 185, 66, 0.16);
            color: var(--accent-score);
        }

        @media (max-width: 991.98px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .main-nav {
                flex-direction: column;
                align-items: stretch;
                padding: 16px 0 8px;
                gap: 2px;
            }
            .main-nav .nav-link {
                padding: 10px 14px;
                font-size: 15px;
                text-align: left;
            }
            .main-nav .nav-link.active::after {
                display: none;
            }
            .navbar-collapse {
                border-top: 1px solid var(--border-subtle);
                margin-top: 8px;
            }
        }

        @media (max-width: 575.98px) {
            .brand-logo {
                font-size: 17px;
            }
            .brand-logo .logo-mark {
                width: 32px;
                height: 32px;
                font-size: 16px;
            }
            .lang-switch {
                margin-left: auto;
            }
        }

        .breadcrumb-section {
            padding: 28px 0 12px;
        }

        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .breadcrumb-custom a {
            color: var(--text-secondary);
            text-decoration: none;
        }

        .breadcrumb-custom a:hover {
            color: var(--accent-score);
            text-decoration: none;
        }

        .breadcrumb-custom .separator {
            color: var(--text-muted);
            font-size: 12px;
        }

        .breadcrumb-custom .current {
            color: var(--text-primary);
            font-weight: 600;
        }

        .page-hero {
            padding: 16px 0 40px;
            border-bottom: 1px solid var(--border-subtle);
            margin-bottom: 40px;
        }

        .page-hero h1 {
            font-size: 34px;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .page-hero .lead {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 780px;
            margin-bottom: 0;
        }

        .section-title {
            font-size: 26px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 8px;
        }

        .section-subtitle {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 24px;
        }

        .news-feed {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .news-item {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 20px 24px;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .news-item:hover {
            border-color: rgba(245, 185, 66, 0.35);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }

        .news-thumb {
            width: 130px;
            height: 84px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
            background: var(--bg-surface-2);
        }

        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-body {
            flex: 1;
            min-width: 0;
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 6px;
        }

        .news-meta .news-date {
            color: var(--accent-score);
            font-family: var(--font-mono);
            font-weight: 600;
        }

        .news-title {
            font-size: 18px;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 8px;
        }

        .news-title a {
            color: var(--text-primary);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .news-title a:hover {
            color: var(--accent-score);
            text-decoration: none;
        }

        .news-summary {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 12px;
        }

        .btn-outline-news {
            background: transparent;
            border: 1px solid var(--border-subtle);
            color: var(--text-primary);
            border-radius: var(--radius-btn);
            padding: 6px 16px;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .btn-outline-news:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--accent-score);
            color: var(--accent-score);
        }

        .btn-outline-news:active {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(1px);
        }

        .tag-cloud-section {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 20px 24px;
        }

        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag-pill {
            background: transparent;
            border: 1px solid var(--border-subtle);
            color: var(--text-secondary);
            border-radius: 999px;
            padding: 5px 14px;
            font-size: 13px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .tag-pill:hover {
            background: rgba(245, 185, 66, 0.08);
            border-color: rgba(245, 185, 66, 0.45);
            color: var(--accent-score);
            text-decoration: none;
        }

        .archive-list {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 20px 24px;
        }

        .archive-list ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .archive-list li {
            padding: 10px 0;
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .archive-list li:last-child {
            border-bottom: none;
        }

        .archive-list a {
            color: var(--text-secondary);
            font-size: 14px;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .archive-list a:hover {
            color: var(--accent-score);
            text-decoration: none;
        }

        .archive-count {
            font-size: 12px;
            color: var(--text-muted);
            font-family: var(--font-mono);
        }

        .subscribe-card {
            background: linear-gradient(135deg, rgba(245, 185, 66, 0.12), rgba(245, 185, 66, 0.02));
            border: 1px solid rgba(245, 185, 66, 0.3);
            border-radius: var(--radius-card);
            padding: 28px 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .subscribe-card h2 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .subscribe-card p {
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 0;
        }

        .btn-primary-score {
            background: var(--accent-score);
            color: var(--bg-page);
            border: none;
            border-radius: var(--radius-btn);
            padding: 10px 22px;
            font-size: 15px;
            font-weight: 700;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .btn-primary-score:hover {
            background: var(--accent-score-hover);
            color: var(--bg-page);
            text-decoration: none;
            transform: translateY(-1px);
        }

        .btn-primary-score:active {
            background: var(--accent-score-active);
            transform: translateY(0);
        }

        .btn-secondary-score {
            background: transparent;
            border: 1px solid var(--border-subtle);
            color: var(--text-primary);
            border-radius: var(--radius-btn);
            padding: 10px 22px;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .btn-secondary-score:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.25);
            color: var(--text-primary);
            text-decoration: none;
        }

        .btn-secondary-score:active {
            background: rgba(255, 255, 255, 0.08);
        }

        .site-footer {
            background: var(--bg-surface);
            border-top: 1px solid var(--border-subtle);
            margin-top: 72px;
            padding: 48px 0 24px;
        }

        .footer-brand-name {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .logo-mark-sm {
            width: 30px;
            height: 30px;
            border-radius: 7px;
            background: rgba(245, 185, 66, 0.16);
            border: 1px solid rgba(245, 185, 66, 0.35);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-score);
            font-size: 15px;
        }

        .footer-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .footer-heading {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 14px;
        }

        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-links a {
            color: var(--text-secondary);
            font-size: 13px;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: var(--accent-score);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .footer-bottom-bar {
            border-top: 1px solid var(--border-subtle);
            margin-top: 32px;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 12px;
            color: var(--text-muted);
        }

        .footer-bottom-bar a {
            color: var(--text-muted);
            text-decoration: none;
        }

        .footer-bottom-bar a:hover {
            color: var(--accent-score);
            text-decoration: underline;
        }

        @media (max-width: 767.98px) {
            .page-hero h1 {
                font-size: 26px;
            }
            .section-title {
                font-size: 22px;
            }
            .news-item {
                flex-direction: column;
                padding: 16px;
            }
            .news-thumb {
                width: 100%;
                height: 170px;
            }
            .subscribe-card {
                padding: 20px;
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 575.98px) {
            .page-hero {
                padding-bottom: 28px;
            }
            .page-hero h1 {
                font-size: 24px;
            }
            .breadcrumb-section {
                padding-top: 16px;
            }
            .btn-primary-score,
            .btn-secondary-score {
                width: 100%;
                justify-content: center;
            }
        }

/* roulang page: category4 */
:root {
            --bg-page: #15181d;
            --bg-surface: #1d2128;
            --bg-surface-2: #242a33;
            --border-subtle: #333a45;
            --text-primary: #f2f5f9;
            --text-secondary: #a7b1bd;
            --text-muted: #6e7885;
            --accent-score: #f5b942;
            --accent-score-hover: #ffc857;
            --accent-score-active: #d99d2e;
            --accent-positive: #3ec6a8;
            --accent-negative: #e06c5b;
            --accent-link: #6ca8ff;
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-badge: 4px;
            --shadow-card: 0 4px 16px rgba(0,0,0,0.28);
            --shadow-card-hover: 0 8px 24px rgba(0,0,0,0.38);
            --font-sans: "PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC",system-ui,-apple-system,sans-serif;
            --font-mono: "DIN Alternate","Bebas Neue","Consolas","Monaco","Roboto Mono",monospace;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--bg-page);
            color: var(--text-primary);
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-link);
            text-decoration: none;
            transition: color 0.2s ease, text-decoration-color 0.2s ease;
        }
        a:hover {
            color: #8dbaff;
            text-decoration: underline;
            text-decoration-color: rgba(108,168,255,0.5);
            text-underline-offset: 3px;
        }
        a:focus-visible, button:focus-visible, input:focus-visible, .btn:focus-visible {
            outline: 2px solid rgba(245,185,66,0.45);
            outline-offset: 2px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
        }
        .container-fluid {
            max-width: 1400px;
        }

        /* ========== Header / Nav ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: rgba(21,24,29,0.82);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid transparent;
            transition: border-color 0.25s ease, background 0.25s ease;
            min-height: 68px;
        }
        .site-header.scrolled {
            background: rgba(21,24,29,0.94);
            border-bottom-color: var(--border-subtle);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 68px;
            gap: 24px;
            flex-wrap: nowrap;
            padding: 8px 0;
        }
        .brand-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            white-space: nowrap;
            text-decoration: none;
        }
        .brand-logo:hover {
            color: var(--text-primary);
            text-decoration: none;
        }
        .brand-logo .logo-mark {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(245,185,66,0.22), rgba(245,185,66,0.06));
            border: 1px solid rgba(245,185,66,0.4);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-score);
            font-size: 18px;
            flex-shrink: 0;
        }
        .navbar-toggler {
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 6px 10px;
            background: transparent;
            color: var(--text-secondary);
        }
        .navbar-toggler:focus {
            outline: 2px solid rgba(245,185,66,0.45);
            outline-offset: 2px;
            box-shadow: none;
        }
        .navbar-toggler .fa-bars {
            font-size: 18px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex: 1;
            justify-content: center;
        }
        .main-nav .nav-link {
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 6px;
            transition: color 0.2s ease, background 0.2s ease;
            white-space: nowrap;
            position: relative;
        }
        .main-nav .nav-link:hover {
            color: var(--text-primary);
            background: rgba(255,255,255,0.05);
            text-decoration: none;
        }
        .main-nav .nav-link.active {
            color: var(--accent-score);
            background: rgba(245,185,66,0.08);
        }
        .main-nav .nav-link.active::after {
            content: "";
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 2px;
            background: var(--accent-score);
            border-radius: 2px;
        }
        .lang-switch {
            display: flex;
            align-items: center;
            gap: 2px;
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            padding: 3px;
        }
        .lang-option {
            background: transparent;
            border: none;
            color: var(--text-muted);
            font-size: 13px;
            font-weight: 500;
            padding: 4px 12px;
            border-radius: 16px;
            cursor: pointer;
            transition: background 0.2s ease, color 0.2s ease;
        }
        .lang-option.active {
            background: rgba(245,185,66,0.12);
            color: var(--accent-score);
        }
        .lang-option:not(.active):hover {
            color: var(--text-primary);
            background: rgba(255,255,255,0.05);
        }

        /* ========== Breadcrumb ========== */
        .breadcrumb-bar {
            padding: 20px 0 0;
            background: transparent;
        }
        .breadcrumb {
            margin: 0;
            padding: 0;
            font-size: 14px;
            color: var(--text-muted);
            background: transparent;
        }
        .breadcrumb-item a {
            color: var(--accent-link);
            text-decoration: none;
        }
        .breadcrumb-item a:hover {
            color: #8dbaff;
            text-decoration: underline;
        }
        .breadcrumb-item.active {
            color: var(--text-secondary);
        }
        .breadcrumb-item+.breadcrumb-item::before {
            color: var(--text-muted);
            content: "/";
            margin: 0 6px;
        }

        /* ========== Page Hero ========== */
        .page-hero {
            padding: 40px 0 56px;
            position: relative;
            background: radial-gradient(circle at 85% 20%, rgba(245,185,66,0.06) 0%, transparent 35%);
        }
        .page-hero .hero-text h1 {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
            color: var(--text-primary);
        }
        .page-hero .hero-text p {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 600px;
            margin-bottom: 0;
        }
        .page-hero .hero-image {
            border-radius: var(--radius-card);
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-card);
            height: 100%;
        }
        .page-hero .hero-image img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
        }

        /* ========== Section Common ========== */
        .section-block {
            padding: 56px 0;
        }
        .section-title {
            font-size: 26px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 8px;
            color: var(--text-primary);
        }
        .section-subtitle {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 32px;
        }

        /* ========== Today Highlight ========== */
        .today-highlight {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: var(--shadow-card);
        }
        .today-highlight .today-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--accent-score);
            letter-spacing: 0.3px;
            text-transform: uppercase;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .today-highlight .today-label .dot {
            width: 8px;
            height: 8px;
            background: var(--accent-score);
            border-radius: 50%;
            display: inline-block;
        }
        .today-highlight .match-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-subtle);
            flex-wrap: wrap;
            gap: 8px;
        }
        .today-highlight .match-row:last-child {
            border-bottom: none;
        }
        .match-teams {
            font-weight: 700;
            font-size: 17px;
            color: var(--text-primary);
            min-width: 200px;
        }
        .match-info {
            display: flex;
            align-items: center;
            gap: 16px;
            color: var(--text-secondary);
            font-size: 14px;
        }
        .match-status {
            font-size: 12px;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: var(--radius-badge);
            background: rgba(62,198,168,0.12);
            color: var(--accent-positive);
            white-space: nowrap;
        }
        .match-status.upcoming {
            background: rgba(108,168,255,0.12);
            color: var(--accent-link);
        }

        /* ========== Schedule Timeline ========== */
        .schedule-timeline {
            position: relative;
            padding-left: 24px;
        }
        .schedule-timeline::before {
            content: "";
            position: absolute;
            left: 6px;
            top: 8px;
            bottom: 8px;
            width: 2px;
            background: var(--border-subtle);
        }
        .timeline-item {
            position: relative;
            padding-bottom: 24px;
        }
        .timeline-item:last-child {
            padding-bottom: 0;
        }
        .timeline-item::before {
            content: "";
            position: absolute;
            left: -24px;
            top: 8px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--bg-surface-2);
            border: 2px solid var(--border-subtle);
            transition: background 0.2s ease, border-color 0.2s ease;
        }
        .timeline-item:hover::before {
            background: var(--accent-score);
            border-color: var(--accent-score);
        }
        .timeline-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 20px;
            transition: background 0.2s ease, border-color 0.2s ease;
        }
        .timeline-card:hover {
            background: var(--bg-surface-2);
            border-color: #4a5565;
        }
        .timeline-date {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-score);
            letter-spacing: 0.3px;
            margin-bottom: 6px;
        }
        .timeline-match {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .timeline-teams {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
        }
        .timeline-event {
            font-size: 13px;
            color: var(--text-muted);
        }
        .timeline-status {
            font-size: 12px;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: var(--radius-badge);
            background: rgba(224,108,91,0.12);
            color: var(--accent-negative);
            white-space: nowrap;
        }
        .timeline-status.scheduled {
            background: rgba(108,168,255,0.12);
            color: var(--accent-link);
        }

        /* ========== Countdown Bar ========== */
        .countdown-bar {
            background: linear-gradient(135deg, rgba(245,185,66,0.08), rgba(245,185,66,0.02));
            border: 1px solid rgba(245,185,66,0.3);
            border-radius: var(--radius-card);
            padding: 28px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }
        .countdown-text h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--text-primary);
        }
        .countdown-text p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 0;
        }
        .countdown-timer {
            display: flex;
            gap: 16px;
            align-items: center;
        }
        .countdown-item {
            text-align: center;
            min-width: 60px;
        }
        .countdown-value {
            font-family: var(--font-mono);
            font-size: 28px;
            font-weight: 700;
            color: var(--accent-score);
            line-height: 1.1;
        }
        .countdown-label {
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ========== Subscribe CTA ========== */
        .subscribe-block {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 32px 24px;
            text-align: center;
            box-shadow: var(--shadow-card);
        }
        .subscribe-block h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .subscribe-block p {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 20px;
        }
        .btn {
            border-radius: var(--radius-btn);
            font-weight: 600;
            transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
            padding: 10px 20px;
        }
        .btn-primary-custom {
            background: var(--accent-score);
            border: 1px solid var(--accent-score);
            color: var(--bg-page);
        }
        .btn-primary-custom:hover,
        .btn-primary-custom:focus {
            background: var(--accent-score-hover);
            border-color: var(--accent-score-hover);
            color: var(--bg-page);
            box-shadow: 0 4px 12px rgba(245,185,66,0.25);
        }
        .btn-primary-custom:active {
            background: var(--accent-score-active);
            border-color: var(--accent-score-active);
            color: var(--bg-page);
        }
        .btn-outline-custom {
            background: transparent;
            border: 1px solid var(--border-subtle);
            color: var(--text-primary);
        }
        .btn-outline-custom:hover,
        .btn-outline-custom:focus {
            background: rgba(255,255,255,0.05);
            border-color: #4a5565;
            color: var(--text-primary);
            box-shadow: none;
        }
        .btn-outline-custom:active {
            background: rgba(255,255,255,0.08);
            color: var(--text-primary);
        }

        /* ========== Footer ========== */
        .site-footer {
            background: var(--bg-surface);
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 24px;
            margin-top: 64px;
        }
        .footer-brand-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
        }
        .logo-mark-sm {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            background: linear-gradient(135deg, rgba(245,185,66,0.22), rgba(245,185,66,0.06));
            border: 1px solid rgba(245,185,66,0.4);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-score);
            font-size: 14px;
        }
        .footer-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
        }
        .footer-heading {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 16px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            font-size: 14px;
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .footer-links a:hover {
            color: var(--text-primary);
            text-decoration: underline;
        }
        .footer-bottom-bar {
            border-top: 1px solid var(--border-subtle);
            margin-top: 32px;
            padding-top: 20px;
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
        }
        .footer-bottom-bar a {
            color: var(--text-muted);
            text-decoration: none;
        }
        .footer-bottom-bar a:hover {
            color: var(--text-primary);
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .main-nav {
                flex-direction: column;
                align-items: stretch;
                padding: 16px 0 8px;
                gap: 2px;
            }
            .main-nav .nav-link {
                text-align: left;
                padding: 10px 14px;
            }
            .main-nav .nav-link.active::after {
                display: none;
            }
            .navbar-collapse {
                border-top: 1px solid var(--border-subtle);
                margin-top: 8px;
                flex-basis: 100%;
            }
            .lang-switch {
                margin: 10px 0;
            }
            .page-hero .hero-image img {
                height: 200px;
            }
        }
        @media (max-width: 767.98px) {
            .section-block {
                padding: 40px 0;
            }
            .section-title {
                font-size: 22px;
            }
            .timeline-match {
                flex-direction: column;
                align-items: flex-start;
            }
            .countdown-bar {
                flex-direction: column;
                text-align: center;
            }
            .countdown-timer {
                justify-content: center;
            }
            .page-hero .hero-text h1 {
                font-size: 28px;
            }
        }

/* roulang: framework shim */
/* 覆盖 Bootstrap 等对 a/btn 的全局默认，避免导航出现下划线/蓝链 */
.site-header a,.site-header a:hover,.navbar a,.navbar a:hover,.nav-links a,.nav-links a:hover,header nav a,header nav a:hover{text-decoration:none}
.site-header .btn,.navbar .btn,.nav-cta{text-decoration:none}
