/* roulang page: index */
:root {
            --bg-deep: #070B24;
            --bg-surface: #0a0f2e;
            --bg-card-glass: rgba(10, 20, 50, 0.55);
            --accent-orange: #FF4D2E;
            --accent-gold: #E6B422;
            --accent-cyan: #00D4CB;
            --text-primary: #FFFFFF;
            --text-body: #C8D6E5;
            --text-muted: #8395A7;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-glass: rgba(255, 255, 255, 0.12);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.45);
            --shadow-glow-orange: 0 0 24px rgba(255, 77, 46, 0.5);
            --shadow-glow-gold: 0 0 20px rgba(230, 180, 34, 0.4);
            --font-title: 'PingFang SC', 'Microsoft YaHei', 'Source Han Sans CN', 'Noto Sans SC', sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Source Han Sans CN', sans-serif;
            --font-mono: 'Inter', 'Rajdhani', 'SF Mono', monospace;
            --container-max: 1320px;
            --nav-height: 68px;
            --gap-grid: 24px;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 15px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            font-size: 1rem;
            line-height: 1.75;
            color: var(--text-body);
            background-color: var(--bg-deep);
            background-image:
                radial-gradient(1px 1px at 10% 15%, rgba(255, 255, 255, 0.06) 0%, transparent 100%),
                radial-gradient(1px 1px at 25% 35%, rgba(255, 255, 255, 0.04) 0%, transparent 100%),
                radial-gradient(1px 1px at 45% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 100%),
                radial-gradient(1px 1px at 60% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 100%),
                radial-gradient(1px 1px at 75% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 100%),
                radial-gradient(1px 1px at 88% 45%, rgba(255, 255, 255, 0.04) 0%, transparent 100%),
                radial-gradient(1px 1px at 15% 65%, rgba(255, 255, 255, 0.03) 0%, transparent 100%),
                radial-gradient(1px 1px at 35% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 100%),
                radial-gradient(1px 1px at 55% 70%, rgba(255, 255, 255, 0.04) 0%, transparent 100%),
                radial-gradient(1px 1px at 70% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
            background-attachment: fixed;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--accent-orange);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
            font-size: inherit;
        }
        input {
            font-family: inherit;
            font-size: inherit;
        }
        ul,
        ol {
            list-style: none;
        }

        .container {
            max-width: var(--container-max);
            margin-left: auto;
            margin-right: auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* ========== 顶部通知条 ========== */
        .top-notice-bar {
            background: linear-gradient(90deg, rgba(255, 77, 46, 0.15) 0%, rgba(230, 180, 34, 0.1) 50%, rgba(255, 77, 46, 0.12) 100%);
            border-bottom: 1px solid rgba(255, 77, 46, 0.2);
            padding: 7px 0;
            font-size: 0.85rem;
            color: var(--text-body);
            text-align: center;
            position: relative;
            z-index: 1001;
            letter-spacing: 0.3px;
        }
        .top-notice-bar .live-dot {
            display: inline-block;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--accent-orange);
            margin-right: 8px;
            animation: pulse-dot 1.5s infinite;
            vertical-align: middle;
            position: relative;
            top: -1px;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 77, 46, 0.7);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(255, 77, 46, 0);
            }
        }
        .top-notice-bar .notice-link {
            color: var(--accent-orange);
            font-weight: 600;
            margin-left: 6px;
            transition: color var(--transition-fast);
        }
        .top-notice-bar .notice-link:hover {
            color: var(--accent-gold);
        }

        /* ========== 导航 ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(7, 11, 36, 0.88);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            height: var(--nav-height);
            display: flex;
            align-items: center;
            transition: background var(--transition-smooth);
        }
        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }
        .header-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .header-logo .logo-icon {
            width: 38px;
            height: 38px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--accent-gold) 0%, #c8941e 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.1rem;
            color: #1a0e00;
            box-shadow: var(--shadow-glow-gold);
            flex-shrink: 0;
            letter-spacing: -0.5px;
        }
        .header-logo .logo-text {
            font-family: var(--font-title);
            font-size: 1.35rem;
            font-weight: 700;
            background: linear-gradient(135deg, #E6B422 0%, #FFD666 50%, #E6B422 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .header-logo .logo-sub {
            font-size: 0.7rem;
            color: var(--text-muted);
            letter-spacing: 0.8px;
            white-space: nowrap;
            margin-left: 2px;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }
        .nav-links a {
            color: var(--text-body);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            padding: 6px 0;
            letter-spacing: 0.3px;
            transition: color var(--transition-fast);
            white-space: nowrap;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-orange);
            border-radius: 2px;
            transition: width var(--transition-smooth);
            box-shadow: 0 0 8px rgba(255, 77, 46, 0.6);
        }
        .nav-links a:hover {
            color: var(--accent-orange);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .nav-links a.active {
            color: var(--accent-orange);
            font-weight: 700;
        }
        .nav-links a.active::after {
            width: 100%;
            background: var(--accent-orange);
            box-shadow: 0 0 12px rgba(255, 77, 46, 0.8);
        }
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 8px;
            cursor: pointer;
            z-index: 1002;
            background: transparent;
            border: none;
        }
        .mobile-menu-btn span {
            display: block;
            width: 26px;
            height: 2.5px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all var(--transition-smooth);
            transform-origin: center;
        }
        .mobile-menu-btn.open span:nth-child(1) {
            transform: translateY(7.5px) rotate(45deg);
        }
        .mobile-menu-btn.open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .mobile-menu-btn.open span:nth-child(3) {
            transform: translateY(-7.5px) rotate(-45deg);
        }
        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(7, 11, 36, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 999;
            padding: 40px 24px;
            flex-direction: column;
            gap: 20px;
            align-items: center;
            justify-content: flex-start;
            padding-top: 60px;
        }
        .mobile-nav-panel.active {
            display: flex;
        }
        .mobile-nav-panel a {
            color: var(--text-body);
            font-size: 1.2rem;
            font-weight: 600;
            padding: 12px 24px;
            border-radius: var(--radius-md);
            transition: all var(--transition-fast);
            letter-spacing: 0.5px;
        }
        .mobile-nav-panel a:hover,
        .mobile-nav-panel a.active {
            color: var(--accent-orange);
            background: rgba(255, 77, 46, 0.08);
        }

        /* ========== Hero ========== */
        .hero-section {
            position: relative;
            padding: 80px 0 90px;
            overflow: hidden;
            min-height: 560px;
            display: flex;
            align-items: center;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 30%;
        }
        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(7, 11, 36, 0.65) 0%, rgba(7, 11, 36, 0.8) 40%, rgba(7, 11, 36, 0.92) 75%, #070B24 100%);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .hero-left {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 77, 46, 0.15);
            border: 1px solid rgba(255, 77, 46, 0.35);
            border-radius: 50px;
            padding: 7px 18px;
            font-size: 0.82rem;
            color: var(--accent-orange);
            font-weight: 600;
            letter-spacing: 1px;
            width: fit-content;
        }
        .hero-badge .badge-icon {
            font-size: 1rem;
        }
        .hero-left h1 {
            font-family: var(--font-title);
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1.3;
            letter-spacing: 0.5px;
        }
        .hero-left h1 .highlight {
            color: var(--accent-orange);
            position: relative;
        }
        .hero-left .hero-subtitle {
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 460px;
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .hero-tags .tag {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 50px;
            background: rgba(200, 214, 229, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            font-size: 0.8rem;
            color: var(--text-body);
            font-weight: 500;
            letter-spacing: 0.4px;
            transition: all var(--transition-fast);
        }
        .hero-tags .tag:hover {
            border-color: var(--accent-orange);
            background: rgba(255, 77, 46, 0.1);
            color: var(--accent-orange);
        }
        .hero-cta-group {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 4px;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent-orange);
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 13px 28px;
            border-radius: 50px;
            letter-spacing: 0.5px;
            box-shadow: 0 0 22px rgba(255, 77, 46, 0.5);
            transition: all var(--transition-smooth);
            border: none;
            cursor: pointer;
            white-space: nowrap;
        }
        .btn-primary:hover {
            box-shadow: 0 0 38px rgba(255, 77, 46, 0.8);
            transform: translateY(-3px);
            color: #fff;
            background: #ff5f42;
        }
        .btn-primary:active {
            transform: translateY(-1px);
            box-shadow: 0 0 28px rgba(255, 77, 46, 0.6);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 13px 28px;
            border-radius: 50px;
            border: 1.5px solid rgba(255, 255, 255, 0.25);
            letter-spacing: 0.5px;
            transition: all var(--transition-smooth);
            cursor: pointer;
            white-space: nowrap;
        }
        .btn-outline:hover {
            border-color: #fff;
            box-shadow: 0 0 16px rgba(255, 255, 255, 0.2);
            color: #fff;
            background: rgba(255, 255, 255, 0.04);
            transform: translateY(-2px);
        }
        .hero-right {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .hero-match-card {
            background: var(--bg-card-glass);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-lg);
            padding: 22px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .hero-match-card:hover {
            border-color: rgba(255, 77, 46, 0.5);
            transform: translateX(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 18px rgba(255, 77, 46, 0.2);
        }
        .hero-match-card .match-teams {
            display: flex;
            align-items: center;
            gap: 14px;
            flex: 1;
            min-width: 0;
        }
        .hero-match-card .team-name {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-primary);
            white-space: nowrap;
        }
        .hero-match-card .match-vs {
            color: var(--text-muted);
            font-weight: 700;
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        .hero-match-card .match-score {
            font-family: var(--font-mono);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--accent-gold);
            letter-spacing: 2px;
            flex-shrink: 0;
            text-shadow: 0 0 14px rgba(230, 180, 34, 0.5);
        }
        .hero-match-card .match-status {
            font-size: 0.75rem;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 50px;
            background: rgba(255, 77, 46, 0.18);
            color: var(--accent-orange);
            white-space: nowrap;
            flex-shrink: 0;
            letter-spacing: 0.5px;
        }
        .hero-match-card .match-status.live {
            animation: pulse-status 2s infinite;
        }
        @keyframes pulse-status {
            0%,
            100% {
                background: rgba(255, 77, 46, 0.18);
            }
            50% {
                background: rgba(255, 77, 46, 0.35);
            }
        }

        /* ========== 板块通用 ========== */
        .section {
            padding: 64px 0;
        }
        .section-header {
            margin-bottom: 40px;
            text-align: center;
        }
        .section-header h2 {
            font-family: var(--font-title);
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }
        .section-header .section-subtitle {
            color: var(--text-muted);
            font-size: 0.95rem;
            letter-spacing: 0.3px;
        }
        .section-header.left-align {
            text-align: left;
        }

        /* ========== 数据指标卡片 ========== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 18px;
        }
        .stat-card {
            background: var(--bg-card-glass);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 22px 18px;
            text-align: center;
            transition: all var(--transition-smooth);
            cursor: default;
        }
        .stat-card:hover {
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-4px);
            box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
        }
        .stat-card .stat-icon {
            font-size: 1.6rem;
            margin-bottom: 10px;
        }
        .stat-card .stat-value {
            font-family: var(--font-mono);
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 1px;
            line-height: 1;
        }
        .stat-card .stat-value.gold {
            color: var(--accent-gold);
            text-shadow: 0 0 12px rgba(230, 180, 34, 0.4);
        }
        .stat-card .stat-value.orange {
            color: var(--accent-orange);
            text-shadow: 0 0 12px rgba(255, 77, 46, 0.4);
        }
        .stat-card .stat-label {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-top: 6px;
            letter-spacing: 0.3px;
        }

        /* ========== 进行中赛事流 ========== */
        .live-matches-scroll {
            display: flex;
            gap: 18px;
            overflow-x: auto;
            padding-bottom: 16px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
        }
        .live-matches-scroll::-webkit-scrollbar {
            height: 5px;
        }
        .live-matches-scroll::-webkit-scrollbar-track {
            background: transparent;
        }
        .live-matches-scroll::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.12);
            border-radius: 10px;
        }
        .live-match-sm-card {
            flex: 0 0 320px;
            scroll-snap-align: start;
            background: var(--bg-card-glass);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            transition: all var(--transition-smooth);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .live-match-sm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
            opacity: 0.85;
        }
        .live-match-sm-card:hover {
            border-color: rgba(255, 77, 46, 0.5);
            transform: translateY(-5px);
            box-shadow: 0 16px 44px rgba(0, 0, 0, 0.55);
        }
        .live-match-sm-card .live-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--accent-orange);
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .live-match-sm-card .live-tag .mini-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-orange);
            animation: pulse-dot 1.5s infinite;
        }
        .live-match-sm-card .match-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .live-match-sm-card .team-info {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
            min-width: 0;
        }
        .live-match-sm-card .team-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--text-primary);
            border: 2px solid rgba(255, 255, 255, 0.15);
        }
        .live-match-sm-card .score-display {
            font-family: var(--font-mono);
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--accent-gold);
            letter-spacing: 1px;
            flex-shrink: 0;
            text-shadow: 0 0 10px rgba(230, 180, 34, 0.4);
        }
        .live-match-sm-card .match-meta {
            font-size: 0.75rem;
            color: var(--text-muted);
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        /* ========== 赛程标签栏 ========== */
        .tab-bar {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 28px;
            justify-content: center;
        }
        .tab-bar .tab-btn {
            padding: 9px 22px;
            border-radius: 50px;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text-muted);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            transition: all var(--transition-fast);
            letter-spacing: 0.3px;
            white-space: nowrap;
        }
        .tab-bar .tab-btn:hover {
            color: var(--text-primary);
            border-color: rgba(255, 255, 255, 0.25);
            background: rgba(255, 255, 255, 0.07);
        }
        .tab-bar .tab-btn.active {
            background: var(--accent-orange);
            color: #fff;
            border-color: var(--accent-orange);
            box-shadow: var(--shadow-glow-orange);
        }
        .schedule-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .schedule-card {
            background: var(--bg-card-glass);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 20px 22px;
            transition: all var(--transition-smooth);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .schedule-card:hover {
            border-color: rgba(255, 77, 46, 0.4);
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
        }
        .schedule-card .sched-time {
            font-size: 0.78rem;
            color: var(--text-muted);
            letter-spacing: 0.5px;
        }
        .schedule-card .sched-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            flex-wrap: wrap;
        }
        .schedule-card .sched-team {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-primary);
        }
        .schedule-card .sched-vs {
            font-weight: 700;
            color: var(--text-muted);
            font-size: 0.8rem;
            flex-shrink: 0;
        }
        .schedule-card .sched-stage {
            display: inline-block;
            font-size: 0.72rem;
            padding: 4px 10px;
            border-radius: 20px;
            background: rgba(0, 212, 203, 0.12);
            color: var(--accent-cyan);
            font-weight: 600;
            width: fit-content;
        }

        /* ========== 排行榜大卡片 ========== */
        .ranking-scroll {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding-bottom: 16px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
        }
        .ranking-scroll::-webkit-scrollbar {
            height: 5px;
        }
        .ranking-scroll::-webkit-scrollbar-track {
            background: transparent;
        }
        .ranking-scroll::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.12);
            border-radius: 10px;
        }
        .rank-big-card {
            flex: 0 0 280px;
            scroll-snap-align: start;
            background: var(--bg-card-glass);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 24px 20px;
            text-align: center;
            transition: all var(--transition-smooth);
            cursor: pointer;
            position: relative;
        }
        .rank-big-card:hover {
            border-color: rgba(230, 180, 34, 0.5);
            transform: translateY(-5px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 16px rgba(230, 180, 34, 0.2);
        }
        .rank-big-card .rank-number {
            font-family: var(--font-mono);
            font-size: 3rem;
            font-weight: 900;
            color: var(--accent-gold);
            text-shadow: 0 0 20px rgba(230, 180, 34, 0.5);
            line-height: 1;
        }
        .rank-big-card .rank-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            margin: 10px auto;
            background: rgba(255, 255, 255, 0.06);
            border: 3px solid rgba(230, 180, 34, 0.4);
            box-shadow: 0 0 18px rgba(230, 180, 34, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--text-primary);
        }
        .rank-big-card .rank-name {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--text-primary);
            margin-top: 4px;
        }
        .rank-big-card .rank-stats {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 4px;
        }
        .rank-big-card .rank-bar {
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            margin-top: 12px;
            overflow: hidden;
        }
        .rank-big-card .rank-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
            border-radius: 2px;
            transition: width 0.8s ease;
        }

        /* ========== 专题横幅 ========== */
        .feature-banner {
            background: linear-gradient(135deg, rgba(255, 77, 46, 0.1) 0%, rgba(230, 180, 34, 0.08) 50%, rgba(0, 212, 203, 0.06) 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-xl);
            padding: 44px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
        }
        .feature-banner::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(255, 77, 46, 0.08);
            pointer-events: none;
        }
        .feature-banner .banner-text h3 {
            font-family: var(--font-title);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 6px;
        }
        .feature-banner .banner-text p {
            color: var(--text-muted);
            font-size: 0.9rem;
            max-width: 500px;
        }
        .feature-banner .banner-cta .btn-primary {
            font-size: 0.9rem;
            padding: 11px 24px;
        }

        /* ========== 版本数据面板 ========== */
        .version-panel {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
        .version-card {
            background: var(--bg-card-glass);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 20px;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .version-card:hover {
            border-color: rgba(0, 212, 203, 0.4);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
        }
        .version-card .ver-game {
            font-size: 0.75rem;
            color: var(--accent-cyan);
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .version-card .ver-title {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--text-primary);
            margin: 6px 0;
        }
        .version-card .ver-detail {
            font-size: 0.78rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* ========== 新闻战报Feed ========== */
        .news-feed {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }
        .news-card {
            background: var(--bg-card-glass);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .news-card:hover {
            border-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-4px);
            box-shadow: 0 14px 38px rgba(0, 0, 0, 0.5);
        }
        .news-card .news-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .news-card .news-body {
            padding: 18px 20px;
        }
        .news-card .news-tag {
            font-size: 0.7rem;
            padding: 3px 10px;
            border-radius: 20px;
            background: rgba(255, 77, 46, 0.12);
            color: var(--accent-orange);
            font-weight: 600;
            display: inline-block;
            margin-bottom: 8px;
        }
        .news-card .news-title {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--text-primary);
            line-height: 1.4;
            margin-bottom: 6px;
        }
        .news-card .news-date {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* ========== 用户评论 ========== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
        .review-card {
            background: var(--bg-card-glass);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 20px;
            transition: all var(--transition-smooth);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .review-card:hover {
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
        }
        .review-card .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .review-card .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
        }
        .review-card .review-name {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--text-primary);
        }
        .review-card .review-tag {
            font-size: 0.7rem;
            color: var(--text-muted);
        }
        .review-card .review-stars {
            color: var(--accent-gold);
            font-size: 0.8rem;
            letter-spacing: 1px;
        }
        .review-card .review-text {
            font-size: 0.82rem;
            color: var(--text-body);
            line-height: 1.6;
            font-style: italic;
            border-left: 3px solid var(--accent-orange);
            padding-left: 12px;
        }

        /* ========== FAQ ========== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--bg-card-glass);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: rgba(255, 255, 255, 0.18);
        }
        .faq-question {
            width: 100%;
            padding: 18px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            cursor: pointer;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 0.95rem;
            text-align: left;
            background: transparent;
            border: none;
            letter-spacing: 0.3px;
            transition: color var(--transition-fast);
        }
        .faq-question:hover {
            color: var(--accent-orange);
        }
        .faq-question .faq-arrow {
            flex-shrink: 0;
            font-size: 0.7rem;
            transition: transform var(--transition-smooth);
            color: var(--text-muted);
        }
        .faq-item.open .faq-arrow {
            transform: rotate(90deg);
            color: var(--accent-orange);
        }
        .faq-item.open .faq-question {
            color: var(--accent-orange);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
            padding: 0 22px;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 22px 18px;
        }
        .faq-answer p {
            font-size: 0.88rem;
            color: var(--text-body);
            line-height: 1.7;
            border-left: 3px solid var(--accent-orange);
            padding-left: 14px;
        }

        /* ========== CTA区域 ========== */
        .cta-section {
            background: linear-gradient(135deg, rgba(255, 77, 46, 0.08) 0%, rgba(7, 11, 36, 0.9) 60%, rgba(230, 180, 34, 0.05) 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-xl);
            padding: 50px 40px;
            text-align: center;
        }
        .cta-section h2 {
            font-family: var(--font-title);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
        }
        .cta-section p {
            color: var(--text-muted);
            margin-bottom: 24px;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-section .btn-primary {
            font-size: 1rem;
            padding: 14px 34px;
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: rgba(5, 8, 24, 0.95);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 56px 0 28px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 36px;
            margin-bottom: 36px;
        }
        .footer-col h4 {
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }
        .footer-col p,
        .footer-col a {
            font-size: 0.82rem;
            color: var(--text-muted);
            line-height: 1.8;
            display: block;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--accent-orange);
        }
        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 10px;
        }
        .footer-social .social-icon {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            transition: all var(--transition-fast);
            cursor: pointer;
            color: var(--text-muted);
        }
        .footer-social .social-icon:hover {
            background: rgba(255, 77, 46, 0.2);
            color: var(--accent-orange);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 20px;
            text-align: center;
            font-size: 0.75rem;
            color: var(--text-muted);
            line-height: 2;
        }
        .footer-bottom a {
            color: var(--text-muted);
            margin: 0 8px;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--accent-orange);
        }
        .footer-bottom .beian-info {
            margin-top: 4px;
            letter-spacing: 0.3px;
        }

        /* ========== 响应式 ========== */
        @media (max-width: 1200px) {
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .version-panel {
                grid-template-columns: repeat(2, 1fr);
            }
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero-left h1 {
                font-size: 2rem;
            }
            .hero-right {
                flex-direction: row;
                overflow-x: auto;
                gap: 14px;
                padding-bottom: 8px;
            }
            .hero-match-card {
                flex: 0 0 300px;
            }
            .schedule-cards {
                grid-template-columns: repeat(2, 1fr);
            }
            .news-feed {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .mobile-menu-btn {
                display: flex;
            }
            .hero-section {
                padding: 50px 0 60px;
                min-height: auto;
            }
            .hero-left h1 {
                font-size: 1.6rem;
            }
            .hero-cta-group {
                flex-direction: column;
                gap: 10px;
            }
            .btn-primary,
            .btn-outline {
                width: 100%;
                justify-content: center;
                text-align: center;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .stat-card {
                padding: 16px 12px;
            }
            .stat-card .stat-value {
                font-size: 1.5rem;
            }
            .schedule-cards {
                grid-template-columns: 1fr;
            }
            .version-panel {
                grid-template-columns: 1fr;
            }
            .news-feed {
                grid-template-columns: 1fr;
            }
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            .feature-banner {
                padding: 28px 22px;
                flex-direction: column;
                text-align: center;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .cta-section {
                padding: 32px 20px;
            }
            .hero-right {
                flex-direction: column;
            }
            .hero-match-card {
                flex: 0 0 auto;
            }
            .tab-bar {
                gap: 6px;
            }
            .tab-bar .tab-btn {
                padding: 7px 14px;
                font-size: 0.78rem;
            }
            .section {
                padding: 40px 0;
            }
            .section-header h2 {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding-left: 14px;
                padding-right: 14px;
            }
            .hero-left h1 {
                font-size: 1.35rem;
            }
            .hero-left .hero-subtitle {
                font-size: 0.88rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-card .stat-value {
                font-size: 1.3rem;
            }
            .live-match-sm-card {
                flex: 0 0 260px;
            }
            .rank-big-card {
                flex: 0 0 220px;
            }
            .footer-bottom {
                font-size: 0.7rem;
            }
        }

/* roulang page: category1 */
:root {
            --bg-deep: #070B24;
            --bg-navy: #0A0F2E;
            --bg-card: rgba(10, 20, 50, 0.6);
            --orange: #FF4D2E;
            --orange-glow: rgba(255, 77, 46, 0.5);
            --orange-glow-strong: rgba(255, 77, 46, 0.8);
            --gold: #E6B422;
            --gold-glow: rgba(230, 180, 34, 0.4);
            --text-primary: #FFFFFF;
            --text-secondary: #C8D6E5;
            --text-muted: #8395A7;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-glow: rgba(255, 255, 255, 0.15);
            --border-orange: rgba(255, 77, 46, 0.4);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-btn: 28px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
            --shadow-glow-orange: 0 0 20px rgba(255, 77, 46, 0.5);
            --shadow-glow-orange-hover: 0 0 35px rgba(255, 77, 46, 0.8);
            --shadow-glow-gold: 0 0 18px rgba(230, 180, 34, 0.35);
            --font-h1: 28px;
            --font-h2: 22px;
            --font-h3: 17px;
            --font-body: 15px;
            --font-sm: 13px;
            --font-tiny: 12px;
            --line-height-body: 1.75;
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', 'Source Han Sans CN', sans-serif;
            font-size: var(--font-body);
            line-height: var(--line-height-body);
            color: var(--text-secondary);
            background-color: var(--bg-deep);
            background-image:
                radial-gradient(circle at 15% 20%, rgba(230, 180, 34, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 85% 60%, rgba(255, 77, 46, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(100, 140, 220, 0.02) 0%, transparent 50%);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            background-image:
                radial-gradient(circle, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
            background-size: 28px 28px;
            opacity: 0.5;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            border: none;
            outline: none;
            font-family: inherit;
            transition: all var(--transition-smooth);
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--orange);
            outline-offset: 3px;
            border-radius: 4px;
        }

        input {
            font-family: inherit;
        }

        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        /* Header / Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(7, 11, 36, 0.88);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            height: 68px;
            display: flex;
            align-items: center;
            transition: background var(--transition-smooth);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-text {
            font-size: 22px;
            font-weight: 700;
            font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            background: linear-gradient(135deg, #E6B422 0%, #F0D060 40%, #D4A018 70%, #E6B422 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            white-space: nowrap;
            text-shadow: none;
            filter: drop-shadow(0 0 6px rgba(230, 180, 34, 0.3));
        }

        .logo-subtitle {
            font-size: 11px;
            color: var(--text-muted);
            letter-spacing: 0.5px;
            white-space: nowrap;
            border-left: 1px solid rgba(255, 255, 255, 0.15);
            padding-left: 10px;
            line-height: 1.2;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            letter-spacing: 0.4px;
            position: relative;
            padding: 6px 0;
            transition: color var(--transition-fast);
            white-space: nowrap;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--orange);
            border-radius: 2px;
            transition: width var(--transition-smooth);
            box-shadow: 0 0 10px var(--orange-glow);
        }

        .nav-links a:hover {
            color: var(--orange);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .nav-links a.active {
            color: var(--orange);
            font-weight: 700;
        }
        .nav-links a.active::after {
            width: 100%;
        }

        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
            flex-direction: column;
            gap: 5px;
        }
        .hamburger-btn span {
            display: block;
            width: 26px;
            height: 2.5px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all var(--transition-smooth);
        }
        .hamburger-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger-btn.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 68px;
            left: 0;
            width: 100%;
            height: calc(100vh - 68px);
            background: rgba(7, 11, 36, 0.95);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 48px;
            gap: 28px;
        }
        .mobile-nav-overlay.active {
            display: flex;
        }
        .mobile-nav-overlay a {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-secondary);
            letter-spacing: 0.5px;
            transition: color var(--transition-fast);
        }
        .mobile-nav-overlay a.active,
        .mobile-nav-overlay a:hover {
            color: var(--orange);
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            padding: 80px 0 90px;
            overflow: hidden;
            background: linear-gradient(180deg, rgba(7, 11, 36, 0.4) 0%, rgba(7, 11, 36, 0.85) 60%, #070B24 100%),
                url('/assets/images/backpic/back-1.webp') center center / cover no-repeat;
            min-height: 560px;
            display: flex;
            align-items: center;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 120px;
            background: linear-gradient(to top, #070B24 0%, transparent 100%);
            z-index: 2;
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            position: relative;
            z-index: 3;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 77, 46, 0.12);
            border: 1px solid rgba(255, 77, 46, 0.25);
            border-radius: 20px;
            padding: 6px 16px;
            font-size: var(--font-sm);
            color: var(--orange);
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }
        .hero-badge .dot {
            width: 7px;
            height: 7px;
            background: var(--orange);
            border-radius: 50%;
            animation: pulse-dot 1.5s ease-in-out infinite;
            box-shadow: 0 0 8px var(--orange-glow);
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.6);
            }
        }

        .hero-title {
            font-size: 36px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: 0.8px;
            line-height: 1.3;
            margin-bottom: 16px;
        }
        .hero-title .highlight {
            display: inline;
            background: linear-gradient(135deg, #FF4D2E 0%, #FF7B5A 40%, #FF4D2E 70%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 8px rgba(255, 77, 46, 0.4));
        }

        .hero-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 24px;
            max-width: 480px;
        }

        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
        }
        .hero-tag {
            font-size: var(--font-tiny);
            padding: 5px 14px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: var(--text-muted);
            letter-spacing: 0.3px;
            transition: all var(--transition-fast);
        }
        .hero-tag:hover {
            border-color: var(--border-glow);
            color: var(--text-secondary);
            background: rgba(255, 255, 255, 0.07);
        }

        .hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            background: var(--orange);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            border-radius: var(--radius-btn);
            box-shadow: var(--shadow-glow-orange);
            border: none;
            cursor: pointer;
            letter-spacing: 0.4px;
            transition: all var(--transition-smooth);
            white-space: nowrap;
        }
        .btn-primary:hover {
            box-shadow: var(--shadow-glow-orange-hover);
            transform: translateY(-2px);
            background: #FF5535;
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            background: transparent;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 15px;
            border-radius: var(--radius-btn);
            border: 1px solid rgba(255, 255, 255, 0.22);
            cursor: pointer;
            letter-spacing: 0.4px;
            transition: all var(--transition-smooth);
            white-space: nowrap;
        }
        .btn-outline:hover {
            border-color: rgba(255, 255, 255, 0.55);
            box-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
        }

        .hero-live-card {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 28px 24px;
            box-shadow: var(--shadow-card);
        }
        .hero-live-card .card-header-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        .live-label {
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: var(--font-sm);
            color: var(--orange);
            font-weight: 600;
            letter-spacing: 0.4px;
        }
        .live-dot {
            width: 8px;
            height: 8px;
            background: var(--orange);
            border-radius: 50%;
            animation: pulse-dot 1.2s ease-in-out infinite;
            box-shadow: 0 0 10px var(--orange-glow);
        }
        .match-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 16px;
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.02);
            margin-bottom: 10px;
            transition: all var(--transition-fast);
            border: 1px solid transparent;
        }
        .match-row:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: var(--border-orange);
        }
        .match-team {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
            letter-spacing: 0.3px;
            min-width: 70px;
            text-align: center;
        }
        .match-team.red {
            color: #FF6B6B;
        }
        .match-team.blue {
            color: #6BA3FF;
        }
        .match-score {
            font-family: 'Rajdhani', 'Inter', sans-serif;
            font-size: 26px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 2px;
            min-width: 56px;
            text-align: center;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 8px;
            padding: 4px 10px;
        }
        .match-score.live {
            color: var(--orange);
            text-shadow: 0 0 16px var(--orange-glow);
        }
        .match-map-tag {
            font-size: 10px;
            color: var(--text-muted);
            background: rgba(255, 255, 255, 0.04);
            padding: 3px 8px;
            border-radius: 10px;
            white-space: nowrap;
        }

        /* Section通用 */
        .section {
            padding: 64px 0;
            position: relative;
            z-index: 1;
        }
        .section-label {
            display: inline-block;
            font-size: var(--font-sm);
            color: var(--orange);
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .section-title {
            font-size: var(--font-h2);
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            margin-bottom: 12px;
            line-height: 1.35;
        }
        .section-desc {
            font-size: var(--font-body);
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 600px;
        }
        .section-header {
            margin-bottom: 40px;
            text-align: center;
        }
        .section-header .section-title {
            margin-bottom: 10px;
        }
        .section-header .section-desc {
            margin: 0 auto;
        }

        /* 数据指标条 */
        .stats-strip {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: -40px;
            position: relative;
            z-index: 5;
        }
        .stat-card-mini {
            background: var(--bg-card);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 22px 18px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }
        .stat-card-mini:hover {
            transform: translateY(-4px);
            border-color: var(--border-glow);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
        }
        .stat-number {
            font-family: 'Rajdhani', 'Inter', sans-serif;
            font-size: 38px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 1px;
            line-height: 1;
            margin-bottom: 6px;
        }
        .stat-number.orange {
            color: var(--orange);
            text-shadow: 0 0 14px var(--orange-glow);
        }
        .stat-number.gold {
            color: var(--gold);
            text-shadow: 0 0 12px var(--gold-glow);
        }
        .stat-label-mini {
            font-size: var(--font-tiny);
            color: var(--text-muted);
            letter-spacing: 0.4px;
        }

        /* 标签栏 */
        .tab-bar {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 36px;
        }
        .tab-btn {
            padding: 9px 22px;
            border-radius: 22px;
            font-size: 14px;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-muted);
            cursor: pointer;
            letter-spacing: 0.3px;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .tab-btn:hover {
            color: var(--text-secondary);
            border-color: var(--border-glow);
            background: rgba(255, 255, 255, 0.06);
        }
        .tab-btn.active {
            background: rgba(255, 77, 46, 0.15);
            border-color: var(--orange);
            color: var(--orange);
            font-weight: 600;
            box-shadow: 0 0 14px rgba(255, 77, 46, 0.2);
        }

        /* 对战卡片网格 */
        .match-cards-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .match-card {
            background: var(--bg-card);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 22px 20px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            display: flex;
            align-items: center;
            gap: 16px;
            position: relative;
            overflow: hidden;
        }
        .match-card:hover {
            border-color: var(--border-orange);
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 77, 46, 0.08);
        }
        .match-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(255, 77, 46, 0.03) 0%, transparent 70%);
            pointer-events: none;
            opacity: 0;
            transition: opacity var(--transition-smooth);
        }
        .match-card:hover::before {
            opacity: 1;
        }
        .match-card-time {
            font-family: 'Rajdhani', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: var(--gold);
            min-width: 56px;
            text-align: center;
            letter-spacing: 0.5px;
        }
        .match-card-teams {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
            position: relative;
            z-index: 1;
        }
        .match-card-team-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }
        .match-card-team-name {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
            letter-spacing: 0.3px;
        }
        .match-card-score-num {
            font-family: 'Rajdhani', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            min-width: 28px;
            text-align: center;
        }
        .match-card-score-num.win {
            color: var(--gold);
            text-shadow: 0 0 10px var(--gold-glow);
        }
        .match-card-vs {
            font-size: 11px;
            color: var(--text-muted);
            text-align: center;
            letter-spacing: 1px;
        }
        .match-card-stage-tag {
            position: absolute;
            top: 12px;
            right: 14px;
            font-size: 10px;
            padding: 3px 10px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-muted);
            letter-spacing: 0.3px;
            z-index: 1;
        }
        .match-card-stage-tag.hot {
            background: rgba(255, 77, 46, 0.12);
            color: var(--orange);
            border: 1px solid rgba(255, 77, 46, 0.2);
        }

        /* 时间轴 */
        .timeline-scroll {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding: 8px 0 20px;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.08) transparent;
        }
        .timeline-scroll::-webkit-scrollbar {
            height: 4px;
        }
        .timeline-scroll::-webkit-scrollbar-track {
            background: transparent;
        }
        .timeline-scroll::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 4px;
        }
        .timeline-item {
            flex: 0 0 auto;
            min-width: 200px;
            background: var(--bg-card);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 18px 16px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            cursor: pointer;
            position: relative;
        }
        .timeline-item:hover {
            border-color: var(--border-orange);
            transform: translateY(-3px);
            box-shadow: 0 12px 34px rgba(0, 0, 0, 0.5);
        }
        .timeline-date {
            font-family: 'Rajdhani', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: 0.8px;
            margin-bottom: 8px;
        }
        .timeline-match-count {
            font-size: var(--font-tiny);
            color: var(--text-muted);
            margin-bottom: 4px;
        }
        .timeline-game-tag {
            font-size: 10px;
            padding: 3px 8px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-muted);
            display: inline-block;
        }

        /* 流程板块 */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .step-card {
            background: var(--bg-card);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 28px 20px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            position: relative;
        }
        .step-card:hover {
            transform: translateY(-4px);
            border-color: var(--border-glow);
            box-shadow: 0 14px 38px rgba(0, 0, 0, 0.5);
        }
        .step-number {
            font-family: 'Rajdhani', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: var(--orange);
            opacity: 0.6;
            line-height: 1;
            margin-bottom: 10px;
            text-shadow: 0 0 20px var(--orange-glow);
        }
        .step-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
            letter-spacing: 0.3px;
        }
        .step-desc {
            font-size: var(--font-sm);
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* FAQ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: var(--bg-card);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .faq-item:hover {
            border-color: var(--border-glow);
        }
        .faq-item.open {
            border-color: var(--border-orange);
            box-shadow: 0 0 20px rgba(255, 77, 46, 0.06);
        }
        .faq-question {
            padding: 18px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-weight: 600;
            font-size: 15px;
            color: var(--text-primary);
            letter-spacing: 0.3px;
            user-select: none;
        }
        .faq-number {
            font-family: 'Rajdhani', sans-serif;
            color: var(--orange);
            font-weight: 700;
            font-size: 16px;
            min-width: 28px;
            opacity: 0.7;
        }
        .faq-arrow {
            font-size: 13px;
            color: var(--text-muted);
            transition: transform var(--transition-smooth);
            flex-shrink: 0;
        }
        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
            color: var(--orange);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 22px 20px;
        }
        .faq-answer-inner {
            font-size: var(--font-body);
            color: var(--text-muted);
            line-height: 1.7;
            padding-left: 16px;
            border-left: 3px solid var(--orange);
            border-radius: 2px;
        }

        /* CTA */
        .cta-section {
            text-align: center;
            padding: 72px 0 80px;
            position: relative;
            z-index: 1;
        }
        .cta-card {
            background: linear-gradient(135deg, rgba(255, 77, 46, 0.08) 0%, rgba(230, 180, 34, 0.05) 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-xl);
            padding: 48px 32px;
            box-shadow: var(--shadow-card);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        .cta-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .cta-desc {
            color: var(--text-muted);
            margin-bottom: 24px;
            font-size: 15px;
        }

        /* 评论模块 */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .review-card {
            background: var(--bg-card);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 20px 16px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .review-card:hover {
            border-color: var(--border-glow);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .review-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255, 77, 46, 0.3) 0%, rgba(230, 180, 34, 0.2) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
            flex-shrink: 0;
        }
        .review-name {
            font-weight: 600;
            font-size: 13px;
            color: var(--text-primary);
            letter-spacing: 0.3px;
        }
        .review-tag {
            font-size: 10px;
            color: var(--text-muted);
        }
        .review-stars {
            color: var(--gold);
            font-size: 12px;
            letter-spacing: 2px;
        }
        .review-body {
            font-size: var(--font-sm);
            color: var(--text-secondary);
            line-height: 1.6;
            font-style: italic;
        }
        .review-footer {
            font-size: 10px;
            color: var(--text-muted);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* 推荐对阵横幅 */
        .featured-banner {
            background: linear-gradient(135deg, rgba(10, 20, 50, 0.7) 0%, rgba(20, 35, 70, 0.6) 100%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 36px 28px;
            display: flex;
            align-items: center;
            gap: 28px;
            box-shadow: var(--shadow-card);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: all var(--transition-smooth);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .featured-banner:hover {
            border-color: var(--border-orange);
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(255, 77, 46, 0.06);
            transform: translateY(-3px);
        }
        .featured-banner::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(255, 77, 46, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }
        .featured-img-wrap {
            width: 120px;
            height: 80px;
            border-radius: var(--radius-md);
            overflow: hidden;
            flex-shrink: 0;
            border: 2px solid var(--border-orange);
            box-shadow: 0 0 16px rgba(255, 77, 46, 0.15);
        }
        .featured-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .featured-info {
            flex: 1;
            position: relative;
            z-index: 1;
        }
        .featured-label {
            font-size: 10px;
            color: var(--orange);
            font-weight: 600;
            letter-spacing: 0.8px;
            margin-bottom: 6px;
            text-transform: uppercase;
        }
        .featured-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.4px;
            margin-bottom: 4px;
        }
        .featured-detail {
            font-size: var(--font-sm);
            color: var(--text-muted);
        }
        .featured-arrow {
            font-size: 24px;
            color: var(--orange);
            flex-shrink: 0;
            transition: transform var(--transition-smooth);
        }
        .featured-banner:hover .featured-arrow {
            transform: translateX(6px);
        }

        /* Footer */
        .site-footer {
            background: #05081C;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 56px 0 28px;
            position: relative;
            z-index: 1;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 40px;
        }
        .footer-col h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            letter-spacing: 0.4px;
            margin-bottom: 16px;
        }
        .footer-col p {
            font-size: var(--font-sm);
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 8px;
        }
        .footer-col a {
            display: block;
            font-size: var(--font-sm);
            color: var(--text-muted);
            margin-bottom: 8px;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--orange);
        }
        .footer-social {
            display: flex;
            gap: 10px;
            margin-top: 12px;
        }
        .social-icon {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            cursor: pointer;
            transition: all var(--transition-fast);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .social-icon:hover {
            background: rgba(255, 77, 46, 0.15);
            border-color: var(--border-orange);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: var(--font-tiny);
            color: var(--text-muted);
            line-height: 2;
        }
        .footer-bottom a {
            color: var(--text-muted);
            margin: 0 6px;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--orange);
        }
        .beian-info {
            font-size: 11px;
            color: var(--text-muted);
            letter-spacing: 0.2px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }
            .hero-title {
                font-size: 28px;
            }
            .stats-strip {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
                margin-top: -30px;
            }
            .match-cards-grid {
                grid-template-columns: 1fr;
            }
            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
            .nav-links {
                gap: 20px;
            }
            .nav-links a {
                font-size: 13px;
            }
        }

        @media (max-width: 768px) {
            .site-header {
                height: 60px;
            }
            .header-inner {
                padding: 0 16px;
            }
            .logo-text {
                font-size: 18px;
            }
            .logo-subtitle {
                display: none;
            }
            .nav-links {
                display: none;
            }
            .hamburger-btn {
                display: flex;
            }
            .hero-section {
                padding: 50px 0 60px;
                min-height: auto;
            }
            .hero-title {
                font-size: 24px;
            }
            .hero-subtitle {
                font-size: 14px;
            }
            .stats-strip {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
                margin-top: -20px;
            }
            .stat-number {
                font-size: 28px;
            }
            .match-cards-grid {
                grid-template-columns: 1fr;
            }
            .steps-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .step-number {
                font-size: 36px;
            }
            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .tab-bar {
                gap: 4px;
            }
            .tab-btn {
                padding: 7px 14px;
                font-size: 12px;
            }
            .section {
                padding: 40px 0;
            }
            .cta-section {
                padding: 48px 0 56px;
            }
            .cta-card {
                padding: 32px 20px;
            }
            .cta-title {
                font-size: 20px;
            }
            .featured-banner {
                flex-direction: column;
                text-align: center;
                padding: 24px 18px;
            }
            .featured-img-wrap {
                width: 100px;
                height: 66px;
            }
            .container {
                padding: 0 16px;
            }
            .hero-btns {
                flex-direction: column;
                gap: 10px;
            }
            .btn-primary,
            .btn-outline {
                width: 100%;
                justify-content: center;
                text-align: center;
            }
        }

        @media (max-width: 520px) {
            .hero-title {
                font-size: 20px;
            }
            .hero-subtitle {
                font-size: 13px;
            }
            .stats-strip {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
                margin-top: -16px;
            }
            .stat-card-mini {
                padding: 14px 10px;
            }
            .stat-number {
                font-size: 24px;
            }
            .stat-label-mini {
                font-size: 10px;
            }
            .steps-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .match-card {
                flex-direction: column;
                text-align: center;
                gap: 10px;
                padding: 18px 14px;
            }
            .tab-btn {
                padding: 6px 10px;
                font-size: 11px;
                border-radius: 16px;
            }
            .section-title {
                font-size: 18px;
            }
            .faq-question {
                font-size: 13px;
                padding: 14px 16px;
            }
            .faq-item.open .faq-answer {
                padding: 0 16px 16px;
            }
            .faq-answer-inner {
                font-size: 13px;
            }
            .hero-live-card {
                padding: 18px 14px;
            }
            .match-score {
                font-size: 20px;
                padding: 3px 8px;
                min-width: 44px;
            }
            .match-team {
                font-size: 12px;
                min-width: 50px;
            }
        }

/* roulang page: category2 */
:root {
            --bg-deep: #070B24;
            --bg-card: rgba(10, 20, 50, 0.6);
            --bg-glass: rgba(12, 22, 48, 0.55);
            --accent-orange: #FF4D2E;
            --accent-gold: #E6B422;
            --accent-cyan: #00D4AA;
            --accent-blue: #3B7CFF;
            --text-primary: #FFFFFF;
            --text-body: #C8D6E5;
            --text-muted: #8395A7;
            --text-dim: #5A6D80;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-card: rgba(255, 255, 255, 0.1);
            --border-glow: rgba(255, 77, 46, 0.4);
            --border-gold: rgba(230, 180, 34, 0.5);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-2xl: 24px;
            --radius-full: 28px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.55);
            --shadow-glow-orange: 0 0 20px rgba(255, 77, 46, 0.5);
            --shadow-glow-gold: 0 0 18px rgba(230, 180, 34, 0.4);
            --shadow-glow-blue: 0 0 16px rgba(59, 124, 255, 0.35);
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            --nav-height: 68px;
            --container-max: 1320px;
            --font-display: 'Rajdhani', 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --font-body: 'Inter', 'PingFang SC', 'Microsoft YaHei', 'Source Han Sans CN', sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 15px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-deep);
            color: var(--text-body);
            line-height: 1.75;
            min-height: 100vh;
            overflow-x: hidden;
            background-image:
                radial-gradient(circle at 20% 10%, rgba(59, 124, 255, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 78% 35%, rgba(255, 77, 46, 0.04) 0%, transparent 45%),
                radial-gradient(circle at 50% 60%, rgba(230, 180, 34, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 15% 80%, rgba(0, 212, 170, 0.04) 0%, transparent 35%);
            background-attachment: fixed;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            background-image:
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.008) 2px, rgba(255, 255, 255, 0.008) 3px),
                repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.008) 2px, rgba(255, 255, 255, 0.008) 3px);
            background-size: 48px 48px;
            opacity: 0.6;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-smooth);
        }

        button {
            cursor: pointer;
            font-family: var(--font-body);
            border: none;
            background: none;
            transition: all var(--transition-smooth);
        }

        input,
        select {
            font-family: var(--font-body);
            font-size: 0.95rem;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        /* ========== HEADER / NAV ========== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--nav-height);
            background: rgba(7, 11, 36, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            z-index: 1000;
            display: flex;
            align-items: center;
            transition: background var(--transition-smooth);
        }

        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-text {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #E6B422 0%, #F0D060 50%, #C99A1E 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            line-height: 1;
        }

        .logo-sub {
            font-size: 0.7rem;
            color: var(--text-muted);
            letter-spacing: 0.5px;
            white-space: nowrap;
            padding-left: 6px;
            border-left: 1px solid rgba(255, 255, 255, 0.2);
            line-height: 1.2;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
        }

        .nav-links a {
            display: inline-block;
            padding: 8px 16px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-body);
            border-radius: var(--radius-full);
            position: relative;
            transition: all var(--transition-smooth);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        .nav-links a:hover {
            color: var(--accent-orange);
        }

        .nav-links a.active {
            color: var(--accent-orange);
            font-weight: 700;
            background: rgba(255, 77, 46, 0.08);
            box-shadow: inset 0 0 0 1px rgba(255, 77, 46, 0.25);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 2px;
            background: var(--accent-orange);
            border-radius: 2px;
            box-shadow: 0 0 10px rgba(255, 77, 46, 0.7);
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 8px;
            cursor: pointer;
            z-index: 1001;
            background: none;
            border: none;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 26px;
            height: 2.5px;
            background: var(--text-primary);
            border-radius: 3px;
            transition: all var(--transition-smooth);
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        @media (max-width: 1024px) {
            .nav-links {
                position: fixed;
                top: var(--nav-height);
                left: 0;
                width: 100%;
                background: rgba(7, 11, 36, 0.95);
                backdrop-filter: blur(24px);
                -webkit-backdrop-filter: blur(24px);
                flex-direction: column;
                gap: 4px;
                padding: 16px 24px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
                transform: translateY(-120%);
                transition: transform var(--transition-smooth);
                z-index: 999;
                box-shadow: var(--shadow-lg);
            }
            .nav-links.open {
                transform: translateY(0);
            }
            .nav-links a {
                width: 100%;
                text-align: center;
                padding: 12px 16px;
                font-size: 1rem;
            }
            .mobile-menu-toggle {
                display: flex;
            }
        }

        @media (max-width: 520px) {
            .logo-text {
                font-size: 1.25rem;
            }
            .logo-sub {
                font-size: 0.6rem;
                padding-left: 4px;
            }
            .container {
                padding: 0 16px;
            }
            .nav-links {
                padding: 12px 16px;
            }
        }

        /* ========== HERO ========== */
        .hero-section {
            position: relative;
            min-height: 520px;
            display: flex;
            align-items: center;
            padding-top: calc(var(--nav-height) + 40px);
            padding-bottom: 60px;
            overflow: hidden;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(7, 11, 36, 0.75) 0%, rgba(7, 11, 36, 0.6) 40%, rgba(7, 11, 36, 0.85) 85%, #070B24 100%);
            z-index: 0;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at 60% 35%, rgba(255, 77, 46, 0.12) 0%, transparent 55%),
                radial-gradient(ellipse at 30% 60%, rgba(230, 180, 34, 0.08) 0%, transparent 50%);
            z-index: 0;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero-left {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 77, 46, 0.15);
            border: 1px solid rgba(255, 77, 46, 0.3);
            border-radius: var(--radius-full);
            padding: 6px 16px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--accent-orange);
            letter-spacing: 1px;
            width: fit-content;
        }

        .hero-badge i {
            font-size: 0.75rem;
        }

        .hero-left h1 {
            font-family: var(--font-display);
            font-size: 2.65rem;
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1.2;
            letter-spacing: 0.5px;
        }

        .hero-left h1 .highlight {
            background: linear-gradient(135deg, #FF4D2E 0%, #FF7B5F 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-left .hero-subtitle {
            font-size: 1.05rem;
            color: var(--text-body);
            line-height: 1.6;
            max-width: 440px;
        }

        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .hero-tag {
            padding: 6px 14px;
            border-radius: var(--radius-full);
            font-size: 0.78rem;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: var(--text-body);
            transition: all var(--transition-smooth);
            cursor: default;
        }

        .hero-tag:hover {
            border-color: rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.1);
        }

        .hero-cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            background: var(--accent-orange);
            color: #fff;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: var(--radius-full);
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-glow-orange);
            transition: all var(--transition-smooth);
            letter-spacing: 0.4px;
            white-space: nowrap;
        }

        .btn-primary:hover {
            box-shadow: 0 0 35px rgba(255, 77, 46, 0.8);
            transform: translateY(-2px);
            background: #FF5E42;
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            background: transparent;
            color: #fff;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: var(--radius-full);
            border: 1px solid rgba(255, 255, 255, 0.25);
            cursor: pointer;
            transition: all var(--transition-smooth);
            letter-spacing: 0.4px;
            white-space: nowrap;
        }

        .btn-outline:hover {
            border-color: #fff;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-2px);
        }

        .hero-right {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .hero-card-glass {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-xl);
            padding: 24px;
            box-shadow: var(--shadow-card);
        }

        .hero-card-glass .card-header-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .hero-card-glass .card-header-row .live-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #FF4D2E;
            animation: pulse-dot 1.6s infinite;
            box-shadow: 0 0 12px rgba(255, 77, 46, 0.7);
        }

        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 8px rgba(255, 77, 46, 0.6);
            }
            50% {
                box-shadow: 0 0 22px rgba(255, 77, 46, 1);
            }
        }

        .hero-match-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-subtle);
            gap: 12px;
        }

        .hero-match-row:last-child {
            border-bottom: none;
        }

        .match-team {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-primary);
            min-width: 60px;
            text-align: center;
        }

        .match-score {
            font-family: var(--font-display);
            font-size: 1.55rem;
            font-weight: 700;
            background: linear-gradient(135deg, #FF4D2E 0%, #FF9A7B 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            min-width: 50px;
            text-align: center;
            letter-spacing: 2px;
        }

        .match-vs {
            color: var(--text-muted);
            font-size: 0.75rem;
            font-weight: 500;
        }

        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero-left h1 {
                font-size: 2.1rem;
            }
            .hero-right {
                max-width: 500px;
            }
            .hero-section {
                min-height: auto;
                padding-bottom: 40px;
            }
        }

        @media (max-width: 768px) {
            .hero-left h1 {
                font-size: 1.7rem;
            }
            .hero-left .hero-subtitle {
                font-size: 0.9rem;
            }
            .hero-section {
                padding-top: calc(var(--nav-height) + 24px);
                padding-bottom: 32px;
            }
            .hero-cta-row {
                flex-direction: column;
                gap: 10px;
            }
            .btn-primary,
            .btn-outline {
                justify-content: center;
                width: 100%;
                padding: 12px 20px;
                font-size: 0.9rem;
            }
            .hero-match-row {
                flex-wrap: wrap;
                justify-content: center;
                gap: 8px;
            }
            .match-team {
                min-width: auto;
                font-size: 0.8rem;
            }
            .match-score {
                font-size: 1.3rem;
                min-width: auto;
            }
        }

        @media (max-width: 520px) {
            .hero-left h1 {
                font-size: 1.45rem;
            }
            .hero-tags {
                gap: 6px;
            }
            .hero-tag {
                font-size: 0.7rem;
                padding: 4px 10px;
            }
            .hero-card-glass {
                padding: 16px;
                border-radius: var(--radius-lg);
            }
        }

        /* ========== SECTION COMMON ========== */
        .section {
            padding: 56px 0;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-family: var(--font-display);
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }

        .section-header .section-subtitle {
            font-size: 0.9rem;
            color: var(--text-muted);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .section-accent-line {
            width: 50px;
            height: 3px;
            background: var(--accent-orange);
            border-radius: 3px;
            margin: 12px auto 0;
            box-shadow: 0 0 12px rgba(255, 77, 46, 0.5);
        }

        /* ========== STATS CARDS ========== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
        }

        .stat-card {
            background: var(--bg-glass);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: 22px 16px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            cursor: default;
        }

        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .stat-card .stat-icon {
            font-size: 1.6rem;
            margin-bottom: 8px;
            display: block;
        }

        .stat-card .stat-value {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 1px;
            line-height: 1;
            margin-bottom: 4px;
        }

        .stat-card .stat-label {
            font-size: 0.78rem;
            color: var(--text-muted);
            letter-spacing: 0.3px;
        }

        .stat-card.accent-orange .stat-value {
            color: var(--accent-orange);
        }
        .stat-card.accent-gold .stat-value {
            color: var(--accent-gold);
        }
        .stat-card.accent-cyan .stat-value {
            color: var(--accent-cyan);
        }
        .stat-card.accent-blue .stat-value {
            color: var(--accent-blue);
        }

        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 14px;
            }
        }

        @media (max-width: 640px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .stat-card {
                padding: 16px 12px;
            }
            .stat-card .stat-value {
                font-size: 1.4rem;
            }
            .stat-card .stat-label {
                font-size: 0.7rem;
            }
        }

        /* ========== TEAM RANKING CARDS ========== */
        .ranking-scroll-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 8px;
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
        }

        .ranking-scroll-wrap::-webkit-scrollbar {
            height: 5px;
        }
        .ranking-scroll-wrap::-webkit-scrollbar-track {
            background: transparent;
        }
        .ranking-scroll-wrap::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.12);
            border-radius: 10px;
        }

        .ranking-cards-row {
            display: flex;
            gap: 20px;
            min-width: max-content;
            padding: 8px 4px;
        }

        .team-rank-card {
            flex: 0 0 280px;
            background: var(--bg-glass);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-xl);
            padding: 24px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .team-rank-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(255, 77, 46, 0.4);
        }

        .team-rank-card .rank-badge {
            position: absolute;
            top: 14px;
            right: 14px;
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: var(--radius-full);
            letter-spacing: 1px;
        }

        .team-rank-card .rank-badge.rank-1 {
            background: rgba(230, 180, 34, 0.2);
            color: var(--accent-gold);
            border: 1px solid rgba(230, 180, 34, 0.4);
            box-shadow: 0 0 14px rgba(230, 180, 34, 0.3);
        }
        .team-rank-card .rank-badge.rank-2 {
            background: rgba(200, 200, 210, 0.15);
            color: #C0C0D0;
            border: 1px solid rgba(200, 200, 210, 0.35);
        }
        .team-rank-card .rank-badge.rank-3 {
            background: rgba(180, 130, 80, 0.18);
            color: #CD9B6E;
            border: 1px solid rgba(180, 130, 80, 0.35);
        }
        .team-rank-card .rank-badge.rank-other {
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-muted);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .team-rank-card .team-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            border: 2px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 16px rgba(59, 124, 255, 0.2);
            overflow: hidden;
        }

        .team-rank-card .team-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-rank-card .team-name {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .team-rank-card .team-region {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        .team-rank-card .team-stats-mini {
            display: flex;
            gap: 16px;
            font-size: 0.78rem;
            color: var(--text-body);
        }

        .team-rank-card .team-stats-mini span {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .team-rank-card .team-stats-mini .mini-val {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--accent-cyan);
        }

        @media (max-width: 640px) {
            .team-rank-card {
                flex: 0 0 230px;
                padding: 18px;
            }
            .team-rank-card .team-name {
                font-size: 0.9rem;
            }
            .team-rank-card .team-avatar {
                width: 44px;
                height: 44px;
                font-size: 1.3rem;
            }
        }

        /* ========== DATA TABLE ========== */
        .data-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-card);
            background: var(--bg-glass);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: var(--shadow-card);
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
            font-size: 0.88rem;
        }

        .data-table thead th {
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-muted);
            font-weight: 600;
            font-size: 0.78rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            padding: 14px 16px;
            text-align: left;
            border-bottom: 1px solid var(--border-subtle);
            white-space: nowrap;
        }

        .data-table tbody td {
            padding: 13px 16px;
            border-bottom: 1px solid var(--border-subtle);
            color: var(--text-body);
            white-space: nowrap;
        }

        .data-table tbody tr {
            transition: background var(--transition-fast);
        }

        .data-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.03);
        }

        .data-table .team-cell {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .data-table .team-cell .mini-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .data-table .win-rate-bar {
            display: inline-block;
            height: 6px;
            border-radius: 3px;
            background: var(--accent-cyan);
            vertical-align: middle;
            margin-right: 8px;
        }

        .data-table .win-rate-bar.wrap-bg {
            background: rgba(255, 255, 255, 0.08);
            width: 80px;
            position: relative;
            overflow: hidden;
            border-radius: 3px;
        }

        .data-table .win-rate-bar.wrap-bg .fill {
            height: 100%;
            border-radius: 3px;
            background: linear-gradient(90deg, #00D4AA, #3BDBB0);
        }

        .data-table .tag-pill {
            display: inline-block;
            padding: 3px 10px;
            border-radius: var(--radius-full);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }

        .tag-up {
            background: rgba(0, 212, 170, 0.15);
            color: var(--accent-cyan);
            border: 1px solid rgba(0, 212, 170, 0.3);
        }
        .tag-down {
            background: rgba(255, 77, 46, 0.12);
            color: var(--accent-orange);
            border: 1px solid rgba(255, 77, 46, 0.25);
        }
        .tag-stable {
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-muted);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 768px) {
            .data-table {
                min-width: 650px;
                font-size: 0.78rem;
            }
            .data-table thead th,
            .data-table tbody td {
                padding: 10px 10px;
            }
        }

        /* ========== PLAYER CARDS ========== */
        .player-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .player-card {
            background: var(--bg-glass);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-xl);
            padding: 20px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            cursor: pointer;
        }

        .player-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(230, 180, 34, 0.35);
        }

        .player-card .player-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            margin: 0 auto 12px;
            background: rgba(255, 255, 255, 0.06);
            border: 2px solid rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            overflow: hidden;
        }

        .player-card .player-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .player-card .player-name {
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-primary);
            margin-bottom: 3px;
        }

        .player-card .player-role {
            font-size: 0.72rem;
            color: var(--accent-gold);
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }

        .player-card .player-kda {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent-cyan);
            letter-spacing: 1px;
        }

        .player-card .player-kda-label {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        @media (max-width: 1024px) {
            .player-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
        }

        @media (max-width: 520px) {
            .player-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .player-card {
                padding: 14px;
            }
            .player-card .player-avatar {
                width: 50px;
                height: 50px;
                font-size: 1.4rem;
            }
            .player-card .player-name {
                font-size: 0.85rem;
            }
            .player-card .player-kda {
                font-size: 1.1rem;
            }
        }

        /* ========== COMPARISON MODULE ========== */
        .compare-module {
            background: var(--bg-glass);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-2xl);
            padding: 36px 32px;
            box-shadow: var(--shadow-card);
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 24px;
            align-items: center;
        }

        .compare-team-slot {
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--radius-lg);
            border: 1px dashed rgba(255, 255, 255, 0.12);
            transition: all var(--transition-smooth);
            cursor: pointer;
        }

        .compare-team-slot:hover {
            border-color: rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.06);
        }

        .compare-team-slot .compare-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin: 0 auto 8px;
            background: rgba(255, 255, 255, 0.06);
            border: 2px solid rgba(255, 255, 255, 0.14);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .compare-team-slot .compare-team-name {
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-primary);
        }

        .compare-divider {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--accent-orange);
            letter-spacing: 3px;
            text-align: center;
        }

        @media (max-width: 768px) {
            .compare-module {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 24px 20px;
            }
            .compare-divider {
                font-size: 1.3rem;
            }
        }

        /* ========== REVIEWS ========== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .review-card {
            background: var(--bg-glass);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: 20px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            cursor: default;
        }

        .review-card:hover {
            border-color: rgba(255, 255, 255, 0.22);
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }

        .review-card .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .review-card .review-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
        }

        .review-card .review-name {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--text-primary);
        }

        .review-card .review-tag {
            font-size: 0.68rem;
            color: var(--text-muted);
        }

        .review-card .review-stars {
            color: var(--accent-gold);
            font-size: 0.75rem;
            margin-bottom: 8px;
            letter-spacing: 2px;
        }

        .review-card .review-text {
            font-size: 0.82rem;
            color: var(--text-body);
            line-height: 1.55;
            font-style: italic;
        }

        @media (max-width: 1024px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
        }

        @media (max-width: 520px) {
            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .review-card {
                padding: 16px;
            }
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 820px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: var(--bg-glass);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }

        .faq-item:hover {
            border-color: rgba(255, 255, 255, 0.18);
        }

        .faq-question {
            width: 100%;
            padding: 18px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-primary);
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            transition: color var(--transition-smooth);
            letter-spacing: 0.3px;
        }

        .faq-question:hover {
            color: var(--accent-orange);
        }

        .faq-question .faq-num {
            font-family: var(--font-display);
            font-weight: 700;
            color: var(--accent-orange);
            font-size: 1.1rem;
            flex-shrink: 0;
            width: 28px;
        }

        .faq-question .faq-arrow {
            flex-shrink: 0;
            font-size: 0.8rem;
            color: var(--text-muted);
            transition: transform var(--transition-smooth);
        }

        .faq-item.open .faq-arrow {
            transform: rotate(90deg);
            color: var(--accent-orange);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
            padding: 0 22px;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 22px 18px;
        }

        .faq-answer p {
            font-size: 0.85rem;
            color: var(--text-body);
            line-height: 1.7;
            border-left: 3px solid var(--accent-orange);
            padding-left: 14px;
            margin: 0;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            position: relative;
            padding: 60px 0;
            text-align: center;
            background: radial-gradient(ellipse at center, rgba(255, 77, 46, 0.08) 0%, transparent 65%),
                radial-gradient(ellipse at 50% 80%, rgba(230, 180, 34, 0.05) 0%, transparent 55%);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .cta-section h2 {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .cta-section p {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 28px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .cta-section .btn-primary {
            font-size: 1rem;
            padding: 15px 36px;
            letter-spacing: 0.5px;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: rgba(4, 7, 22, 0.9);
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 24px;
            position: relative;
            z-index: 1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-col h4 {
            color: var(--text-primary);
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 14px;
            letter-spacing: 0.4px;
        }

        .footer-col p {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .footer-col a {
            display: block;
            font-size: 0.8rem;
            color: var(--text-muted);
            padding: 4px 0;
            transition: color var(--transition-smooth);
        }

        .footer-col a:hover {
            color: var(--accent-orange);
        }

        .footer-social {
            display: flex;
            gap: 10px;
            margin-top: 8px;
        }

        .social-icon {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all var(--transition-smooth);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .social-icon:hover {
            background: rgba(255, 77, 46, 0.2);
            border-color: rgba(255, 77, 46, 0.4);
            box-shadow: 0 0 14px rgba(255, 77, 46, 0.3);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-subtle);
            font-size: 0.72rem;
            color: var(--text-dim);
            line-height: 2;
        }

        .footer-bottom a {
            color: var(--text-dim);
            transition: color var(--transition-smooth);
        }

        .footer-bottom a:hover {
            color: var(--accent-orange);
        }

        .beian-info {
            font-size: 0.7rem;
            color: var(--text-dim);
            letter-spacing: 0.3px;
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .footer-bottom {
                font-size: 0.68rem;
            }
            .cta-section h2 {
                font-size: 1.5rem;
            }
            .section-header h2 {
                font-size: 1.5rem;
            }
        }

/* roulang page: category4 */
:root {
            --bg-deep: #070B24;
            --bg-card: rgba(10, 20, 50, 0.6);
            --bg-nav: rgba(7, 11, 36, 0.85);
            --accent-orange: #FF4D2E;
            --accent-gold: #E6B422;
            --text-primary: #FFFFFF;
            --text-body: #C8D6E5;
            --text-muted: #8395A7;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-card: rgba(255, 255, 255, 0.1);
            --border-hover: rgba(255, 255, 255, 0.25);
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
            --shadow-glow-orange: 0 0 20px rgba(255, 77, 46, 0.5);
            --shadow-glow-orange-hover: 0 0 35px rgba(255, 77, 46, 0.8);
            --shadow-glow-gold: 0 0 16px rgba(230, 180, 34, 0.45);
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --radius-btn: 28px;
            --radius-tag: 20px;
            --gap-grid: 24px;
            --max-width: 1320px;
            --nav-height: 68px;
            --font-title: 'PingFang SC', 'Microsoft YaHei', 'Source Han Sans CN', 'Inter', sans-serif;
            --font-mono: 'Rajdhani', 'Inter', 'PingFang SC', monospace;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.25s ease;
            --transition-slow: 0.35s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-title);
            font-size: 15px;
            line-height: 1.75;
            background-color: var(--bg-deep);
            color: var(--text-body);
            min-height: 100vh;
            background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 28px 28px;
            background-position: 0 0;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            border: none;
            font-family: inherit;
            outline: none;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--accent-orange);
            outline-offset: 3px;
            border-radius: 4px;
        }

        input {
            font-family: inherit;
            border: none;
            outline: none;
        }

        ul,
        ol {
            list-style: none;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== HEADER & NAV ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-nav);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            height: var(--nav-height);
            display: flex;
            align-items: center;
        }

        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-text {
            font-size: 22px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--accent-gold) 0%, #F7D774 50%, var(--accent-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .logo-sub {
            font-size: 11px;
            color: var(--text-muted);
            white-space: nowrap;
            letter-spacing: 0.3px;
            border-left: 1px solid rgba(255, 255, 255, 0.18);
            padding-left: 10px;
            line-height: 1.3;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-links a {
            font-size: 14.5px;
            font-weight: 500;
            color: var(--text-body);
            position: relative;
            padding: 6px 0;
            letter-spacing: 0.3px;
            transition: color var(--transition-fast);
            white-space: nowrap;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-orange);
            border-radius: 2px;
            transition: width var(--transition-smooth);
            box-shadow: 0 0 8px rgba(255, 77, 46, 0.6);
        }

        .nav-links a:hover {
            color: var(--accent-orange);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a.active {
            color: var(--accent-orange);
            font-weight: 700;
        }

        .nav-links a.active::after {
            width: 100%;
            box-shadow: 0 0 12px rgba(255, 77, 46, 0.8);
        }

        .mobile-menu-toggle {
            display: none;
            background: transparent;
            color: var(--text-primary);
            font-size: 26px;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background var(--transition-fast);
        }
        .mobile-menu-toggle:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(7, 11, 36, 0.94);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            z-index: 999;
            flex-direction: column;
            padding: 32px 24px;
            gap: 8px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        .mobile-nav-panel.open {
            display: flex;
        }
        .mobile-nav-panel a {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-body);
            padding: 14px 16px;
            border-radius: var(--radius-md);
            transition: all var(--transition-fast);
            display: block;
        }
        .mobile-nav-panel a:hover,
        .mobile-nav-panel a.active {
            color: var(--accent-orange);
            background: rgba(255, 77, 46, 0.08);
        }
        .mobile-nav-panel a.active {
            border-left: 3px solid var(--accent-orange);
        }

        /* ========== HERO ========== */
        .hero-section {
            position: relative;
            background: url('/assets/images/backpic/back-2.webp') center / cover no-repeat;
            min-height: 520px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(7, 11, 36, 0.75) 0%, rgba(7, 11, 36, 0.88) 40%, rgba(7, 11, 36, 0.95) 100%);
            z-index: 1;
        }
        .hero-section .container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            width: 100%;
        }
        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(230, 180, 34, 0.15);
            border: 1px solid rgba(230, 180, 34, 0.3);
            color: var(--accent-gold);
            font-size: 13px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: var(--radius-tag);
            width: fit-content;
            letter-spacing: 0.5px;
        }
        .hero-content h1 {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1.3;
            letter-spacing: 0.5px;
        }
        .hero-content h1 span {
            color: var(--accent-orange);
        }
        .hero-subtitle {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.65;
            max-width: 460px;
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .hero-tag {
            font-size: 12.5px;
            font-weight: 500;
            color: var(--text-body);
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            padding: 6px 14px;
            border-radius: var(--radius-tag);
            transition: all var(--transition-fast);
        }
        .hero-tag:hover {
            border-color: var(--accent-orange);
            color: var(--accent-orange);
            background: rgba(255, 77, 46, 0.08);
        }
        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 4px;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent-orange);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            padding: 13px 28px;
            border-radius: var(--radius-btn);
            box-shadow: var(--shadow-glow-orange);
            transition: all var(--transition-smooth);
            letter-spacing: 0.4px;
            white-space: nowrap;
        }
        .btn-primary:hover {
            box-shadow: var(--shadow-glow-orange-hover);
            transform: translateY(-2px);
            background: #FF5C3F;
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--text-body);
            font-size: 15px;
            font-weight: 500;
            padding: 12px 26px;
            border-radius: var(--radius-btn);
            border: 1px solid rgba(255, 255, 255, 0.25);
            transition: all var(--transition-smooth);
            letter-spacing: 0.4px;
            white-space: nowrap;
        }
        .btn-secondary:hover {
            border-color: #fff;
            color: #fff;
            box-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
            transform: translateY(-2px);
        }
        .hero-card {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .hero-card-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .hero-card-item:last-child {
            border-bottom: none;
        }
        .hero-card-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(230, 180, 34, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
            border: 1px solid rgba(230, 180, 34, 0.25);
        }
        .hero-card-info {
            flex: 1;
            min-width: 0;
        }
        .hero-card-info .hc-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.4;
        }
        .hero-card-info .hc-meta {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.5;
        }
        .hero-card-badge {
            font-size: 12px;
            font-weight: 600;
            color: var(--accent-orange);
            background: rgba(255, 77, 46, 0.1);
            padding: 4px 10px;
            border-radius: 12px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        /* ========== SECTION COMMON ========== */
        .section {
            padding: 64px 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 44px;
        }
        .section-header h2 {
            font-size: 26px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
            letter-spacing: 0.4px;
        }
        .section-header p {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* ========== STATS GRID ========== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--gap-grid);
        }
        .stat-card {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: 24px 20px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background: var(--accent-orange);
            border-radius: 0 0 4px 4px;
            opacity: 0.7;
        }
        .stat-card:hover {
            border-color: rgba(255, 77, 46, 0.35);
            transform: translateY(-4px);
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
        }
        .stat-icon {
            font-size: 30px;
            margin-bottom: 10px;
            display: block;
        }
        .stat-value {
            font-family: var(--font-mono);
            font-size: 34px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            line-height: 1.1;
        }
        .stat-value.gold {
            color: var(--accent-gold);
        }
        .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 6px;
            letter-spacing: 0.3px;
        }
        .stat-trend {
            font-size: 11px;
            font-weight: 600;
            color: #4ADE80;
            margin-top: 4px;
        }

        /* ========== VERSION TRACKING CARDS ========== */
        .version-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--gap-grid);
        }
        .version-card {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            display: flex;
            flex-direction: column;
        }
        .version-card:hover {
            border-color: rgba(255, 77, 46, 0.35);
            transform: translateY(-4px);
            box-shadow: 0 16px 44px rgba(0, 0, 0, 0.55);
        }
        .version-card-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }
        .version-card-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .version-card-game {
            font-size: 12px;
            font-weight: 600;
            color: var(--accent-orange);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .version-card-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.4;
        }
        .version-card-desc {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.6;
            flex: 1;
        }
        .version-card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            color: var(--text-muted);
            padding-top: 8px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        .version-card-link {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-gold);
            transition: color var(--transition-fast);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .version-card-link:hover {
            color: #F7D774;
        }

        /* ========== TIMELINE / UPDATE LIST ========== */
        .update-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 900px;
            margin: 0 auto;
        }
        .update-item {
            display: flex;
            gap: 20px;
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: 20px 22px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            align-items: flex-start;
        }
        .update-item:hover {
            border-color: rgba(255, 255, 255, 0.18);
            box-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
        }
        .update-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--accent-orange);
            flex-shrink: 0;
            margin-top: 4px;
            box-shadow: 0 0 10px rgba(255, 77, 46, 0.5);
        }
        .update-dot.gold {
            background: var(--accent-gold);
            box-shadow: 0 0 10px rgba(230, 180, 34, 0.5);
        }
        .update-content {
            flex: 1;
            min-width: 0;
        }
        .update-content h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
            line-height: 1.4;
        }
        .update-content p {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .update-meta {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 6px;
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .update-tag {
            font-size: 11px;
            font-weight: 600;
            color: var(--accent-gold);
            background: rgba(230, 180, 34, 0.1);
            padding: 3px 10px;
            border-radius: 12px;
            white-space: nowrap;
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* ========== REVIEWS ========== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--gap-grid);
        }
        .review-card {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: 22px 18px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .review-card:hover {
            border-color: rgba(255, 255, 255, 0.18);
            transform: translateY(-3px);
            box-shadow: 0 14px 38px rgba(0, 0, 0, 0.5);
        }
        .review-stars {
            color: var(--accent-gold);
            font-size: 14px;
            letter-spacing: 2px;
        }
        .review-text {
            font-size: 13.5px;
            color: var(--text-body);
            line-height: 1.65;
            font-style: italic;
            flex: 1;
        }
        .review-author {
            display: flex;
            align-items: center;
            gap: 10px;
            padding-top: 8px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        .review-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(230, 180, 34, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
            border: 1px solid rgba(230, 180, 34, 0.2);
        }
        .review-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
        }
        .review-tag {
            font-size: 11px;
            color: var(--text-muted);
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-item {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: rgba(255, 255, 255, 0.16);
        }
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 20px;
            background: transparent;
            color: var(--text-primary);
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 0.3px;
            text-align: left;
            gap: 14px;
            transition: background var(--transition-fast);
        }
        .faq-question:hover {
            background: rgba(255, 255, 255, 0.03);
        }
        .faq-num {
            font-family: var(--font-mono);
            font-size: 14px;
            color: var(--accent-orange);
            font-weight: 700;
            flex-shrink: 0;
            width: 28px;
            text-align: center;
        }
        .faq-arrow {
            font-size: 14px;
            color: var(--text-muted);
            transition: transform var(--transition-smooth);
            flex-shrink: 0;
        }
        .faq-item.open .faq-arrow {
            transform: rotate(90deg);
            color: var(--accent-orange);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-slow);
            padding: 0 20px;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 20px 20px;
        }
        .faq-answer-inner {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.7;
            border-left: 3px solid var(--accent-orange);
            padding-left: 16px;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            background: linear-gradient(180deg, rgba(7, 11, 36, 0.6) 0%, rgba(7, 11, 36, 0.9) 100%);
            text-align: center;
            padding: 60px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        .cta-section h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
        }
        .cta-section p {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 500px;
            margin: 0 auto 24px;
        }
        .cta-section .btn-primary {
            font-size: 16px;
            padding: 14px 34px;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #04081A;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 48px 0 20px;
            color: var(--text-muted);
            font-size: 13px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.4px;
        }
        .footer-col p {
            font-size: 13px;
            line-height: 1.65;
            color: var(--text-muted);
            margin-bottom: 8px;
        }
        .footer-col a {
            display: block;
            font-size: 13px;
            color: var(--text-muted);
            padding: 4px 0;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--accent-orange);
        }
        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 10px;
        }
        .social-icon {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            cursor: pointer;
            transition: all var(--transition-fast);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .social-icon:hover {
            background: rgba(255, 77, 46, 0.15);
            border-color: var(--accent-orange);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 12px;
            color: var(--text-muted);
            line-height: 2;
        }
        .footer-bottom a {
            color: var(--text-muted);
            margin: 0 6px;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--accent-orange);
        }
        .beian-info {
            font-size: 11px;
            color: #6B7D90;
            margin: 2px 0;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .hero-section .container {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero-content h1 {
                font-size: 26px;
            }
            .hero-card {
                max-width: 500px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .version-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .nav-links {
                gap: 20px;
            }
            .nav-links a {
                font-size: 13.5px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .hero-section {
                min-height: auto;
                padding: 40px 0;
            }
            .hero-content h1 {
                font-size: 22px;
            }
            .hero-subtitle {
                font-size: 14px;
            }
            .hero-cta-group {
                flex-direction: column;
                gap: 10px;
            }
            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
                text-align: center;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
            .stat-card {
                padding: 18px 14px;
            }
            .stat-value {
                font-size: 26px;
            }
            .version-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .update-item {
                flex-direction: column;
                gap: 10px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .section {
                padding: 40px 0;
            }
            .section-header h2 {
                font-size: 22px;
            }
            .container {
                padding: 0 16px;
            }
            .logo-sub {
                display: none;
            }
            .logo-text {
                font-size: 19px;
            }
        }

        @media (max-width: 520px) {
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-value {
                font-size: 22px;
            }
            .stat-label {
                font-size: 11px;
            }
            .hero-content h1 {
                font-size: 20px;
            }
            .hero-tags {
                gap: 6px;
            }
            .hero-tag {
                font-size: 11px;
                padding: 5px 10px;
            }
            .version-card-img {
                height: 140px;
            }
            .faq-question {
                font-size: 13.5px;
                padding: 14px 16px;
            }
        }

/* roulang page: category3 */
:root {
            --bg-primary: #070B24;
            --bg-secondary: #0A1029;
            --bg-card: rgba(10, 20, 50, 0.55);
            --bg-card-hover: rgba(15, 28, 60, 0.7);
            --accent-orange: #FF4D2E;
            --accent-orange-glow: rgba(255, 77, 46, 0.5);
            --accent-orange-strong: rgba(255, 77, 46, 0.8);
            --accent-gold: #E6B422;
            --accent-gold-glow: rgba(230, 180, 34, 0.4);
            --text-primary: #FFFFFF;
            --text-secondary: #C8D6E5;
            --text-muted: #8395A7;
            --text-dim: #5E6E82;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-medium: rgba(255, 255, 255, 0.18);
            --border-glow: rgba(255, 255, 255, 0.25);
            --radius-xl: 20px;
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --radius-pill: 28px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.45);
            --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.6);
            --shadow-glow-orange: 0 0 20px rgba(255, 77, 46, 0.5);
            --shadow-glow-orange-lg: 0 0 35px rgba(255, 77, 46, 0.8);
            --shadow-glow-gold: 0 0 18px rgba(230, 180, 34, 0.35);
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Source Han Sans CN', 'Inter', sans-serif;
            --font-mono: 'Rajdhani', 'Inter', monospace;
            --font-number: 'Rajdhani', 'Inter', sans-serif;
            --nav-height: 68px;
            --container-max: 1320px;
            --gap-section: 80px;
            --gap-block: 48px;
            --gap-card: 24px;
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-size: 15px;
        }

        body {
            font-family: var(--font-sans);
            line-height: 1.75;
            color: var(--text-secondary);
            background: var(--bg-primary);
            background-image:
                radial-gradient(ellipse at 15% 20%, rgba(20, 40, 80, 0.35) 0%, transparent 60%),
                radial-gradient(ellipse at 75% 60%, rgba(30, 15, 50, 0.3) 0%, transparent 55%),
                radial-gradient(ellipse at 50% 85%, rgba(10, 25, 55, 0.4) 0%, transparent 50%);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            background-image:
                radial-gradient(circle, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
            background-size: 32px 32px;
            opacity: 0.6;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
        }

        button:focus-visible,
        a:focus-visible {
            outline: 2px solid var(--accent-orange);
            outline-offset: 3px;
            border-radius: 4px;
        }

        input {
            font-family: inherit;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header & Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            height: var(--nav-height);
            background: rgba(7, 11, 36, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            transition: background var(--transition-smooth);
        }

        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .logo-text {
            font-size: 22px;
            font-weight: 700;
            background: linear-gradient(135deg, #E6B422 0%, #F7D774 40%, #E6B422 70%, #C8921A 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
            font-family: var(--font-sans);
        }

        .logo-sub {
            font-size: 11px;
            color: var(--text-muted);
            letter-spacing: 2px;
            text-transform: uppercase;
            white-space: nowrap;
            border-left: 1px solid var(--border-subtle);
            padding-left: 12px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            font-size: 14.5px;
            font-weight: 500;
            color: var(--text-secondary);
            position: relative;
            padding: 6px 0;
            letter-spacing: 0.5px;
            white-space: nowrap;
            transition: color var(--transition-fast);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-orange);
            border-radius: 1px;
            box-shadow: 0 0 10px var(--accent-orange-glow);
            transition: width var(--transition-smooth);
        }

        .nav-links a:hover {
            color: var(--accent-orange);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .nav-links a.active {
            color: var(--accent-orange);
            font-weight: 700;
        }
        .nav-links a.active::after {
            width: 100%;
            box-shadow: 0 0 14px var(--accent-orange-glow);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 26px;
            padding: 8px;
            cursor: pointer;
            line-height: 1;
        }

        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            width: 100%;
            height: calc(100vh - var(--nav-height));
            background: rgba(7, 11, 36, 0.95);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 28px;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--transition-smooth);
        }
        .mobile-nav-overlay.open {
            opacity: 1;
            pointer-events: auto;
        }
        .mobile-nav-overlay a {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-secondary);
            letter-spacing: 1px;
            transition: color var(--transition-fast);
        }
        .mobile-nav-overlay a:hover,
        .mobile-nav-overlay a.active {
            color: var(--accent-orange);
        }

        /* Hero */
        .page-hero {
            position: relative;
            padding: 80px 0 70px;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
            min-height: 480px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(7, 11, 36, 0.75) 0%, rgba(7, 11, 36, 0.55) 40%, rgba(7, 11, 36, 0.8) 85%, var(--bg-primary) 100%);
            z-index: 1;
        }
        .page-hero .container {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .page-hero .breadcrumb {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            gap: 8px;
            align-items: center;
            flex-wrap: wrap;
        }
        .page-hero .breadcrumb a {
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .page-hero .breadcrumb a:hover {
            color: var(--accent-orange);
        }
        .page-hero .breadcrumb .sep {
            color: var(--text-dim);
        }
        .page-hero .breadcrumb .current {
            color: var(--accent-gold);
        }
        .page-hero h1 {
            font-size: 36px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: 1px;
            line-height: 1.3;
            max-width: 750px;
        }
        .page-hero h1 .highlight {
            color: var(--accent-orange);
            text-shadow: 0 0 30px var(--accent-orange-glow);
        }
        .page-hero .hero-sub {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 600px;
            line-height: 1.7;
        }
        .page-hero .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 4px;
        }
        .page-hero .hero-tags .tag {
            display: inline-block;
            padding: 6px 16px;
            border-radius: var(--radius-pill);
            font-size: 13px;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--border-medium);
            color: var(--text-secondary);
            letter-spacing: 0.5px;
            transition: all var(--transition-fast);
        }
        .page-hero .hero-tags .tag:hover {
            border-color: var(--accent-orange);
            color: var(--accent-orange);
            box-shadow: 0 0 12px var(--accent-orange-glow);
        }
        .hero-cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 8px;
        }

        /* Buttons */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: var(--radius-pill);
            font-size: 15px;
            font-weight: 600;
            background: var(--accent-orange);
            color: #fff;
            border: none;
            box-shadow: var(--shadow-glow-orange);
            transition: all var(--transition-smooth);
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .btn-primary:hover {
            box-shadow: var(--shadow-glow-orange-lg);
            transform: translateY(-2px);
            color: #fff;
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 26px;
            border-radius: var(--radius-pill);
            font-size: 15px;
            font-weight: 600;
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-medium);
            transition: all var(--transition-smooth);
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .btn-outline:hover {
            border-color: #fff;
            box-shadow: 0 0 18px rgba(255, 255, 255, 0.15);
            color: #fff;
            transform: translateY(-2px);
        }
        .btn-sm {
            padding: 8px 18px;
            font-size: 13px;
            border-radius: var(--radius-pill);
        }

        /* Section common */
        .section {
            padding: var(--gap-section) 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: var(--gap-block);
        }
        .section-header h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        .section-header .section-subtitle {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 550px;
            margin: 0 auto;
        }
        .section-header .accent-line {
            display: block;
            width: 48px;
            height: 3px;
            background: var(--accent-orange);
            border-radius: 2px;
            margin: 12px auto 0;
            box-shadow: 0 0 12px var(--accent-orange-glow);
        }

        /* Stats strip */
        .stats-strip {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 18px;
            margin-bottom: var(--gap-block);
        }
        .stat-card-mini {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 22px 18px;
            text-align: center;
            transition: all var(--transition-smooth);
        }
        .stat-card-mini:hover {
            border-color: var(--border-medium);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .stat-card-mini .stat-value {
            font-family: var(--font-number);
            font-size: 32px;
            font-weight: 700;
            color: var(--accent-orange);
            letter-spacing: 1px;
            line-height: 1;
        }
        .stat-card-mini .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 8px;
            letter-spacing: 0.5px;
        }

        /* Glass card */
        .glass-card {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            transition: all var(--transition-smooth);
            overflow: hidden;
        }
        .glass-card:hover {
            border-color: var(--border-medium);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }

        /* Replay highlight cards */
        .replay-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
            gap: var(--gap-card);
        }
        .replay-card {
            display: flex;
            flex-direction: column;
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .replay-card:hover {
            border-color: var(--accent-orange);
            box-shadow: 0 12px 40px rgba(255, 77, 46, 0.2);
            transform: translateY(-4px);
        }
        .replay-card .card-thumb {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
        }
        .replay-card .card-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }
        .replay-card:hover .card-thumb img {
            transform: scale(1.04);
        }
        .replay-card .play-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.3);
            opacity: 0;
            transition: opacity var(--transition-smooth);
        }
        .replay-card:hover .play-overlay {
            opacity: 1;
        }
        .play-icon-circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--accent-orange);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 22px;
            box-shadow: var(--shadow-glow-orange-lg);
        }
        .replay-card .card-body {
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .replay-card .card-game-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: var(--radius-sm);
            background: rgba(230, 180, 34, 0.15);
            color: var(--accent-gold);
            letter-spacing: 0.5px;
            align-self: flex-start;
        }
        .replay-card h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.4;
            letter-spacing: 0.3px;
        }
        .replay-card .card-meta {
            display: flex;
            gap: 16px;
            font-size: 12.5px;
            color: var(--text-muted);
            flex-wrap: wrap;
        }
        .replay-card .card-meta span {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* Game category grid */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: var(--gap-card);
        }
        .category-card {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            text-align: center;
            transition: all var(--transition-smooth);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }
        .category-card:hover {
            border-color: var(--accent-gold);
            box-shadow: 0 12px 36px rgba(230, 180, 34, 0.18);
            transform: translateY(-3px);
        }
        .category-card .cat-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(255, 77, 46, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
        }
        .category-card h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.5px;
        }
        .category-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .category-card .cat-count {
            font-family: var(--font-number);
            font-size: 22px;
            font-weight: 700;
            color: var(--accent-orange);
        }

        /* Classic matches */
        .classic-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .classic-item {
            display: flex;
            align-items: center;
            gap: 20px;
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 20px 24px;
            transition: all var(--transition-smooth);
            cursor: pointer;
            flex-wrap: wrap;
        }
        .classic-item:hover {
            border-color: var(--accent-orange);
            box-shadow: 0 8px 28px rgba(255, 77, 46, 0.18);
            transform: translateX(4px);
        }
        .classic-item .match-teams {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            color: var(--text-primary);
            font-size: 15px;
            min-width: 200px;
        }
        .classic-item .match-score {
            font-family: var(--font-number);
            font-size: 22px;
            font-weight: 700;
            color: var(--accent-gold);
            text-shadow: 0 0 10px var(--accent-gold-glow);
            letter-spacing: 2px;
        }
        .classic-item .match-tag {
            font-size: 11px;
            padding: 4px 10px;
            border-radius: var(--radius-sm);
            background: rgba(255, 77, 46, 0.15);
            color: var(--accent-orange);
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .classic-item .match-info {
            font-size: 13px;
            color: var(--text-muted);
            flex: 1;
            min-width: 120px;
        }
        .classic-item .watch-btn {
            flex-shrink: 0;
        }

        /* Reviews */
        .reviews-scroll {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: var(--gap-card);
        }
        .review-card {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 24px;
            transition: all var(--transition-smooth);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .review-card:hover {
            border-color: var(--border-medium);
            box-shadow: var(--shadow-card-hover);
        }
        .review-card .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 77, 46, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            color: var(--accent-orange);
            flex-shrink: 0;
        }
        .review-card .review-name {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 14px;
        }
        .review-card .review-tag {
            font-size: 11px;
            color: var(--text-muted);
        }
        .review-stars {
            color: var(--accent-gold);
            font-size: 13px;
            letter-spacing: 1px;
        }
        .review-card .review-body {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            font-style: italic;
            border-left: 3px solid var(--accent-orange);
            padding-left: 14px;
        }
        .review-card .review-time {
            font-size: 11px;
            color: var(--text-dim);
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-smooth);
        }
        .faq-item:hover {
            border-color: var(--border-medium);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 22px;
            cursor: pointer;
            font-weight: 600;
            color: var(--text-primary);
            font-size: 15px;
            letter-spacing: 0.3px;
            gap: 12px;
            user-select: none;
        }
        .faq-question .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 77, 46, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-orange);
            font-size: 14px;
            transition: transform var(--transition-bounce);
        }
        .faq-item.open .faq-icon {
            transform: rotate(90deg);
            background: var(--accent-orange);
            color: #fff;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 22px 18px;
        }
        .faq-answer p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            border-left: 3px solid var(--accent-orange);
            padding-left: 14px;
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, rgba(15, 20, 50, 0.7) 0%, rgba(7, 11, 36, 0.9) 100%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 56px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 77, 46, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-section h2 {
            font-size: 26px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }
        .cta-section p {
            color: var(--text-muted);
            font-size: 15px;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }
        .cta-section .btn-row {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        /* Footer */
        .site-footer {
            background: rgba(5, 8, 26, 0.9);
            border-top: 1px solid var(--border-subtle);
            padding: 50px 0 24px;
            margin-top: var(--gap-section);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 36px;
        }
        .footer-col h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }
        .footer-col p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
        }
        .footer-col a {
            display: block;
            font-size: 13px;
            color: var(--text-muted);
            padding: 5px 0;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--accent-orange);
        }
        .footer-social {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        .social-icon {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            cursor: pointer;
            transition: all var(--transition-fast);
        }
        .social-icon:hover {
            background: var(--accent-orange);
            box-shadow: var(--shadow-glow-orange);
        }
        .footer-bottom {
            text-align: center;
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
            font-size: 12px;
            color: var(--text-dim);
            line-height: 2;
        }
        .footer-bottom a {
            color: var(--text-dim);
            transition: color var(--transition-fast);
            margin: 0 4px;
        }
        .footer-bottom a:hover {
            color: var(--accent-orange);
        }
        .beian-info {
            display: inline-block;
            margin: 0 8px;
            color: var(--text-dim);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .page-hero h1 {
                font-size: 28px;
            }
            .replay-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            .category-grid {
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            }
            .reviews-scroll {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
            .stats-strip {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            }
            .stat-card-mini .stat-value {
                font-size: 24px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .mobile-nav-overlay {
                display: flex;
            }
            .page-hero {
                padding: 50px 0 40px;
                min-height: 360px;
            }
            .page-hero h1 {
                font-size: 24px;
            }
            .page-hero .hero-sub {
                font-size: 14px;
            }
            .section {
                padding: 50px 0;
            }
            .section-header h2 {
                font-size: 22px;
            }
            .replay-grid {
                grid-template-columns: 1fr;
            }
            .category-grid {
                grid-template-columns: 1fr 1fr;
            }
            .reviews-scroll {
                grid-template-columns: 1fr;
            }
            .classic-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .classic-item .match-teams {
                min-width: auto;
            }
            .cta-section {
                padding: 36px 20px;
            }
            .cta-section h2 {
                font-size: 22px;
            }
            .logo-sub {
                display: none;
            }
            .stats-strip {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }
            .stat-card-mini {
                padding: 16px 10px;
            }
            .stat-card-mini .stat-value {
                font-size: 20px;
            }
            .stat-card-mini .stat-label {
                font-size: 11px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .page-hero h1 {
                font-size: 20px;
            }
            .page-hero .hero-sub {
                font-size: 13px;
            }
            .page-hero .hero-tags .tag {
                font-size: 11px;
                padding: 5px 12px;
            }
            .btn-primary,
            .btn-outline {
                font-size: 13px;
                padding: 10px 20px;
            }
            .stats-strip {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .stat-card-mini .stat-value {
                font-size: 18px;
            }
            .category-grid {
                grid-template-columns: 1fr;
            }
            .section-header h2 {
                font-size: 20px;
            }
            .replay-card h3 {
                font-size: 15px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-bottom {
                font-size: 11px;
            }
            .faq-question {
                font-size: 14px;
                padding: 14px 16px;
            }
            .faq-item.open .faq-answer {
                padding: 0 16px 14px;
            }
            .faq-answer p {
                font-size: 13px;
            }
        }
