/* roulang page: index */
:root {
            --brand-orange: #FF5E1A;
            --brand-orange-light: #FF7A3F;
            --brand-purple: #6C3CFC;
            --brand-purple-light: #8B63FF;
            --deep-bg: #0B0E14;
            --card-bg: #141822;
            --border-subtle: #1C2030;
            --text-weak: #A5AAB5;
            --text-muted: #6B7280;
            --text-white: #FFFFFF;
            --radius-card: 12px;
            --radius-card-lg: 16px;
            --shadow-glow-orange: 0 8px 32px rgba(255, 94, 26, 0.15);
            --shadow-glow-purple: 0 8px 32px rgba(108, 60, 252, 0.18);
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            background-color: var(--deep-bg);
            color: var(--text-white);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:focus-visible {
            outline: 2px solid var(--brand-orange);
            outline-offset: 3px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
            transition: all var(--transition-fast);
        }
        button:focus-visible {
            outline: 2px solid var(--brand-orange);
            outline-offset: 3px;
            border-radius: 6px;
        }

        input {
            font-family: inherit;
            border: none;
            outline: none;
            background: transparent;
            color: var(--text-white);
        }
        input:focus {
            outline: 2px solid var(--brand-orange);
            outline-offset: 2px;
            border-radius: 4px;
        }

        ::selection {
            background-color: var(--brand-orange);
            color: #fff;
        }
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--deep-bg);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--border-subtle);
            border-radius: 3px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #2a3040;
        }

        /* ========== 容器 ========== */
        .container-main {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        @media (max-width: 768px) {
            .container-main {
                padding: 0 16px;
            }
        }

        /* ========== 导航栏 ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 64px;
            background: rgba(11, 14, 20, 0.95);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(28, 32, 48, 0.7);
            display: flex;
            align-items: center;
            transition: background var(--transition-smooth);
        }
        .site-header.scrolled {
            background: rgba(11, 14, 20, 0.98);
            box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            height: 100%;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--brand-orange), #e04810);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 18px;
            color: #fff;
            letter-spacing: -1px;
            box-shadow: 0 0 20px rgba(255, 94, 26, 0.35);
            position: relative;
        }
        .logo-icon::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 10px;
            border: 1.5px solid rgba(255, 94, 26, 0.4);
            animation: logoPulse 2.5s ease-in-out infinite;
        }
        @keyframes logoPulse {
            0%,
            100% {
                opacity: 0.5;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.06);
            }
        }
        .logo-text {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: 22px;
            font-weight: 800;
            letter-spacing: 2px;
            color: #fff;
            white-space: nowrap;
        }
        .logo-text span {
            color: var(--brand-orange);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }
        .nav-links a {
            font-size: 14.5px;
            font-weight: 500;
            color: var(--text-weak);
            padding: 6px 0;
            position: relative;
            white-space: nowrap;
            letter-spacing: 0.5px;
            transition: color var(--transition-fast);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--brand-orange);
            border-radius: 2px;
            transition: width var(--transition-smooth);
        }
        .nav-links a:hover {
            color: #fff;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .nav-links a.active {
            color: var(--brand-orange);
            font-weight: 600;
        }
        .nav-links a.active::after {
            width: 100%;
            background: var(--brand-orange);
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }
        .btn-search-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-weak);
            font-size: 17px;
            transition: all var(--transition-fast);
            border: 1px solid transparent;
        }
        .btn-search-icon:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            border-color: rgba(255, 255, 255, 0.12);
        }
        .btn-cta-nav {
            padding: 8px 20px;
            border-radius: 22px;
            background: var(--brand-orange);
            color: #fff;
            font-weight: 600;
            font-size: 13.5px;
            letter-spacing: 0.5px;
            white-space: nowrap;
            transition: all var(--transition-fast);
            box-shadow: 0 4px 16px rgba(255, 94, 26, 0.3);
        }
        .btn-cta-nav:hover {
            background: var(--brand-orange-light);
            box-shadow: 0 6px 24px rgba(255, 94, 26, 0.45);
            transform: translateY(-1px);
        }
        .btn-cta-nav:active {
            transform: scale(0.96);
        }

        /* 移动端汉堡菜单 */
        .hamburger-btn {
            display: none;
            width: 38px;
            height: 38px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.04);
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            z-index: 1001;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all var(--transition-fast);
        }
        .hamburger-btn span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--text-weak);
            border-radius: 2px;
            transition: all var(--transition-smooth);
        }
        .hamburger-btn.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .hamburger-btn.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .hamburger-btn.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(11, 14, 20, 0.97);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 28px;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }
        .mobile-nav-overlay.show {
            display: flex;
        }
        .mobile-nav-overlay a {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-weak);
            letter-spacing: 1px;
            transition: color var(--transition-fast);
        }
        .mobile-nav-overlay a:hover,
        .mobile-nav-overlay a.active {
            color: var(--brand-orange);
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .header-actions .btn-cta-nav {
                display: none;
            }
            .hamburger-btn {
                display: flex;
            }
            .header-inner {
                padding: 0 16px;
            }
        }

        /* ========== Hero 首屏 ========== */
        .hero-section {
            position: relative;
            min-height: 680px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--deep-bg);
        }
        .hero-bg-img {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.28;
            z-index: 0;
            mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0.2) 100%);
            -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0.2) 100%);
        }
        .hero-grid-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background-image:
                linear-gradient(rgba(28, 32, 48, 0.25) 1px, transparent 1px),
                linear-gradient(90deg, rgba(28, 32, 48, 0.25) 1px, transparent 1px);
            background-size: 48px 48px;
            pointer-events: none;
        }
        .hero-glow {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 94, 26, 0.12) 0%, transparent 70%);
            top: -120px;
            right: -80px;
            z-index: 1;
            pointer-events: none;
            animation: heroGlowFloat 8s ease-in-out infinite;
        }
        @keyframes heroGlowFloat {
            0%,
            100% {
                transform: translate(0, 0);
            }
            25% {
                transform: translate(-30px, 20px);
            }
            50% {
                transform: translate(15px, -25px);
            }
            75% {
                transform: translate(-20px, -10px);
            }
        }
        .hero-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 60px 24px;
        }
        .hero-left {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .hero-badge-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .hero-badge {
            display: inline-block;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 12.5px;
            font-weight: 600;
            letter-spacing: 0.5px;
            background: rgba(255, 94, 26, 0.12);
            color: var(--brand-orange-light);
            border: 1px solid rgba(255, 94, 26, 0.25);
            white-space: nowrap;
        }
        .hero-badge.purple {
            background: rgba(108, 60, 252, 0.12);
            color: var(--brand-purple-light);
            border: 1px solid rgba(108, 60, 252, 0.25);
        }
        .hero-title {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: clamp(42px, 5.5vw, 68px);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: 2px;
            color: #fff;
        }
        .hero-title .highlight {
            color: var(--brand-orange);
            position: relative;
        }
        .hero-subtitle {
            font-size: 17px;
            color: var(--text-weak);
            line-height: 1.7;
            max-width: 440px;
        }
        .hero-cta-group {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 4px;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 28px;
            background: var(--brand-orange);
            color: #fff;
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 0.8px;
            box-shadow: 0 8px 28px rgba(255, 94, 26, 0.35);
            transition: all var(--transition-smooth);
            white-space: nowrap;
        }
        .btn-primary:hover {
            background: var(--brand-orange-light);
            box-shadow: 0 12px 36px rgba(255, 94, 26, 0.5);
            transform: translateY(-2px);
        }
        .btn-primary:active {
            transform: scale(0.95);
        }
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 28px;
            background: transparent;
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            letter-spacing: 0.8px;
            border: 1.5px solid var(--brand-purple);
            transition: all var(--transition-smooth);
            white-space: nowrap;
        }
        .btn-ghost:hover {
            border-color: var(--brand-purple-light);
            background: rgba(108, 60, 252, 0.1);
            box-shadow: 0 8px 28px rgba(108, 60, 252, 0.25);
            transform: translateY(-2px);
        }
        .btn-ghost:active {
            transform: scale(0.95);
        }
        .hero-right {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-data-card {
            background: rgba(20, 24, 34, 0.75);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-card-lg);
            padding: 28px;
            width: 100%;
            max-width: 420px;
            box-shadow: 0 0 60px rgba(255, 94, 26, 0.08), var(--shadow-glow-orange);
            position: relative;
            overflow: hidden;
        }
        .hero-data-card::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 94, 26, 0.18) 0%, transparent 70%);
            pointer-events: none;
            animation: cardGlowBreath 4s ease-in-out infinite;
        }
        @keyframes cardGlowBreath {
            0%,
            100% {
                opacity: 0.5;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.2);
            }
        }
        .hero-data-card .live-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #00e676;
            margin-right: 6px;
            animation: livePulse 1.2s ease-in-out infinite;
        }
        @keyframes livePulse {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.6);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(0, 230, 118, 0);
            }
        }
        .hero-data-card .match-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .hero-data-card .match-row:last-child {
            border-bottom: none;
        }
        .hero-data-card .team-name {
            font-weight: 600;
            font-size: 15px;
            color: #fff;
        }
        .hero-data-card .match-score {
            font-family: 'DIN Alternate', 'Impact', sans-serif;
            font-size: 22px;
            font-weight: 900;
            color: var(--brand-orange);
            letter-spacing: 1px;
        }
        .hero-data-card .match-league {
            font-size: 11.5px;
            color: var(--text-muted);
            letter-spacing: 0.5px;
        }
        .hero-data-card .card-header-title {
            font-weight: 700;
            font-size: 14px;
            color: var(--text-weak);
            letter-spacing: 1px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        @media (max-width: 768px) {
            .hero-section {
                min-height: auto;
            }
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 32px;
                padding: 40px 16px;
            }
            .hero-right {
                order: -1;
            }
            .hero-data-card {
                max-width: 100%;
                padding: 20px;
            }
            .hero-title {
                font-size: 36px;
            }
            .hero-subtitle {
                font-size: 15px;
            }
            .btn-primary,
            .btn-ghost {
                padding: 12px 22px;
                font-size: 14px;
            }
        }

        /* ========== 板块通用样式 ========== */
        .section-block {
            padding: 72px 0;
            position: relative;
        }
        .section-block.alt-bg {
            background: rgba(20, 24, 34, 0.4);
        }
        .section-label {
            display: inline-block;
            font-size: 12.5px;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--brand-orange);
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .section-title {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: clamp(26px, 3.5vw, 38px);
            font-weight: 800;
            letter-spacing: 1px;
            color: #fff;
            margin-bottom: 6px;
            line-height: 1.25;
        }
        .section-desc {
            font-size: 15.5px;
            color: var(--text-weak);
            max-width: 600px;
            line-height: 1.7;
        }
        .section-header {
            margin-bottom: 40px;
        }
        @media (max-width: 768px) {
            .section-block {
                padding: 44px 0;
            }
            .section-title {
                font-size: 24px;
            }
            .section-header {
                margin-bottom: 28px;
            }
        }

        /* ========== 数据指标条 ========== */
        .stats-strip {
            display: flex;
            flex-wrap: wrap;
            gap: 0;
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card-lg);
            overflow: hidden;
            background: var(--card-bg);
        }
        .stat-item {
            flex: 1;
            min-width: 140px;
            padding: 22px 20px;
            text-align: center;
            border-right: 1px solid var(--border-subtle);
            transition: background var(--transition-fast);
        }
        .stat-item:last-child {
            border-right: none;
        }
        .stat-item:hover {
            background: rgba(255, 94, 26, 0.04);
        }
        .stat-value {
            font-family: 'DIN Alternate', 'Impact', sans-serif;
            font-size: 36px;
            font-weight: 900;
            color: var(--brand-orange);
            letter-spacing: 1px;
            line-height: 1;
        }
        .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 6px;
            letter-spacing: 0.5px;
        }
        @media (max-width: 768px) {
            .stats-strip {
                flex-wrap: wrap;
                border-radius: var(--radius-card);
            }
            .stat-item {
                flex: 1 1 45%;
                min-width: 120px;
                padding: 16px 12px;
                border-bottom: 1px solid var(--border-subtle);
            }
            .stat-item:nth-child(2n) {
                border-right: none;
            }
            .stat-value {
                font-size: 28px;
            }
        }

        /* ========== 游戏分类卡片 ========== */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }
        .category-card {
            position: relative;
            border-radius: var(--radius-card);
            overflow: hidden;
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            cursor: pointer;
            transition: all var(--transition-smooth);
            aspect-ratio: 3/4;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            text-decoration: none;
            color: #fff;
        }
        .category-card:hover {
            transform: translateY(-6px);
            border-color: rgba(255, 94, 26, 0.4);
            box-shadow: var(--shadow-glow-orange);
        }
        .category-card .card-img-wrap {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .category-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }
        .category-card:hover .card-img-wrap img {
            transform: scale(1.08);
        }
        .category-card .card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(11, 14, 20, 0.9) 20%, rgba(11, 14, 20, 0.2) 100%);
            z-index: 1;
        }
        .category-card .card-content {
            position: relative;
            z-index: 2;
        }
        .category-card .card-icon-badge {
            display: inline-flex;
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: rgba(255, 94, 26, 0.2);
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 10px;
            border: 1px solid rgba(255, 94, 26, 0.3);
            transition: all var(--transition-smooth);
        }
        .category-card:hover .card-icon-badge {
            background: rgba(255, 94, 26, 0.35);
            box-shadow: 0 0 28px rgba(255, 94, 26, 0.4);
        }
        .category-card .card-title {
            font-weight: 700;
            font-size: 16px;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }
        .category-card .card-sub {
            font-size: 12px;
            color: var(--text-muted);
        }
        @media (max-width: 1024px) {
            .category-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 520px) {
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .category-card {
                aspect-ratio: 2/3;
                padding: 14px;
            }
            .category-card .card-title {
                font-size: 14px;
            }
        }

        /* ========== 赛程表格 ========== */
        .schedule-table-wrap {
            overflow-x: auto;
            border-radius: var(--radius-card);
            border: 1px solid var(--border-subtle);
            background: var(--card-bg);
        }
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
            font-size: 14px;
        }
        .schedule-table thead th {
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
            color: var(--text-muted);
            font-size: 12px;
            letter-spacing: 1px;
            border-bottom: 1px solid var(--border-subtle);
            background: rgba(11, 14, 20, 0.5);
            white-space: nowrap;
        }
        .schedule-table tbody td {
            padding: 14px 16px;
            border-bottom: 1px solid rgba(28, 32, 48, 0.4);
            white-space: nowrap;
            vertical-align: middle;
        }
        .schedule-table tbody tr {
            transition: background var(--transition-fast);
        }
        .schedule-table tbody tr:hover {
            background: rgba(255, 94, 26, 0.03);
        }
        .schedule-table tbody tr.row-live {
            border-left: 3px solid var(--brand-orange);
            background: rgba(255, 94, 26, 0.04);
        }
        .schedule-table .status-live {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            border-radius: 12px;
            background: rgba(0, 230, 118, 0.12);
            color: #00e676;
            font-size: 12px;
            font-weight: 600;
        }
        .schedule-table .status-live .dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #00e676;
            animation: livePulse 1.2s ease-in-out infinite;
        }
        .schedule-table .status-upcoming {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 12px;
            background: rgba(108, 60, 252, 0.1);
            color: var(--brand-purple-light);
            font-size: 12px;
            font-weight: 600;
        }
        .schedule-table .team-cell {
            font-weight: 600;
            color: #fff;
            font-size: 14px;
        }
        .schedule-table .score-cell {
            font-family: 'DIN Alternate', 'Impact', sans-serif;
            font-weight: 900;
            font-size: 16px;
            color: var(--brand-orange);
        }
        .btn-table-action {
            padding: 6px 14px;
            border-radius: 16px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            white-space: nowrap;
            border: 1px solid var(--border-subtle);
            color: var(--text-weak);
            transition: all var(--transition-fast);
            background: transparent;
        }
        .btn-table-action:hover {
            border-color: var(--brand-orange);
            color: var(--brand-orange);
            background: rgba(255, 94, 26, 0.06);
        }
        @media (max-width: 768px) {
            .schedule-table-wrap {
                border-radius: var(--radius-card);
            }
            .schedule-table {
                min-width: 580px;
            }
            .schedule-table thead th,
            .schedule-table tbody td {
                padding: 10px 10px;
                font-size: 12px;
            }
        }

        /* ========== 比分中心卡片列表 ========== */
        .score-card-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 14px;
        }
        .score-card {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: all var(--transition-smooth);
        }
        .score-card:hover {
            border-color: rgba(255, 94, 26, 0.35);
            box-shadow: var(--shadow-glow-orange);
            transform: translateY(-2px);
        }
        .score-card .sc-league {
            font-size: 11px;
            color: var(--text-muted);
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .score-card .sc-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }
        .score-card .sc-team {
            font-weight: 700;
            font-size: 15px;
            color: #fff;
            flex: 1;
            text-align: center;
        }
        .score-card .sc-score {
            font-family: 'DIN Alternate', 'Impact', sans-serif;
            font-size: 26px;
            font-weight: 900;
            color: var(--brand-orange);
            letter-spacing: 2px;
            flex-shrink: 0;
            min-width: 50px;
            text-align: center;
        }
        .score-card .sc-status {
            font-size: 11.5px;
            color: var(--text-muted);
            text-align: center;
        }
        @media (max-width: 520px) {
            .score-card-list {
                grid-template-columns: 1fr;
            }
        }

        /* ========== Tab切换 战队排行 ========== */
        .tab-nav-row {
            display: flex;
            gap: 0;
            border-bottom: 2px solid var(--border-subtle);
            margin-bottom: 24px;
        }
        .tab-btn {
            padding: 10px 22px;
            font-weight: 600;
            font-size: 14px;
            color: var(--text-muted);
            letter-spacing: 0.5px;
            border-bottom: 2px solid transparent;
            margin-bottom: -2px;
            transition: all var(--transition-fast);
            background: transparent;
        }
        .tab-btn:hover {
            color: #fff;
        }
        .tab-btn.active {
            color: var(--brand-orange);
            border-bottom-color: var(--brand-orange);
        }
        .tab-panel {
            display: none;
        }
        .tab-panel.active {
            display: block;
        }
        .ranking-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }
        .ranking-table thead th {
            padding: 10px 14px;
            text-align: left;
            font-weight: 600;
            color: var(--text-muted);
            font-size: 12px;
            letter-spacing: 0.8px;
            border-bottom: 1px solid var(--border-subtle);
        }
        .ranking-table tbody td {
            padding: 12px 14px;
            border-bottom: 1px solid rgba(28, 32, 48, 0.35);
            vertical-align: middle;
        }
        .ranking-table .rank-num {
            font-family: 'DIN Alternate', 'Impact', sans-serif;
            font-weight: 900;
            font-size: 20px;
            color: var(--brand-orange);
            width: 40px;
        }
        .ranking-table .rank-name {
            font-weight: 600;
            color: #fff;
        }
        .ranking-table .rank-stat {
            font-family: 'DIN Alternate', 'Impact', sans-serif;
            font-weight: 700;
            font-size: 15px;
            color: var(--text-weak);
        }
        .ranking-table tbody tr:hover {
            background: rgba(255, 94, 26, 0.03);
        }

        /* ========== 功能亮点 ========== */
        .feature-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .feature-split .feature-text h3 {
            font-family: 'DIN Alternate', 'Impact', sans-serif;
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 14px;
            color: #fff;
        }
        .feature-split .feature-text p {
            color: var(--text-weak);
            line-height: 1.8;
            font-size: 15px;
        }
        .feature-split .feature-visual {
            border-radius: var(--radius-card-lg);
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            background: var(--card-bg);
            aspect-ratio: 16/10;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .feature-split .feature-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.75;
        }
        @media (max-width: 768px) {
            .feature-split {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .feature-split .feature-text h3 {
                font-size: 22px;
            }
        }

        /* ========== 版本资讯卡片 ========== */
        .info-card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        .info-card {
            border-radius: var(--radius-card);
            overflow: hidden;
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .info-card:hover {
            border-color: rgba(255, 94, 26, 0.3);
            box-shadow: var(--shadow-glow-orange);
            transform: translateY(-3px);
        }
        .info-card .info-img {
            aspect-ratio: 16/9;
            overflow: hidden;
        }
        .info-card .info-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }
        .info-card:hover .info-img img {
            transform: scale(1.06);
        }
        .info-card .info-body {
            padding: 16px 18px;
        }
        .info-card .info-tag {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 10px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
            background: rgba(108, 60, 252, 0.15);
            color: var(--brand-purple-light);
            margin-bottom: 8px;
        }
        .info-card .info-title {
            font-weight: 700;
            font-size: 15px;
            color: #fff;
            letter-spacing: 0.3px;
            margin-bottom: 4px;
            line-height: 1.4;
        }
        .info-card .info-meta {
            font-size: 12px;
            color: var(--text-muted);
        }
        @media (max-width: 768px) {
            .info-card-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
        }

        /* ========== Logo墙 ========== */
        .logo-wall {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 32px;
            opacity: 0.55;
            filter: grayscale(30%);
        }
        .logo-wall .partner-logo {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--text-muted);
            white-space: nowrap;
            transition: all var(--transition-fast);
        }
        .logo-wall .partner-logo:hover {
            color: #fff;
            opacity: 1;
        }
        @media (max-width: 520px) {
            .logo-wall {
                gap: 16px;
            }
            .logo-wall .partner-logo {
                font-size: 15px;
            }
        }

        /* ========== 用户评论 ========== */
        .review-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .review-card {
            background: rgba(20, 24, 34, 0.7);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 20px;
            transition: all var(--transition-smooth);
        }
        .review-card:hover {
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            transform: translateY(-2px);
        }
        .review-card .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand-purple), var(--brand-orange));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            color: #fff;
            flex-shrink: 0;
        }
        .review-name {
            font-weight: 600;
            font-size: 14px;
            color: #fff;
        }
        .review-tag {
            font-size: 11px;
            color: var(--text-muted);
        }
        .review-stars {
            color: #f5a623;
            font-size: 12px;
            letter-spacing: 1px;
        }
        .review-text {
            font-size: 13.5px;
            color: var(--text-weak);
            line-height: 1.6;
        }
        @media (max-width: 1024px) {
            .review-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .review-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== 横向滚动对局分析 ========== */
        .scroll-row-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 8px;
        }
        .scroll-row {
            display: flex;
            gap: 16px;
            min-width: max-content;
        }
        .analysis-card {
            flex: 0 0 320px;
            border-radius: var(--radius-card);
            overflow: hidden;
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-smooth);
        }
        .analysis-card:hover {
            border-color: rgba(255, 94, 26, 0.3);
            box-shadow: var(--shadow-glow-orange);
        }
        .analysis-card .an-img {
            aspect-ratio: 16/9;
            overflow: hidden;
        }
        .analysis-card .an-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }
        .analysis-card:hover .an-img img {
            transform: scale(1.05);
        }
        .analysis-card .an-body {
            padding: 14px 16px;
        }
        .analysis-card .an-title {
            font-weight: 700;
            font-size: 14px;
            color: #fff;
            letter-spacing: 0.3px;
            margin-bottom: 4px;
        }
        .analysis-card .an-meta {
            font-size: 11.5px;
            color: var(--text-muted);
        }
        @media (max-width: 520px) {
            .analysis-card {
                flex: 0 0 260px;
            }
        }

        /* ========== FAQ 手风琴 ========== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
            background: var(--card-bg);
            transition: all var(--transition-fast);
        }
        .faq-item.open {
            border-color: rgba(255, 94, 26, 0.3);
            background: #141822;
        }
        .faq-question {
            width: 100%;
            text-align: left;
            padding: 18px 20px;
            font-weight: 600;
            font-size: 15px;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            letter-spacing: 0.3px;
            background: transparent;
            transition: color var(--transition-fast);
        }
        .faq-question:hover {
            color: var(--brand-orange);
        }
        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 94, 26, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
            color: var(--brand-orange);
            transition: all var(--transition-fast);
        }
        .faq-item.open .faq-icon {
            background: var(--brand-orange);
            color: #fff;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
            padding: 0 20px;
            color: var(--text-weak);
            font-size: 14px;
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 200px;
            padding: 0 20px 18px 20px;
        }

        /* ========== CTA区域 ========== */
        .cta-section {
            text-align: center;
            padding: 64px 0;
            background: linear-gradient(180deg, rgba(20, 24, 34, 0.3) 0%, rgba(11, 14, 20, 1) 100%);
            border-top: 1px solid var(--border-subtle);
        }
        .cta-section .cta-title {
            font-family: 'DIN Alternate', 'Impact', sans-serif;
            font-size: 32px;
            font-weight: 800;
            letter-spacing: 1px;
            color: #fff;
            margin-bottom: 10px;
        }
        .cta-section .cta-desc {
            color: var(--text-weak);
            font-size: 15px;
            margin-bottom: 24px;
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: #070a0f;
            border-top: 1px solid var(--border-subtle);
            padding: 40px 0 28px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 28px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            font-weight: 700;
            font-size: 14px;
            color: #fff;
            letter-spacing: 0.8px;
            margin-bottom: 14px;
        }
        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-col ul li a {
            font-size: 13px;
            color: var(--text-muted);
            transition: color var(--transition-fast);
            letter-spacing: 0.3px;
        }
        .footer-col ul li a:hover {
            color: var(--brand-orange);
        }
        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(28, 32, 48, 0.5);
            padding-top: 20px;
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.8;
        }
        .footer-bottom a {
            color: var(--text-muted);
            margin: 0 8px;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--brand-orange);
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== 动画辅助 ========== */
        .fade-in-up {
            animation: fadeInUp 0.7s ease forwards;
            opacity: 0;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .delay-1 {
            animation-delay: 0.1s;
        }
        .delay-2 {
            animation-delay: 0.2s;
        }
        .delay-3 {
            animation-delay: 0.3s;
        }

        /* 搜索弹窗 */
        .search-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(11, 14, 20, 0.96);
            z-index: 2000;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .search-overlay.show {
            display: flex;
        }
        .search-box-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: 30px;
            padding: 10px 20px;
            width: 90%;
            max-width: 500px;
        }
        .search-box-wrap input {
            flex: 1;
            font-size: 16px;
            padding: 8px 0;
            color: #fff;
            background: transparent;
        }
        .search-box-wrap button {
            padding: 10px 20px;
            border-radius: 22px;
            background: var(--brand-orange);
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            transition: all var(--transition-fast);
        }
        .search-box-wrap button:hover {
            background: var(--brand-orange-light);
        }
        .search-close {
            position: absolute;
            top: 24px;
            right: 28px;
            font-size: 28px;
            color: #fff;
            cursor: pointer;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            transition: all var(--transition-fast);
        }
        .search-close:hover {
            background: rgba(255, 255, 255, 0.12);
        }

/* roulang page: category2 */
:root {
            --brand-orange: #FF5E1A;
            --brand-orange-light: #FF7A3D;
            --brand-deep: #0B0E14;
            --brand-card: #141822;
            --brand-border: #1C2030;
            --brand-purple: #6C3CFC;
            --brand-purple-light: #8B63FF;
            --text-soft: #A5AAB5;
            --text-muted: #6B7280;
            --radius-card: 12px;
            --radius-btn: 8px;
            --shadow-glow: 0 8px 32px rgba(255, 94, 26, 0.15);
            --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            background-color: #0B0E14;
            color: #ffffff;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input {
            font-family: inherit;
            outline: none;
        }

        .container-main {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Navigation */
        .site-header {
            background: #0B0E14;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 64px;
            display: flex;
            align-items: center;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .logo-text {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: 24px;
            font-weight: 700;
            letter-spacing: 1px;
            color: #ffffff;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .logo-text .logo-accent {
            color: #FF5E1A;
            font-size: 28px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 4px;
            align-items: center;
        }

        .nav-links li a {
            display: block;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            color: #A5AAB5;
            transition: all 0.2s ease;
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        .nav-links li a:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.04);
        }

        .nav-links li a.active {
            color: #FF5E1A;
            background: rgba(255, 94, 26, 0.1);
            font-weight: 600;
        }

        /* Mobile nav */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            color: #ffffff;
            font-size: 22px;
            line-height: 1;
        }

        @media (max-width: 1024px) {
            .nav-links {
                gap: 2px;
            }
            .nav-links li a {
                padding: 8px 10px;
                font-size: 13px;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 64px;
                left: 0;
                right: 0;
                background: #0B0E14;
                flex-direction: column;
                padding: 12px 16px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                gap: 2px;
                box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links li a {
                padding: 12px 16px;
                font-size: 15px;
                border-radius: 8px;
                width: 100%;
            }
        }

        /* Hero */
        .hero-section {
            position: relative;
            background: linear-gradient(180deg, #0B0E14 0%, #10141E 40%, #0B0E14 100%);
            overflow: hidden;
            min-height: 520px;
            display: flex;
            align-items: center;
        }

        .hero-bg-overlay {
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            opacity: 0.18;
            pointer-events: none;
        }

        .hero-glow {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 94, 26, 0.08) 0%, transparent 70%);
            top: -100px;
            right: -150px;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 48px;
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 60px 24px;
        }

        .hero-left {
            flex: 1;
            min-width: 0;
        }

        .hero-badge {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            background: rgba(255, 94, 26, 0.15);
            color: #FF5E1A;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 94, 26, 0.25);
        }

        .hero-title {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 700;
            line-height: 1.15;
            margin: 0 0 16px;
            color: #ffffff;
            letter-spacing: 1px;
        }

        .hero-title .highlight {
            color: #FF5E1A;
        }

        .hero-subtitle {
            font-size: 17px;
            color: #A5AAB5;
            margin: 0 0 28px;
            line-height: 1.6;
            max-width: 520px;
        }

        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 28px;
        }

        .hero-tag {
            padding: 6px 14px;
            border-radius: 20px;
            background: rgba(108, 60, 252, 0.12);
            color: #8B63FF;
            font-size: 12px;
            font-weight: 500;
            border: 1px solid rgba(108, 60, 252, 0.2);
            letter-spacing: 0.3px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            background: #FF5E1A;
            color: #ffffff;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            letter-spacing: 0.5px;
            transition: all 0.25s ease;
            box-shadow: 0 4px 16px rgba(255, 94, 26, 0.25);
            text-decoration: none;
        }

        .btn-primary:hover {
            background: #FF7A3D;
            box-shadow: 0 6px 24px rgba(255, 94, 26, 0.4);
            transform: translateY(-1px);
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 26px;
            background: transparent;
            color: #ffffff;
            border: 1px solid #6C3CFC;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            letter-spacing: 0.5px;
            transition: all 0.25s ease;
            text-decoration: none;
        }

        .btn-ghost:hover {
            border-color: #8B63FF;
            background: rgba(108, 60, 252, 0.08);
            color: #8B63FF;
        }

        .hero-right {
            flex: 0 0 380px;
            max-width: 380px;
        }

        .hero-data-card {
            background: rgba(20, 24, 34, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 8px 32px rgba(255, 94, 26, 0.12);
        }

        .hero-data-card .card-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #FF5E1A;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .hero-data-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 14px;
        }

        .hero-data-row:last-child {
            border-bottom: none;
        }

        .hero-data-row .team-name {
            color: #A5AAB5;
            font-weight: 500;
        }

        .hero-data-row .score {
            font-family: 'DIN Alternate', 'Impact', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: #FF5E1A;
            letter-spacing: 1px;
        }

        .hero-data-row .status-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #FF5E1A;
            margin-right: 6px;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 4px #FF5E1A;
            }
            50% {
                opacity: 0.4;
                box-shadow: 0 0 12px #FF5E1A;
            }
        }

        @media (max-width: 900px) {
            .hero-content {
                flex-direction: column;
                gap: 32px;
                padding: 40px 20px;
            }
            .hero-right {
                flex: 0 0 auto;
                max-width: 100%;
                width: 100%;
            }
            .hero-title {
                font-size: 32px;
            }
            .hero-section {
                min-height: auto;
            }
        }

        /* Stats bar */
        .stats-bar {
            background: #141822;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 20px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            text-align: center;
        }

        .stat-item {
            padding: 8px 16px;
            border-right: 1px solid rgba(255, 255, 255, 0.06);
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-value {
            font-family: 'DIN Alternate', 'Impact', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: #FF5E1A;
            line-height: 1.1;
            letter-spacing: 1px;
        }

        .stat-label {
            font-size: 12px;
            color: #6B7280;
            margin-top: 4px;
            letter-spacing: 0.5px;
        }

        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .stat-item {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.04);
                padding: 12px 8px;
            }
            .stat-item:nth-child(odd) {
                border-right: 1px solid rgba(255, 255, 255, 0.04);
            }
            .stat-value {
                font-size: 26px;
            }
        }

        /* Section */
        .section {
            padding: 64px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-label {
            display: inline-block;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #FF5E1A;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .section-title {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: clamp(26px, 3.5vw, 36px);
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 8px;
            letter-spacing: 0.8px;
        }

        .section-desc {
            font-size: 15px;
            color: #6B7280;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Cards */
        .card {
            background: #141822;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 24px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .card:hover {
            border-color: rgba(255, 94, 26, 0.2);
            box-shadow: 0 8px 32px rgba(255, 94, 26, 0.12);
            transform: translateY(-2px);
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        @media (max-width: 900px) {
            .grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 600px) {
            .grid-3,
            .grid-2 {
                grid-template-columns: 1fr;
            }
        }

        /* Table */
        .table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
            font-size: 14px;
        }

        .data-table thead {
            background: #1C2030;
        }

        .data-table th {
            padding: 14px 16px;
            text-align: left;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #6B7280;
            font-weight: 600;
            white-space: nowrap;
        }

        .data-table td {
            padding: 13px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            color: #A5AAB5;
            white-space: nowrap;
        }

        .data-table tbody tr {
            transition: background 0.2s ease;
        }

        .data-table tbody tr:hover {
            background: rgba(255, 94, 26, 0.04);
        }

        .data-table tbody tr.row-live {
            border-left: 3px solid #FF5E1A;
        }

        .data-table .score-col {
            font-family: 'DIN Alternate', 'Impact', sans-serif;
            font-weight: 700;
            color: #FF5E1A;
            font-size: 16px;
            letter-spacing: 1px;
        }

        .badge-live {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            background: rgba(255, 94, 26, 0.15);
            color: #FF5E1A;
            letter-spacing: 0.5px;
        }

        .badge-upcoming {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 500;
            background: rgba(108, 60, 252, 0.12);
            color: #8B63FF;
            letter-spacing: 0.5px;
        }

        .badge-done {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 500;
            background: rgba(107, 114, 128, 0.12);
            color: #6B7280;
            letter-spacing: 0.5px;
        }

        /* Ranking */
        .ranking-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .ranking-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            transition: background 0.2s ease;
        }

        .ranking-item:hover {
            background: rgba(255, 94, 26, 0.03);
        }

        .rank-num {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            flex-shrink: 0;
            font-family: 'DIN Alternate', 'Impact', sans-serif;
        }

        .rank-num.top1 {
            background: linear-gradient(135deg, #FF5E1A, #FF8C42);
            color: #fff;
        }
        .rank-num.top2 {
            background: linear-gradient(135deg, #6C3CFC, #9B7AFF);
            color: #fff;
        }
        .rank-num.top3 {
            background: linear-gradient(135deg, #1C2030, #3A4058);
            color: #FF5E1A;
            border: 1px solid rgba(255, 94, 26, 0.3);
        }
        .rank-num.normal {
            background: #1C2030;
            color: #A5AAB5;
        }

        .ranking-info {
            flex: 1;
            min-width: 0;
        }
        .ranking-name {
            font-weight: 600;
            color: #ffffff;
            font-size: 15px;
        }
        .ranking-meta {
            font-size: 12px;
            color: #6B7280;
            margin-top: 2px;
        }
        .ranking-stat {
            text-align: right;
            font-family: 'DIN Alternate', 'Impact', sans-serif;
            font-weight: 700;
            color: #FF5E1A;
            font-size: 16px;
            flex-shrink: 0;
        }

        /* FAQ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            margin-bottom: 10px;
            background: #141822;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 18px 20px;
            color: #ffffff;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            text-align: left;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            letter-spacing: 0.3px;
            transition: color 0.2s ease;
        }

        .faq-question:hover {
            color: #FF5E1A;
        }

        .faq-icon {
            font-size: 20px;
            color: #FF5E1A;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 20px;
            color: #A5AAB5;
            font-size: 14px;
            line-height: 1.7;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 20px 18px;
        }

        .faq-item.open {
            border-color: rgba(255, 94, 26, 0.2);
            background: #1a1e2a;
        }

        /* Reviews */
        .review-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .review-card {
            background: rgba(20, 24, 34, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: 12px;
            padding: 20px;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            border-color: rgba(255, 94, 26, 0.15);
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
            transform: translateY(-2px);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .review-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FF5E1A, #6C3CFC);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            color: #fff;
            flex-shrink: 0;
        }

        .review-name {
            font-weight: 600;
            font-size: 14px;
            color: #ffffff;
        }
        .review-tag {
            font-size: 11px;
            color: #6B7280;
        }
        .review-stars {
            color: #FF5E1A;
            font-size: 13px;
            margin-bottom: 8px;
        }
        .review-text {
            font-size: 13px;
            color: #A5AAB5;
            line-height: 1.6;
        }
        .review-time {
            font-size: 11px;
            color: #6B7280;
            margin-top: 8px;
        }

        @media (max-width: 1024px) {
            .review-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .review-grid {
                grid-template-columns: 1fr;
            }
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(180deg, #0B0E14 0%, #10141E 100%);
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .cta-glow {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(108, 60, 252, 0.06) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 64px 24px;
        }

        .cta-title {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 12px;
            letter-spacing: 0.8px;
        }

        .cta-desc {
            font-size: 16px;
            color: #A5AAB5;
            margin: 0 0 28px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Footer */
        .site-footer {
            background: #0B0E14;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 48px 0 28px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 28px;
            margin-bottom: 32px;
        }

        .footer-col h4 {
            font-size: 15px;
            font-weight: 600;
            color: #ffffff;
            margin: 0 0 14px;
            letter-spacing: 0.5px;
        }

        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            font-size: 13px;
            color: #6B7280;
            transition: color 0.2s ease;
        }

        .footer-col ul li a:hover {
            color: #FF5E1A;
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding-top: 20px;
            font-size: 12px;
            color: #6B7280;
            line-height: 1.8;
        }

        .footer-bottom a {
            color: #6B7280;
            transition: color 0.2s ease;
        }

        .footer-bottom a:hover {
            color: #FF5E1A;
        }

        @media (max-width: 900px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .section {
                padding: 40px 0;
            }
        }

        /* Utility */
        .text-orange {
            color: #FF5E1A;
        }
        .text-purple {
            color: #6C3CFC;
        }
        .text-soft {
            color: #A5AAB5;
        }
        .text-muted {
            color: #6B7280;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }

        /* Image card */
        .img-card-cover {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 14px;
        }

        /* Filter bar */
        .filter-bar {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 24px;
            justify-content: center;
        }

        .filter-btn {
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.25s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: transparent;
            color: #A5AAB5;
            letter-spacing: 0.3px;
        }

        .filter-btn:hover {
            border-color: rgba(255, 94, 26, 0.3);
            color: #FF5E1A;
        }
        .filter-btn.active-filter {
            background: rgba(255, 94, 26, 0.15);
            border-color: #FF5E1A;
            color: #FF5E1A;
            font-weight: 600;
        }

        /* Highlight box */
        .highlight-box {
            background: rgba(255, 94, 26, 0.06);
            border: 1px solid rgba(255, 94, 26, 0.15);
            border-radius: 12px;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .highlight-box .hb-icon {
            font-size: 28px;
            flex-shrink: 0;
        }
        .highlight-box .hb-text {
            flex: 1;
            min-width: 200px;
            font-size: 14px;
            color: #A5AAB5;
            line-height: 1.6;
        }
        .highlight-box .hb-text strong {
            color: #FF5E1A;
        }

        /* Tournament card */
        .tournament-card {
            background: #141822;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .tournament-card:hover {
            border-color: rgba(255, 94, 26, 0.2);
            box-shadow: 0 8px 28px rgba(255, 94, 26, 0.1);
            transform: translateY(-2px);
        }

        .tournament-card-img {
            height: 160px;
            object-fit: cover;
            width: 100%;
        }

        .tournament-card-body {
            padding: 18px;
        }

        .tournament-card-title {
            font-weight: 600;
            font-size: 16px;
            color: #ffffff;
            margin: 0 0 6px;
        }

        .tournament-card-meta {
            font-size: 12px;
            color: #6B7280;
            line-height: 1.5;
        }

/* roulang page: category1 */
:root {
            --brand: #FF5E1A;
            --brand-light: #FF7A3F;
            --brand-dark: #E04D0F;
            --deep: #0B0E14;
            --card-bg: #141822;
            --card-hover: #1A1F2E;
            --border-subtle: #1C2030;
            --text-weak: #A5AAB5;
            --text-muted: #6B7280;
            --accent: #6C3CFC;
            --accent-light: #8B63FF;
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-tag: 20px;
            --shadow-glow: 0 8px 32px rgba(255, 94, 26, 0.15);
            --shadow-glow-lg: 0 16px 48px rgba(255, 94, 26, 0.22);
            --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.3);
            --shadow-card-hover: 0 12px 36px rgba(255, 94, 26, 0.18);
            --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;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            background-color: var(--deep);
            color: #FFFFFF;
            line-height: 1.6;
            min-height: 100vh;
            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;
            font-family: inherit;
            border: none;
            outline: none;
            transition: all var(--transition-smooth);
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--brand);
            outline-offset: 3px;
            border-radius: 4px;
        }

        /* Container */
        .container-main {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        @media (max-width: 768px) {
            .container-main {
                padding: 0 16px;
            }
        }

        /* Header / Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(11, 14, 20, 0.95);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            height: 64px;
        }

        .header-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }

        .logo-link {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: #FFFFFF;
            letter-spacing: 0.02em;
            flex-shrink: 0;
            transition: color var(--transition-fast);
        }
        .logo-link:hover {
            color: var(--brand);
        }
        .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--brand), var(--brand-dark));
            border-radius: 8px;
            font-size: 1.1rem;
            color: #fff;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 4px;
        }
        .nav-links li a {
            display: block;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-weak);
            white-space: nowrap;
            transition: all var(--transition-fast);
            letter-spacing: 0.01em;
        }
        .nav-links li a:hover {
            color: #FFFFFF;
            background: rgba(255, 255, 255, 0.04);
        }
        .nav-links li a.active {
            color: var(--brand);
            background: rgba(255, 94, 26, 0.1);
            font-weight: 600;
        }

        /* Mobile menu button */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #FFFFFF;
            font-size: 1.5rem;
            padding: 6px 10px;
            border-radius: 6px;
            cursor: pointer;
            transition: background var(--transition-fast);
        }
        .menu-toggle:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        @media (max-width: 1024px) {
            .nav-links {
                gap: 0;
            }
            .nav-links li a {
                padding: 6px 10px;
                font-size: 0.82rem;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .nav-links {
                position: fixed;
                top: 64px;
                left: 0;
                right: 0;
                background: rgba(11, 14, 20, 0.98);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 12px 16px;
                gap: 2px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                transform: translateY(-120%);
                opacity: 0;
                pointer-events: none;
                transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 99;
            }
            .nav-links.open {
                transform: translateY(0);
                opacity: 1;
                pointer-events: auto;
            }
            .nav-links li a {
                width: 100%;
                padding: 12px 16px;
                font-size: 0.95rem;
                border-radius: 8px;
            }
        }

        /* Section spacing */
        .section-py {
            padding: 64px 0;
        }
        @media (max-width: 768px) {
            .section-py {
                padding: 40px 0;
            }
        }

        /* Section title */
        .section-title {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 8px;
            letter-spacing: 0.03em;
        }
        .section-subtitle {
            font-size: 1rem;
            color: var(--text-weak);
            margin-bottom: 32px;
            line-height: 1.5;
        }
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.5rem;
            }
            .section-subtitle {
                font-size: 0.9rem;
                margin-bottom: 24px;
            }
        }

        /* Hero */
        .hero-lol {
            position: relative;
            padding: 80px 0 72px;
            background: linear-gradient(180deg, #0B0E14 0%, rgba(11, 14, 20, 0.85) 40%, rgba(11, 14, 20, 0.92) 100%), url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            overflow: hidden;
        }
        .hero-lol::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(108, 60, 252, 0.12) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }
        .hero-lol::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 94, 26, 0.08) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }
        .hero-lol .container-main {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .hero-lol-text h1 {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', sans-serif;
            font-size: 3.2rem;
            font-weight: 800;
            color: #FFFFFF;
            margin: 0 0 12px 0;
            line-height: 1.15;
            letter-spacing: 0.04em;
        }
        .hero-lol-text h1 span {
            color: var(--brand);
        }
        .hero-lol-text .hero-desc {
            font-size: 1.1rem;
            color: var(--text-weak);
            margin: 0 0 24px 0;
            line-height: 1.6;
            max-width: 440px;
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 28px;
        }
        .hero-tag {
            display: inline-block;
            padding: 6px 14px;
            border-radius: var(--radius-tag);
            font-size: 0.85rem;
            font-weight: 500;
            background: rgba(255, 94, 26, 0.12);
            color: var(--brand-light);
            border: 1px solid rgba(255, 94, 26, 0.2);
            transition: all var(--transition-fast);
        }
        .hero-tag:hover {
            background: rgba(255, 94, 26, 0.2);
            border-color: rgba(255, 94, 26, 0.4);
        }
        .hero-cta-group {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 1rem;
            background: var(--brand);
            color: #FFFFFF;
            border: none;
            cursor: pointer;
            transition: all var(--transition-smooth);
            letter-spacing: 0.02em;
            box-shadow: 0 4px 20px rgba(255, 94, 26, 0.25);
        }
        .btn-primary:hover {
            background: var(--brand-light);
            box-shadow: var(--shadow-glow-lg);
            transform: translateY(-2px);
        }
        .btn-primary:active {
            transform: scale(0.97);
            box-shadow: 0 2px 12px rgba(255, 94, 26, 0.3);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 1rem;
            background: transparent;
            color: #FFFFFF;
            border: 1px solid var(--accent);
            cursor: pointer;
            transition: all var(--transition-smooth);
            letter-spacing: 0.02em;
        }
        .btn-secondary:hover {
            background: rgba(108, 60, 252, 0.15);
            border-color: var(--accent-light);
            box-shadow: 0 4px 20px rgba(108, 60, 252, 0.2);
            transform: translateY(-2px);
        }
        .btn-secondary:active {
            transform: scale(0.97);
        }

        .hero-lol-card {
            background: rgba(20, 24, 34, 0.8);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 28px;
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }
        .hero-lol-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--brand), var(--accent), transparent);
            border-radius: 2px 2px 0 0;
        }
        .hero-lol-card .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            border-radius: var(--radius-tag);
            background: rgba(255, 94, 26, 0.2);
            color: var(--brand);
            font-weight: 600;
            font-size: 0.8rem;
            margin-bottom: 16px;
            animation: pulse-badge 2s infinite;
        }
        @keyframes pulse-badge {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 94, 26, 0.4);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(255, 94, 26, 0);
            }
        }
        .hero-lol-card .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #FF5E1A;
            animation: blink-dot 1.2s infinite;
        }
        @keyframes blink-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.3;
            }
        }
        .hero-lol-card .match-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            gap: 12px;
        }
        .hero-lol-card .match-row:last-child {
            border-bottom: none;
        }
        .hero-lol-card .team-name {
            font-weight: 600;
            font-size: 0.95rem;
            color: #FFFFFF;
            min-width: 70px;
        }
        .hero-lol-card .match-score {
            font-family: 'DIN Alternate', 'Impact', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--brand);
            min-width: 50px;
            text-align: center;
        }
        .hero-lol-card .match-info {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-align: right;
            min-width: 80px;
        }

        @media (max-width: 768px) {
            .hero-lol {
                padding: 48px 0 40px;
            }
            .hero-lol .container-main {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero-lol-text h1 {
                font-size: 2.2rem;
            }
            .hero-lol-text .hero-desc {
                font-size: 1rem;
                max-width: 100%;
            }
            .hero-lol-card {
                padding: 20px;
                border-radius: 12px;
            }
            .hero-lol-card .team-name {
                font-size: 0.85rem;
                min-width: 50px;
            }
            .hero-lol-card .match-score {
                font-size: 1.1rem;
            }
            .btn-primary,
            .btn-secondary {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
        }

        /* Stats strip */
        .stats-strip {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(20, 24, 34, 0.5);
        }
        .stat-item {
            text-align: center;
            padding: 24px 12px;
            position: relative;
        }
        .stat-item::after {
            content: '';
            position: absolute;
            right: 0;
            top: 20%;
            height: 60%;
            width: 1px;
            background: rgba(255, 255, 255, 0.06);
        }
        .stat-item:last-child::after {
            display: none;
        }
        .stat-value {
            font-family: 'DIN Alternate', 'Impact', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--brand);
            line-height: 1;
            margin-bottom: 4px;
        }
        .stat-label {
            font-size: 0.82rem;
            color: var(--text-weak);
            margin: 0;
        }
        @media (max-width: 768px) {
            .stats-strip {
                grid-template-columns: repeat(3, 1fr);
            }
            .stat-item {
                padding: 16px 8px;
            }
            .stat-item:nth-child(3)::after {
                display: none;
            }
            .stat-value {
                font-size: 1.6rem;
            }
            .stat-label {
                font-size: 0.72rem;
            }
        }
        @media (max-width: 480px) {
            .stats-strip {
                grid-template-columns: repeat(2, 1fr);
            }
            .stat-item:nth-child(2)::after {
                display: none;
            }
            .stat-item:nth-child(3)::after {
                display: block;
            }
            .stat-item:nth-child(4)::after {
                display: none;
            }
        }

        /* Card base */
        .card-dark {
            background: rgba(20, 24, 34, 0.7);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-card);
            padding: 24px;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-card);
        }
        .card-dark:hover {
            background: rgba(26, 31, 46, 0.85);
            border-color: rgba(255, 255, 255, 0.1);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }

        /* Table style */
        .table-dark {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        .table-dark thead th {
            text-align: left;
            padding: 14px 16px;
            font-weight: 600;
            color: var(--text-weak);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(11, 14, 20, 0.5);
        }
        .table-dark tbody td {
            padding: 13px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            color: #FFFFFF;
            vertical-align: middle;
        }
        .table-dark tbody tr {
            transition: background var(--transition-fast);
        }
        .table-dark tbody tr:hover {
            background: rgba(255, 94, 26, 0.04);
        }
        .table-dark tbody tr.row-live {
            border-left: 3px solid var(--brand);
        }
        .table-dark .status-live {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            background: rgba(255, 94, 26, 0.15);
            color: var(--brand);
        }
        .table-dark .status-upcoming {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            background: rgba(108, 60, 252, 0.12);
            color: var(--accent-light);
        }
        .table-dark .status-done {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            background: rgba(107, 114, 128, 0.12);
            color: var(--text-muted);
        }
        .table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        @media (max-width: 768px) {
            .table-dark {
                font-size: 0.78rem;
            }
            .table-dark thead th,
            .table-dark tbody td {
                padding: 10px 8px;
            }
        }

        /* Filter tags */
        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }
        .filter-tag {
            padding: 8px 18px;
            border-radius: var(--radius-tag);
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: transparent;
            color: var(--text-weak);
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .filter-tag:hover {
            border-color: rgba(255, 255, 255, 0.3);
            color: #FFFFFF;
        }
        .filter-tag.active-filter {
            background: rgba(255, 94, 26, 0.15);
            border-color: var(--brand);
            color: var(--brand);
            font-weight: 600;
        }

        /* Ranking card */
        .rank-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            transition: background var(--transition-fast);
            border-radius: 6px;
        }
        .rank-item:hover {
            background: rgba(255, 255, 255, 0.02);
        }
        .rank-num {
            font-family: 'DIN Alternate', 'Impact', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            width: 36px;
            text-align: center;
            flex-shrink: 0;
        }
        .rank-num.top1 {
            color: #FFD700;
        }
        .rank-num.top2 {
            color: #C0C0C0;
        }
        .rank-num.top3 {
            color: #CD7F32;
        }
        .rank-num.normal {
            color: var(--text-weak);
        }
        .rank-team-name {
            font-weight: 600;
            flex: 1;
            color: #FFFFFF;
            font-size: 0.95rem;
        }
        .rank-stat {
            font-size: 0.85rem;
            color: var(--text-weak);
            text-align: right;
            min-width: 60px;
        }
        .rank-stat strong {
            color: var(--brand);
            font-family: 'DIN Alternate', 'Impact', sans-serif;
        }

        /* Tab switcher */
        .tab-switcher {
            display: flex;
            gap: 4px;
            margin-bottom: 20px;
            background: rgba(20, 24, 34, 0.6);
            border-radius: 10px;
            padding: 4px;
            width: fit-content;
        }
        .tab-btn {
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            border: none;
            background: transparent;
            color: var(--text-weak);
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .tab-btn:hover {
            color: #FFFFFF;
        }
        .tab-btn.active-tab {
            background: rgba(255, 94, 26, 0.2);
            color: var(--brand);
            font-weight: 600;
        }

        /* FAQ */
        .faq-item {
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 10px;
            margin-bottom: 10px;
            overflow: hidden;
            background: rgba(20, 24, 34, 0.5);
            transition: all var(--transition-smooth);
        }
        .faq-item:hover {
            border-color: rgba(255, 255, 255, 0.12);
        }
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 20px;
            background: none;
            border: none;
            color: #FFFFFF;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            text-align: left;
            gap: 12px;
            transition: background var(--transition-fast);
        }
        .faq-question:hover {
            background: rgba(255, 255, 255, 0.02);
        }
        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 94, 26, 0.15);
            color: var(--brand);
            font-weight: 700;
            font-size: 1.1rem;
            transition: all var(--transition-smooth);
        }
        .faq-item.open .faq-icon {
            background: rgba(255, 94, 26, 0.3);
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
            padding: 0 20px;
            color: var(--text-weak);
            font-size: 0.9rem;
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 20px 18px;
        }

        /* CTA section */
        .cta-section {
            background: linear-gradient(135deg, rgba(20, 24, 34, 0.9) 0%, rgba(11, 14, 20, 0.95) 100%), url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 48px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 94, 26, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-section h3 {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #FFFFFF;
            margin: 0 0 12px;
            position: relative;
            z-index: 1;
        }
        .cta-section p {
            color: var(--text-weak);
            margin: 0 0 24px;
            position: relative;
            z-index: 1;
            font-size: 1rem;
        }
        .cta-section .btn-primary {
            position: relative;
            z-index: 1;
        }
        @media (max-width: 768px) {
            .cta-section {
                padding: 32px 20px;
                border-radius: 12px;
            }
            .cta-section h3 {
                font-size: 1.5rem;
            }
        }

        /* Review card */
        .review-card {
            background: rgba(20, 24, 34, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-card);
            padding: 20px;
            transition: all var(--transition-smooth);
        }
        .review-card:hover {
            border-color: rgba(255, 255, 255, 0.12);
            box-shadow: var(--shadow-card-hover);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }
        .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            color: #fff;
            flex-shrink: 0;
        }
        .review-name {
            font-weight: 600;
            color: #FFFFFF;
            font-size: 0.9rem;
        }
        .review-tag {
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        .review-stars {
            color: #FFB800;
            font-size: 0.8rem;
            letter-spacing: 1px;
        }
        .review-text {
            font-size: 0.88rem;
            color: var(--text-weak);
            line-height: 1.6;
            margin: 0;
        }

        /* Footer */
        .site-footer {
            background: rgba(8, 10, 14, 0.95);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 48px 0 24px;
            margin-top: 64px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            font-weight: 600;
            color: #FFFFFF;
            margin: 0 0 12px;
            font-size: 0.95rem;
        }
        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 6px;
        }
        .footer-col ul li a {
            font-size: 0.85rem;
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--brand);
        }
        .footer-bottom {
            text-align: center;
            font-size: 0.78rem;
            color: var(--text-muted);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 20px;
            line-height: 1.8;
        }
        .footer-bottom a {
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--brand);
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .site-footer {
                padding: 32px 0 16px;
                margin-top: 40px;
            }
        }
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
        }

        /* Image card overlay */
        .img-card-cover {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 12px;
        }

        /* Grid for cards */
        .card-grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .card-grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .card-grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        @media (max-width: 1024px) {
            .card-grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }
            .card-grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 640px) {
            .card-grid-3,
            .card-grid-2,
            .card-grid-4 {
                grid-template-columns: 1fr;
            }
        }

        /* Utility */
        .text-brand {
            color: var(--brand);
        }
        .text-accent {
            color: var(--accent);
        }
        .text-weak {
            color: var(--text-weak);
        }
        .text-muted {
            color: var(--text-muted);
        }
        .mb-neg {
            margin-bottom: -4px;
        }
        .gap-section {
            display: flex;
            flex-direction: column;
            gap: 64px;
        }
        @media (max-width: 768px) {
            .gap-section {
                gap: 40px;
            }
        }

/* roulang page: category3 */
:root {
            --color-brand-orange: #FF5E1A;
            --color-brand-deep: #0B0E14;
            --color-brand-card: #141822;
            --color-brand-border: #1C2030;
            --color-brand-purple: #6C3CFC;
            --color-brand-text: #FFFFFF;
            --color-brand-muted: #A5AAB5;
            --color-brand-weak: #6B7280;
            --radius-card: 12px;
            --radius-btn: 8px;
            --shadow-glow: 0 8px 32px rgba(255, 94, 26, 0.15);
            --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: 16px;
            line-height: 1.65;
            background-color: #0B0E14;
            color: #FFFFFF;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--color-brand-orange);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input {
            font-family: inherit;
            font-size: inherit;
        }

        .container-main {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        @media (max-width: 768px) {
            .container-main {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

        /* Site Header & Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: #0B0E14;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            height: 64px;
            display: flex;
            align-items: center;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        .site-header .container-main {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }
        .site-logo {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: #FFFFFF;
            letter-spacing: 0.04em;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
        }
        .site-logo .logo-accent {
            color: #FF5E1A;
            font-size: 1.75rem;
        }
        .site-logo:hover {
            color: #FFFFFF;
            text-shadow: 0 0 20px rgba(255, 94, 26, 0.5);
        }
        .nav-links {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 4px;
            flex-wrap: nowrap;
            align-items: center;
        }
        .nav-links li {
            margin: 0;
            padding: 0;
        }
        .nav-links a {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #A5AAB5;
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
        }
        .nav-links a:hover {
            color: #FFFFFF;
            background-color: rgba(255, 255, 255, 0.04);
        }
        .nav-links a.active {
            color: #FF5E1A;
            background-color: rgba(255, 94, 26, 0.08);
            font-weight: 600;
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background-color: #FF5E1A;
            border-radius: 2px;
        }

        /* Mobile nav toggle */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            color: #FFFFFF;
            font-size: 1.5rem;
            line-height: 1;
            z-index: 1001;
        }
        .nav-toggle:hover {
            color: #FF5E1A;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 64px;
                left: 0;
                right: 0;
                background-color: #0B0E14;
                flex-direction: column;
                padding: 16px 24px;
                gap: 2px;
                border-bottom: 2px solid rgba(255, 94, 26, 0.3);
                box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
                z-index: 999;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                width: 100%;
                padding: 12px 16px;
                font-size: 1rem;
            }
            .nav-links a.active::after {
                bottom: 0;
            }
        }
        @media (max-width: 520px) {
            .site-logo {
                font-size: 1.3rem;
            }
            .site-logo .logo-accent {
                font-size: 1.4rem;
            }
        }

        /* Hero Section */
        .hero-category {
            position: relative;
            background-color: #0B0E14;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 520px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hero-category::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(11, 14, 20, 0.92) 0%, rgba(11, 14, 20, 0.7) 40%, rgba(20, 24, 34, 0.55) 70%, rgba(11, 14, 20, 0.8) 100%);
            z-index: 1;
        }
        .hero-category::after {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 94, 26, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
            pointer-events: none;
        }
        .hero-category .hero-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            width: 100%;
        }
        .hero-category .hero-text h1 {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', sans-serif;
            font-size: clamp(2.4rem, 4.5vw, 3.6rem);
            font-weight: 700;
            line-height: 1.15;
            color: #FFFFFF;
            margin: 0 0 16px;
            letter-spacing: 0.02em;
        }
        .hero-category .hero-text h1 .highlight {
            color: #FF5E1A;
            position: relative;
        }
        .hero-category .hero-text .hero-subtitle {
            font-size: 1.1rem;
            color: #A5AAB5;
            margin: 0 0 24px;
            line-height: 1.6;
            max-width: 480px;
        }
        .hero-category .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 24px;
        }
        .hero-category .hero-tag {
            display: inline-block;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            background-color: rgba(108, 60, 252, 0.15);
            color: #b8a0ff;
            border: 1px solid rgba(108, 60, 252, 0.3);
            white-space: nowrap;
        }
        .hero-category .hero-tag.hot {
            background-color: rgba(255, 94, 26, 0.15);
            color: #FF5E1A;
            border: 1px solid rgba(255, 94, 26, 0.35);
        }
        .hero-category .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            background-color: #FF5E1A;
            color: #FFFFFF;
            border: none;
            cursor: pointer;
            transition: all var(--transition-smooth);
            white-space: nowrap;
            text-decoration: none;
            box-shadow: 0 4px 16px rgba(255, 94, 26, 0.25);
        }
        .btn-primary:hover {
            background-color: #ff7535;
            color: #FFFFFF;
            box-shadow: 0 8px 28px rgba(255, 94, 26, 0.4);
            transform: translateY(-2px);
        }
        .btn-primary:active {
            transform: scale(0.97);
            box-shadow: 0 2px 8px rgba(255, 94, 26, 0.3);
        }
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            background-color: transparent;
            color: #FFFFFF;
            border: 1px solid #6C3CFC;
            cursor: pointer;
            transition: all var(--transition-smooth);
            white-space: nowrap;
            text-decoration: none;
        }
        .btn-ghost:hover {
            background-color: rgba(108, 60, 252, 0.12);
            color: #FFFFFF;
            border-color: #8b6aff;
            box-shadow: 0 4px 20px rgba(108, 60, 252, 0.25);
            transform: translateY(-2px);
        }
        .btn-ghost:active {
            transform: scale(0.97);
        }
        .hero-category .hero-data-card {
            background: rgba(20, 24, 34, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 24px 28px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 94, 26, 0.06);
            animation: cardPulse 3s ease-in-out infinite;
        }
        @keyframes cardPulse {
            0%,
            100% {
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 94, 26, 0.06);
            }
            50% {
                box-shadow: 0 8px 40px rgba(255, 94, 26, 0.18), 0 0 0 2px rgba(255, 94, 26, 0.15);
            }
        }
        .hero-data-card .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background-color: rgba(255, 94, 26, 0.2);
            color: #FF5E1A;
            padding: 4px 12px;
            border-radius: 16px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: 0.04em;
        }
        .live-badge .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #FF5E1A;
            animation: liveBlink 1s ease-in-out infinite;
        }
        @keyframes liveBlink {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 6px #FF5E1A;
            }
            50% {
                opacity: 0.3;
                box-shadow: 0 0 2px #FF5E1A;
            }
        }
        .hero-data-card .match-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .hero-data-card .match-row:last-child {
            border-bottom: none;
        }
        .hero-data-card .team-name {
            font-weight: 600;
            font-size: 1rem;
            color: #FFFFFF;
            min-width: 70px;
            text-align: center;
        }
        .hero-data-card .score-display {
            font-family: 'DIN Alternate', 'Impact', monospace;
            font-size: 1.8rem;
            font-weight: 700;
            color: #FF5E1A;
            min-width: 60px;
            text-align: center;
        }
        .hero-data-card .match-info {
            font-size: 0.75rem;
            color: #6B7280;
            text-align: center;
            margin-top: 4px;
        }
        @media (max-width: 1024px) {
            .hero-category .hero-inner {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero-category {
                min-height: auto;
                padding: 48px 0 40px;
            }
            .hero-category .hero-data-card {
                max-width: 420px;
            }
        }
        @media (max-width: 520px) {
            .hero-category .hero-text h1 {
                font-size: 1.8rem;
            }
            .hero-category .hero-text .hero-subtitle {
                font-size: 0.95rem;
            }
            .hero-category .hero-data-card {
                padding: 16px 18px;
            }
            .hero-data-card .score-display {
                font-size: 1.4rem;
            }
            .btn-primary,
            .btn-ghost {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
        }

        /* Section common */
        .section-block {
            padding: 64px 0;
        }
        @media (max-width: 768px) {
            .section-block {
                padding: 40px 0;
            }
        }
        .section-title {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', sans-serif;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 700;
            color: #FFFFFF;
            margin: 0 0 8px;
            letter-spacing: 0.02em;
        }
        .section-subtitle {
            font-size: 0.95rem;
            color: #6B7280;
            margin: 0 0 36px;
            line-height: 1.5;
        }

        /* Stats strip */
        .stats-strip {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 16px;
            background: rgba(20, 24, 34, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            transition: all var(--transition-smooth);
        }
        .stat-item:hover {
            border-color: rgba(255, 94, 26, 0.25);
            box-shadow: 0 4px 20px rgba(255, 94, 26, 0.08);
            transform: translateY(-2px);
        }
        .stat-number {
            font-family: 'DIN Alternate', 'Impact', monospace;
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            font-weight: 700;
            color: #FF5E1A;
            line-height: 1.1;
        }
        .stat-label {
            font-size: 0.85rem;
            color: #A5AAB5;
            margin-top: 6px;
        }
        .stat-detail {
            font-size: 0.7rem;
            color: #6B7280;
            margin-top: 2px;
        }
        @media (max-width: 768px) {
            .stats-strip {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .stat-item {
                padding: 14px 12px;
            }
        }
        @media (max-width: 520px) {
            .stats-strip {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .stat-number {
                font-size: 1.5rem;
            }
            .stat-label {
                font-size: 0.75rem;
            }
        }

        /* Table wrapper */
        .table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(20, 24, 34, 0.7);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            min-width: 700px;
        }
        .data-table thead th {
            background-color: rgba(20, 24, 34, 0.95);
            color: #A5AAB5;
            font-weight: 600;
            padding: 14px 16px;
            text-align: left;
            white-space: nowrap;
            border-bottom: 2px solid rgba(255, 94, 26, 0.25);
            font-size: 0.8rem;
            letter-spacing: 0.03em;
        }
        .data-table tbody td {
            padding: 13px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            color: #FFFFFF;
            white-space: nowrap;
        }
        .data-table tbody tr {
            transition: background-color var(--transition-fast);
        }
        .data-table tbody tr:hover {
            background-color: rgba(255, 94, 26, 0.04);
        }
        .data-table tbody tr.row-live {
            border-left: 2px solid #FF5E1A;
            background-color: rgba(255, 94, 26, 0.03);
        }
        .data-table .status-live {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: #FF5E1A;
            font-weight: 600;
            font-size: 0.8rem;
        }
        .data-table .status-live .mini-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: #FF5E1A;
            animation: liveBlink 1s ease-in-out infinite;
        }
        .data-table .status-upcoming {
            color: #6C3CFC;
            font-weight: 500;
            font-size: 0.8rem;
        }
        .data-table .status-done {
            color: #6B7280;
            font-size: 0.8rem;
        }
        .data-table .score-cell {
            font-family: 'DIN Alternate', 'Impact', monospace;
            font-weight: 700;
            font-size: 1.05rem;
            color: #FF5E1A;
        }
        .data-table .btn-sm {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 500;
            background-color: rgba(108, 60, 252, 0.15);
            color: #b8a0ff;
            border: 1px solid rgba(108, 60, 252, 0.25);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
            text-decoration: none;
        }
        .data-table .btn-sm:hover {
            background-color: rgba(108, 60, 252, 0.3);
            color: #FFFFFF;
        }

        /* Map win-rate cards */
        .map-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .map-card {
            background: rgba(20, 24, 34, 0.75);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            padding: 20px;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .map-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #FF5E1A, #6C3CFC, transparent);
            opacity: 0;
            transition: opacity var(--transition-smooth);
        }
        .map-card:hover {
            border-color: rgba(255, 94, 26, 0.3);
            box-shadow: 0 8px 28px rgba(255, 94, 26, 0.1);
            transform: translateY(-3px);
        }
        .map-card:hover::before {
            opacity: 1;
        }
        .map-card .map-name {
            font-family: 'DIN Alternate', 'Impact', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: #FFFFFF;
            margin: 0 0 12px;
            letter-spacing: 0.03em;
        }
        .map-card .top-team {
            font-size: 0.85rem;
            color: #A5AAB5;
            margin: 0 0 4px;
        }
        .map-card .top-team strong {
            color: #FF5E1A;
            font-weight: 600;
        }
        .map-card .win-rate-bar-wrap {
            background: rgba(255, 255, 255, 0.06);
            border-radius: 6px;
            height: 8px;
            margin: 10px 0 8px;
            overflow: hidden;
        }
        .map-card .win-rate-bar-fill {
            height: 100%;
            border-radius: 6px;
            background: linear-gradient(90deg, #FF5E1A, #ff8c52);
            transition: width 0.6s ease;
        }
        .map-card .win-rate-num {
            font-family: 'DIN Alternate', 'Impact', monospace;
            font-size: 1.5rem;
            font-weight: 700;
            color: #FF5E1A;
        }
        .map-card .matches-count {
            font-size: 0.7rem;
            color: #6B7280;
            margin-top: 2px;
        }
        @media (max-width: 1024px) {
            .map-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .map-cards-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
        }

        /* Ranking */
        .ranking-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(20, 24, 34, 0.7);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .ranking-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            min-width: 700px;
        }
        .ranking-table thead th {
            background-color: rgba(20, 24, 34, 0.95);
            color: #A5AAB5;
            font-weight: 600;
            padding: 14px 16px;
            text-align: left;
            white-space: nowrap;
            border-bottom: 2px solid rgba(108, 60, 252, 0.3);
            font-size: 0.8rem;
            letter-spacing: 0.03em;
        }
        .ranking-table tbody td {
            padding: 13px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            color: #FFFFFF;
            white-space: nowrap;
        }
        .ranking-table tbody tr:hover {
            background-color: rgba(108, 60, 252, 0.04);
        }
        .rank-num {
            font-family: 'DIN Alternate', 'Impact', monospace;
            font-size: 1.2rem;
            font-weight: 700;
            color: #FF5E1A;
            text-align: center;
            min-width: 40px;
        }
        .rank-num.top3 {
            color: #FF5E1A;
            text-shadow: 0 0 12px rgba(255, 94, 26, 0.4);
        }
        .team-name-cell {
            font-weight: 600;
            color: #FFFFFF;
        }
        .win-rate-cell {
            font-family: 'DIN Alternate', monospace;
            font-weight: 700;
            color: #FF5E1A;
        }

        /* Comments */
        .comments-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .comment-card {
            background: rgba(20, 24, 34, 0.65);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 18px;
            transition: all var(--transition-smooth);
        }
        .comment-card:hover {
            border-color: rgba(255, 94, 26, 0.2);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
            transform: translateY(-2px);
        }
        .comment-card .comment-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .comment-card .comment-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FF5E1A, #6C3CFC);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            color: #FFFFFF;
            flex-shrink: 0;
        }
        .comment-card .comment-name {
            font-weight: 600;
            font-size: 0.85rem;
            color: #FFFFFF;
            margin: 0;
        }
        .comment-card .comment-tag {
            font-size: 0.7rem;
            color: #6B7280;
            margin: 0;
        }
        .comment-card .comment-stars {
            color: #FF5E1A;
            font-size: 0.75rem;
            margin: 4px 0 0;
        }
        .comment-card .comment-text {
            font-size: 0.85rem;
            color: #A5AAB5;
            line-height: 1.5;
            margin: 0;
        }
        @media (max-width: 1024px) {
            .comments-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .comments-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-item {
            background: rgba(20, 24, 34, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            overflow: hidden;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .faq-item:hover {
            border-color: rgba(255, 94, 26, 0.2);
        }
        .faq-item.open {
            background: rgba(20, 24, 34, 0.9);
            border-color: rgba(255, 94, 26, 0.3);
            box-shadow: 0 4px 20px rgba(255, 94, 26, 0.06);
        }
        .faq-question {
            padding: 16px 20px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            color: #FFFFFF;
            user-select: none;
            transition: color var(--transition-fast);
        }
        .faq-item.open .faq-question {
            color: #FF5E1A;
        }
        .faq-icon {
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: rgba(255, 94, 26, 0.15);
            color: #FF5E1A;
            font-weight: 700;
            font-size: 1rem;
            transition: all var(--transition-fast);
            line-height: 1;
        }
        .faq-item.open .faq-icon {
            background-color: rgba(255, 94, 26, 0.3);
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }
        .faq-item.open .faq-answer {
            max-height: 200px;
        }
        .faq-answer-inner {
            padding: 0 20px 16px 54px;
            font-size: 0.9rem;
            color: #A5AAB5;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 60px 0 50px;
            position: relative;
            background: radial-gradient(ellipse at center, rgba(255, 94, 26, 0.06) 0%, transparent 70%);
        }
        .cta-section .cta-title {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', sans-serif;
            font-size: clamp(1.6rem, 3vw, 2rem);
            font-weight: 700;
            color: #FFFFFF;
            margin: 0 0 12px;
        }
        .cta-section .cta-desc {
            color: #A5AAB5;
            font-size: 0.95rem;
            margin: 0 0 28px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-section .cta-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        /* Footer */
        .site-footer {
            background-color: #0B0E14;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 48px 0 32px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 32px;
            margin-bottom: 36px;
        }
        .footer-col h4 {
            font-weight: 700;
            font-size: 0.95rem;
            color: #FFFFFF;
            margin: 0 0 14px;
            letter-spacing: 0.02em;
        }
        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            font-size: 0.85rem;
            color: #6B7280;
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: #FF5E1A;
        }
        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding-top: 20px;
            font-size: 0.8rem;
            color: #6B7280;
            line-height: 1.8;
        }
        .footer-bottom a {
            color: #6B7280;
            font-size: 0.8rem;
        }
        .footer-bottom a:hover {
            color: #FF5E1A;
        }
        .footer-bottom p {
            margin: 0;
        }
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .footer-col h4 {
                font-size: 0.85rem;
            }
            .footer-col ul li a {
                font-size: 0.75rem;
            }
            .footer-bottom {
                font-size: 0.7rem;
            }
        }

        /* Divider */
        .section-divider {
            border: none;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            margin: 0;
        }

        /* Focus accessibility */
        a:focus-visible,
        button:focus-visible {
            outline: 2px solid #FF5E1A;
            outline-offset: 2px;
            border-radius: 4px;
        }

        /* Smooth image */
        .img-cover {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

/* roulang page: category4 */
:root {
            --brand-orange: #FF5E1A;
            --brand-orange-light: #FF7A3F;
            --brand-purple: #6C3CFC;
            --brand-purple-light: #8B63FF;
            --deep-bg: #0B0E14;
            --card-bg: #141822;
            --border-subtle: #1C2030;
            --text-primary: #FFFFFF;
            --text-muted: #A5AAB5;
            --text-dim: #6B7280;
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-tag: 6px;
            --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 8px 32px rgba(255, 94, 26, 0.2), 0 4px 20px rgba(0, 0, 0, 0.4);
            --transition-smooth: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: 0.3s 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;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            background-color: var(--deep-bg);
            color: var(--text-primary);
            line-height: 1.65;
            min-height: 100vh;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-smooth);
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
            transition: all var(--transition-smooth);
        }

        button:focus-visible,
        a:focus-visible {
            outline: 2px solid var(--brand-orange);
            outline-offset: 3px;
            border-radius: 4px;
        }

        input {
            font-family: inherit;
            outline: none;
        }

        .container-main {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        @media (max-width: 768px) {
            .container-main {
                padding: 0 16px;
            }
        }

        /* ========== HEADER / NAV ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(11, 14, 20, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            height: 64px;
            display: flex;
            align-items: center;
            transition: background var(--transition-smooth);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .logo-text {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            color: #FFFFFF;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .logo-text .logo-accent {
            color: var(--brand-orange);
            font-size: 1.75rem;
            line-height: 1;
        }

        .logo-text .logo-icon {
            display: inline-block;
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, var(--brand-orange), #FF3D00);
            border-radius: 6px;
            position: relative;
            flex-shrink: 0;
        }

        .logo-text .logo-icon::after {
            content: '';
            position: absolute;
            top: 4px;
            left: 7px;
            width: 6px;
            height: 14px;
            background: #fff;
            border-radius: 3px;
            transform: rotate(8deg);
            box-shadow: 8px -3px 0 0 #fff;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 4px;
            align-items: center;
            flex-wrap: nowrap;
        }

        .nav-links li a {
            display: block;
            padding: 8px 14px;
            border-radius: var(--radius-btn);
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-muted);
            white-space: nowrap;
            transition: all var(--transition-smooth);
            position: relative;
            letter-spacing: 0.01em;
        }

        .nav-links li a:hover {
            color: #FFFFFF;
            background: rgba(255, 255, 255, 0.04);
        }

        .nav-links li a.active {
            color: var(--brand-orange);
            background: rgba(255, 94, 26, 0.1);
            font-weight: 600;
        }

        .nav-links li a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: var(--brand-orange);
            border-radius: 2px;
        }

        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            padding: 8px;
            cursor: pointer;
            border-radius: 6px;
            transition: background var(--transition-smooth);
            z-index: 101;
        }

        .mobile-menu-btn:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        @media (max-width: 920px) {
            .nav-links {
                position: fixed;
                top: 64px;
                left: 0;
                right: 0;
                background: rgba(11, 14, 20, 0.97);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: stretch;
                gap: 2px;
                padding: 12px 16px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
                transform: translateY(-120%);
                opacity: 0;
                pointer-events: none;
                transition: transform 0.3s ease, opacity 0.25s ease;
                z-index: 99;
                max-height: calc(100vh - 64px);
                overflow-y: auto;
            }
            .nav-links.open {
                transform: translateY(0);
                opacity: 1;
                pointer-events: auto;
            }
            .nav-links li a {
                padding: 12px 16px;
                font-size: 1rem;
                border-radius: 8px;
            }
            .nav-links li a.active::after {
                display: none;
            }
            .nav-links li a.active {
                border-left: 3px solid var(--brand-orange);
                border-radius: 0 8px 8px 0;
            }
            .mobile-menu-btn {
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }

        /* ========== HERO BANNER ========== */
        .hero-banner {
            position: relative;
            min-height: 420px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--deep-bg);
            isolation: isolate;
        }

        .hero-banner .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            background-image: url('/assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center 30%;
            opacity: 0.35;
            filter: saturate(0.7) brightness(0.55);
        }

        .hero-banner .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(180deg, rgba(11, 14, 20, 0.5) 0%, rgba(11, 14, 20, 0.85) 60%, rgba(11, 14, 20, 0.95) 100%);
        }

        .hero-banner .hero-content {
            position: relative;
            z-index: 2;
            padding: 60px 0 50px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 700px;
        }

        .hero-banner .hero-tag-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .hero-banner .hero-tag {
            display: inline-block;
            padding: 5px 13px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.02em;
            background: rgba(255, 94, 26, 0.15);
            color: var(--brand-orange-light);
            border: 1px solid rgba(255, 94, 26, 0.25);
        }

        .hero-banner .hero-tag.purple-tag {
            background: rgba(108, 60, 252, 0.15);
            color: var(--brand-purple-light);
            border: 1px solid rgba(108, 60, 252, 0.25);
        }

        .hero-banner h1 {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: 0.02em;
            color: #FFFFFF;
            text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
        }

        .hero-banner h1 .highlight {
            color: var(--brand-orange);
            position: relative;
        }

        .hero-banner .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.6;
            max-width: 550px;
        }

        .hero-banner .hero-cta-row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 6px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            background: var(--brand-orange);
            color: #FFFFFF;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: var(--radius-btn);
            letter-spacing: 0.02em;
            transition: all var(--transition-bounce);
            box-shadow: 0 4px 16px rgba(255, 94, 26, 0.3);
            border: none;
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-primary:hover {
            background: var(--brand-orange-light);
            box-shadow: 0 6px 24px rgba(255, 94, 26, 0.45);
            transform: translateY(-2px);
        }

        .btn-primary:active {
            transform: scale(0.97);
            box-shadow: 0 2px 8px rgba(255, 94, 26, 0.35);
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 26px;
            background: transparent;
            color: #FFFFFF;
            font-weight: 500;
            font-size: 0.95rem;
            border-radius: var(--radius-btn);
            letter-spacing: 0.02em;
            border: 1px solid var(--brand-purple);
            transition: all var(--transition-smooth);
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-ghost:hover {
            background: rgba(108, 60, 252, 0.12);
            border-color: var(--brand-purple-light);
            box-shadow: var(--glow-purple);
        }

        @media (max-width: 768px) {
            .hero-banner {
                min-height: 340px;
            }
            .hero-banner .hero-content {
                padding: 40px 0 36px;
                gap: 12px;
            }
            .hero-banner h1 {
                font-size: 2rem;
            }
            .hero-banner .hero-subtitle {
                font-size: 0.95rem;
            }
            .btn-primary,
            .btn-ghost {
                padding: 11px 20px;
                font-size: 0.88rem;
            }
        }

        /* ========== SECTION STYLES ========== */
        .section {
            padding: 56px 0;
        }

        .section-sm {
            padding: 36px 0;
        }

        .section-title {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            margin-bottom: 6px;
            color: #FFFFFF;
        }

        .section-subtitle {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 28px;
        }

        @media (max-width: 768px) {
            .section {
                padding: 36px 0;
            }
            .section-title {
                font-size: 1.4rem;
            }
        }

        /* ========== STATS RIBBON ========== */
        .stats-ribbon {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 2px;
            background: transparent;
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
        }

        .stat-item {
            background: var(--card-bg);
            text-align: center;
            padding: 22px 14px;
            transition: background var(--transition-smooth);
        }

        .stat-item:hover {
            background: #1a1f2c;
        }

        .stat-value {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: 2.1rem;
            font-weight: 700;
            color: var(--brand-orange);
            line-height: 1.1;
            letter-spacing: 0.02em;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--text-dim);
            margin-top: 4px;
            letter-spacing: 0.02em;
        }

        @media (max-width: 640px) {
            .stats-ribbon {
                grid-template-columns: repeat(3, 1fr);
            }
            .stat-value {
                font-size: 1.5rem;
            }
            .stat-item {
                padding: 14px 8px;
            }
            .stat-label {
                font-size: 0.7rem;
            }
        }

        /* ========== FILTER TABS ========== */
        .filter-tabs {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .filter-tab {
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            background: var(--card-bg);
            color: var(--text-muted);
            border: 1px solid transparent;
            transition: all var(--transition-smooth);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .filter-tab:hover {
            color: #fff;
            border-color: var(--border-subtle);
            background: #1a1f2c;
        }

        .filter-tab.active-filter {
            background: rgba(255, 94, 26, 0.15);
            color: var(--brand-orange);
            border-color: rgba(255, 94, 26, 0.3);
            font-weight: 600;
        }

        /* ========== SCHEDULE TABLE ========== */
        .schedule-table-wrap {
            overflow-x: auto;
            border-radius: var(--radius-card);
            border: 1px solid var(--border-subtle);
            -webkit-overflow-scrolling: touch;
        }

        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
            font-size: 0.9rem;
            background: var(--card-bg);
        }

        .schedule-table thead th {
            background: #0d1118;
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 0.04em;
            color: var(--text-dim);
            text-transform: uppercase;
            border-bottom: 1px solid var(--border-subtle);
            white-space: nowrap;
        }

        .schedule-table tbody td {
            padding: 14px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            vertical-align: middle;
            white-space: nowrap;
        }

        .schedule-table tbody tr {
            transition: background var(--transition-smooth);
        }

        .schedule-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.02);
        }

        .schedule-table tbody tr.row-live {
            border-left: 3px solid var(--brand-orange);
            background: rgba(255, 94, 26, 0.04);
        }

        .schedule-table .match-teams {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            color: #fff;
        }

        .schedule-table .match-teams .vs {
            color: var(--text-dim);
            font-size: 0.8rem;
            font-weight: 400;
        }

        .schedule-table .score-display {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--brand-orange);
            letter-spacing: 0.04em;
            text-align: center;
            min-width: 50px;
        }

        .status-badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.03em;
        }

        .status-badge.live {
            background: rgba(255, 94, 26, 0.2);
            color: var(--brand-orange);
            animation: pulse-dot 1.6s ease-in-out infinite;
        }

        .status-badge.upcoming {
            background: rgba(108, 60, 252, 0.15);
            color: var(--brand-purple-light);
        }

        .status-badge.done {
            background: rgba(107, 114, 128, 0.15);
            color: var(--text-dim);
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        .match-league-tag {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-muted);
            letter-spacing: 0.02em;
        }

        .btn-sm-outline {
            display: inline-block;
            padding: 6px 14px;
            border-radius: var(--radius-btn);
            font-size: 0.78rem;
            font-weight: 500;
            border: 1px solid var(--brand-orange);
            color: var(--brand-orange);
            background: transparent;
            cursor: pointer;
            transition: all var(--transition-smooth);
            white-space: nowrap;
            letter-spacing: 0.02em;
        }

        .btn-sm-outline:hover {
            background: rgba(255, 94, 26, 0.12);
            border-color: var(--brand-orange-light);
            color: #fff;
        }

        /* ========== RANKING LIST ========== */
        .ranking-list {
            display: flex;
            flex-direction: column;
            gap: 6px;
            counter-reset: rank;
        }

        .ranking-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 18px;
            background: var(--card-bg);
            border-radius: 10px;
            border: 1px solid transparent;
            transition: all var(--transition-smooth);
            counter-increment: rank;
        }

        .ranking-item:hover {
            border-color: var(--border-subtle);
            background: #1a1f2c;
            transform: translateX(3px);
        }

        .ranking-item .rank-num {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dim);
            min-width: 36px;
            text-align: center;
        }

        .ranking-item:nth-child(1) .rank-num {
            color: #FFD700;
            font-size: 1.7rem;
        }
        .ranking-item:nth-child(2) .rank-num {
            color: #C0C0C0;
            font-size: 1.6rem;
        }
        .ranking-item:nth-child(3) .rank-num {
            color: #CD7F32;
            font-size: 1.5rem;
        }

        .ranking-item .team-info {
            flex: 1;
            min-width: 0;
        }
        .ranking-item .team-name {
            font-weight: 600;
            font-size: 0.95rem;
            color: #fff;
        }
        .ranking-item .team-region {
            font-size: 0.75rem;
            color: var(--text-dim);
        }
        .ranking-item .win-rate {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--brand-orange);
            text-align: right;
            min-width: 60px;
        }
        .ranking-item .win-rate-label {
            font-size: 0.7rem;
            color: var(--text-dim);
            text-align: right;
        }

        @media (max-width: 520px) {
            .ranking-item {
                padding: 10px 12px;
                gap: 10px;
            }
            .ranking-item .rank-num {
                font-size: 1.2rem;
                min-width: 28px;
            }
            .ranking-item .team-name {
                font-size: 0.85rem;
            }
            .ranking-item .win-rate {
                font-size: 1rem;
                min-width: 48px;
            }
        }

        /* ========== CARD GRID ========== */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 16px;
        }

        .info-card {
            background: var(--card-bg);
            border-radius: var(--radius-card);
            border: 1px solid var(--border-subtle);
            padding: 20px 22px;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .info-card:hover {
            border-color: rgba(255, 94, 26, 0.25);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }

        .info-card .card-icon-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .info-card .card-icon-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .info-card .card-icon-circle.orange-bg {
            background: rgba(255, 94, 26, 0.18);
            color: var(--brand-orange);
        }
        .info-card .card-icon-circle.purple-bg {
            background: rgba(108, 60, 252, 0.18);
            color: var(--brand-purple-light);
        }

        .info-card h4 {
            font-weight: 600;
            font-size: 1rem;
            color: #fff;
            margin-bottom: 4px;
        }

        .info-card .card-desc {
            font-size: 0.82rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .info-card .card-stat-row {
            display: flex;
            gap: 16px;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }

        .info-card .card-stat-mini {
            text-align: center;
        }
        .info-card .card-stat-mini .mini-val {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--brand-orange);
        }
        .info-card .card-stat-mini .mini-label {
            font-size: 0.7rem;
            color: var(--text-dim);
        }

        @media (max-width: 640px) {
            .card-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .info-card {
                padding: 16px;
            }
        }

        /* ========== REVIEW CARDS ========== */
        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 14px;
        }

        .review-card {
            background: var(--card-bg);
            border-radius: var(--radius-card);
            border: 1px solid var(--border-subtle);
            padding: 18px 20px;
            transition: all var(--transition-smooth);
        }

        .review-card:hover {
            border-color: rgba(255, 255, 255, 0.1);
            box-shadow: var(--shadow-card);
        }

        .review-card .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .review-card .review-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand-purple), #4a2db8);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            color: #fff;
            flex-shrink: 0;
        }

        .review-card .review-avatar.av-orange {
            background: linear-gradient(135deg, var(--brand-orange), #d04a10);
        }

        .review-card .review-avatar.av-teal {
            background: linear-gradient(135deg, #10b981, #059669);
        }

        .review-card .review-name {
            font-weight: 600;
            font-size: 0.9rem;
            color: #fff;
        }
        .review-card .review-tag {
            font-size: 0.7rem;
            color: var(--text-dim);
        }
        .review-card .review-stars {
            color: #f59e0b;
            font-size: 0.85rem;
            letter-spacing: 2px;
        }
        .review-card .review-body {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.55;
        }
        .review-card .review-time {
            font-size: 0.7rem;
            color: var(--text-dim);
            margin-top: 8px;
        }

        @media (max-width: 640px) {
            .review-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .review-card {
                padding: 14px 16px;
            }
        }

        /* ========== FAQ ACCORDION ========== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .faq-item {
            background: var(--card-bg);
            border-radius: 10px;
            border: 1px solid var(--border-subtle);
            overflow: hidden;
            transition: all var(--transition-smooth);
        }

        .faq-item.active-faq {
            border-color: rgba(255, 94, 26, 0.3);
            background: #181d28;
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            background: transparent;
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            text-align: left;
            cursor: pointer;
            border: none;
            letter-spacing: 0.02em;
            gap: 12px;
            transition: color var(--transition-smooth);
        }

        .faq-question:hover {
            color: var(--brand-orange-light);
        }

        .faq-icon {
            flex-shrink: 0;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            transition: all var(--transition-smooth);
            font-weight: 700;
            color: var(--text-muted);
        }

        .faq-item.active-faq .faq-icon {
            background: rgba(255, 94, 26, 0.2);
            color: var(--brand-orange);
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.3s ease;
            padding: 0 20px;
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .faq-item.active-faq .faq-answer {
            max-height: 200px;
            padding: 0 20px 16px;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            background: linear-gradient(135deg, rgba(20, 24, 34, 0.9) 0%, rgba(11, 14, 20, 0.95) 100%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 40px 36px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -40px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 94, 26, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-section h3 {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
        }

        .cta-section .cta-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .cta-section .cta-btn-row {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 640px) {
            .cta-section {
                padding: 28px 18px;
            }
            .cta-section h3 {
                font-size: 1.3rem;
            }
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #080b10;
            border-top: 1px solid var(--border-subtle);
            padding: 40px 0 20px;
            margin-top: 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 28px;
            margin-bottom: 28px;
        }

        .footer-col h4 {
            font-weight: 600;
            font-size: 0.9rem;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: 0.03em;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 6px;
        }

        .footer-col ul li a {
            font-size: 0.8rem;
            color: var(--text-dim);
            transition: color var(--transition-smooth);
        }

        .footer-col ul li a:hover {
            color: var(--brand-orange);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            font-size: 0.78rem;
            color: var(--text-dim);
            line-height: 1.7;
        }

        .footer-bottom a {
            color: var(--text-dim);
            transition: color var(--transition-smooth);
        }

        .footer-bottom a:hover {
            color: var(--brand-orange);
        }

        @media (max-width: 640px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
            }
            .site-footer {
                padding: 28px 0 16px;
            }
        }

        /* ========== DIVIDER ========== */
        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
            margin: 8px 0;
        }

/* roulang page: category5 */
:root {
            --brand-orange: #FF5E1A;
            --brand-orange-light: #FF7A3F;
            --brand-purple: #6C3CFC;
            --brand-purple-light: #8B64FF;
            --dark-bg: #0B0E14;
            --dark-card: #141822;
            --dark-border: #1C2030;
            --dark-surface: #181C28;
            --text-primary: #FFFFFF;
            --text-secondary: #A5AAB5;
            --text-muted: #6B7280;
            --card-radius: 12px;
            --btn-radius: 8px;
            --transition-fast: 0.2s ease;
            --transition-normal: 0.3s 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: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh;
            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;
            transition: all var(--transition-fast);
        }

        input {
            font-family: inherit;
        }

        /* ============ 容器 ============ */
        .container-main {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        @media (max-width: 768px) {
            .container-main {
                padding: 0 16px;
            }
        }

        /* ============ 导航栏 ============ */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: 64px;
            background: var(--dark-bg);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            transition: all var(--transition-normal);
        }

        .site-header.scrolled {
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
            border-bottom-color: rgba(255, 255, 255, 0.1);
        }

        .header-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 1px;
            white-space: nowrap;
            transition: color var(--transition-fast);
        }

        .logo-brand:hover {
            color: var(--brand-orange);
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background: var(--brand-orange);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #fff;
            font-weight: 900;
            flex-shrink: 0;
            position: relative;
        }

        .logo-icon::after {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 8px;
            border: 1.5px solid rgba(255, 94, 26, 0.35);
            animation: logoPulse 2.5s ease-in-out infinite;
        }

        @keyframes logoPulse {
            0%,
            100% {
                opacity: 0.5;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.08);
            }
        }

        .nav-links {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 6px;
        }

        .nav-links li a {
            display: block;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
        }

        .nav-links li a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.04);
        }

        .nav-links li a.active {
            color: #fff;
            background: rgba(255, 94, 26, 0.12);
            font-weight: 600;
        }

        .nav-links li a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: var(--brand-orange);
            border-radius: 2px;
        }

        /* 汉堡菜单按钮 */
        .hamburger-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            padding: 8px;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: all var(--transition-fast);
            transform-origin: center;
        }

        .hamburger-btn.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .hamburger-btn.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .hamburger-btn.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* 移动端导航 */
        @media (max-width: 1024px) {
            .hamburger-btn {
                display: flex;
            }
            .nav-links {
                position: fixed;
                top: 64px;
                left: 0;
                right: 0;
                background: rgba(11, 14, 20, 0.97);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: stretch;
                padding: 16px 20px;
                gap: 2px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                transform: translateY(-120%);
                transition: transform var(--transition-normal);
                z-index: 999;
                box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
            }
            .nav-links.show {
                transform: translateY(0);
            }
            .nav-links li a {
                padding: 12px 16px;
                font-size: 15px;
                border-radius: 8px;
            }
            .nav-links li a.active::after {
                display: none;
            }
        }

        @media (max-width: 520px) {
            .header-inner {
                padding: 0 12px;
            }
            .logo-brand {
                font-size: 18px;
                gap: 6px;
            }
            .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 13px;
            }
        }

        /* ============ 板块间距 ============ */
        .section {
            padding: 72px 0;
        }
        @media (max-width: 768px) {
            .section {
                padding: 48px 0;
            }
        }

        /* ============ Hero ============ */
        .hero-valorant {
            position: relative;
            padding: 140px 0 80px;
            overflow: hidden;
            min-height: 580px;
            display: flex;
            align-items: center;
        }

        .hero-valorant::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            opacity: 0.35;
            z-index: 0;
        }

        .hero-valorant::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(11, 14, 20, 0.55) 0%, rgba(11, 14, 20, 0.9) 60%, var(--dark-bg) 100%);
            z-index: 1;
        }

        .hero-valorant .container-main {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .hero-text h1 {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: clamp(36px, 5vw, 60px);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: 1px;
            margin-bottom: 16px;
            color: #fff;
        }
        .hero-text h1 .accent {
            color: var(--brand-orange);
            position: relative;
        }
        .hero-text .hero-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 24px;
            line-height: 1.7;
            max-width: 480px;
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
        }
        .hero-tag {
            display: inline-block;
            padding: 6px 14px;
            background: rgba(108, 60, 252, 0.2);
            border: 1px solid rgba(108, 60, 252, 0.35);
            border-radius: 20px;
            font-size: 13px;
            color: var(--brand-purple-light);
            font-weight: 500;
            transition: all var(--transition-fast);
        }
        .hero-tag:hover {
            background: rgba(108, 60, 252, 0.35);
            border-color: var(--brand-purple-light);
            color: #fff;
        }
        .hero-cta-group {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            background: var(--brand-orange);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            border-radius: var(--btn-radius);
            border: none;
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.5px;
        }
        .btn-primary:hover {
            background: var(--brand-orange-light);
            box-shadow: 0 8px 28px rgba(255, 94, 26, 0.35);
            transform: translateY(-2px);
        }
        .btn-primary:active {
            transform: scale(0.97);
        }
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            background: transparent;
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            border-radius: var(--btn-radius);
            border: 1.5px solid var(--brand-purple);
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.5px;
        }
        .btn-ghost:hover {
            background: rgba(108, 60, 252, 0.15);
            border-color: var(--brand-purple-light);
            box-shadow: 0 8px 24px rgba(108, 60, 252, 0.25);
            transform: translateY(-2px);
        }
        .btn-ghost:active {
            transform: scale(0.97);
        }

        /* Hero 数据卡片 */
        .hero-live-card {
            background: rgba(20, 24, 34, 0.85);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--card-radius);
            padding: 24px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 94, 26, 0.08);
            position: relative;
        }
        .hero-live-card::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 20px;
            right: 20px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--brand-orange), transparent);
            border-radius: 2px;
            opacity: 0.7;
        }
        .hero-live-card .live-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            background: #00E676;
            border-radius: 50%;
            animation: liveBlink 1.5s ease-in-out infinite;
            margin-right: 6px;
            vertical-align: middle;
        }
        @keyframes liveBlink {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 8px #00E676;
            }
            50% {
                opacity: 0.35;
                box-shadow: 0 0 2px #00E676;
            }
        }
        .hero-live-card .match-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            gap: 12px;
        }
        .hero-live-card .match-row:last-child {
            border-bottom: none;
        }
        .hero-live-card .team-name {
            font-weight: 600;
            font-size: 15px;
            color: #fff;
            min-width: 70px;
        }
        .hero-live-card .score-display {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: 22px;
            font-weight: 900;
            color: var(--brand-orange);
            letter-spacing: 1px;
            min-width: 50px;
            text-align: center;
        }
        .hero-live-card .match-status {
            font-size: 12px;
            color: #00E676;
            font-weight: 600;
            text-align: right;
            min-width: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .hero-live-card .card-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-muted);
            margin-bottom: 12px;
            font-weight: 500;
        }

        @media (max-width: 1024px) {
            .hero-valorant .container-main {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero-valorant {
                padding: 120px 0 60px;
                min-height: auto;
            }
            .hero-text .hero-subtitle {
                max-width: 100%;
            }
        }
        @media (max-width: 520px) {
            .hero-valorant {
                padding: 100px 0 40px;
            }
            .hero-text h1 {
                font-size: 28px;
            }
            .hero-text .hero-subtitle {
                font-size: 15px;
            }
            .btn-primary,
            .btn-ghost {
                padding: 12px 20px;
                font-size: 14px;
                width: 100%;
                justify-content: center;
            }
            .hero-cta-group {
                flex-direction: column;
            }
            .hero-live-card {
                padding: 16px;
            }
            .hero-live-card .team-name {
                font-size: 13px;
                min-width: 50px;
            }
            .hero-live-card .score-display {
                font-size: 18px;
                min-width: 36px;
            }
        }

        /* ============ 数据指标条 ============ */
        .stats-strip {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: var(--dark-border);
            border-radius: var(--card-radius);
            overflow: hidden;
            border: 1px solid var(--dark-border);
        }
        .stat-item {
            background: var(--dark-card);
            padding: 28px 20px;
            text-align: center;
            transition: all var(--transition-fast);
        }
        .stat-item:hover {
            background: var(--dark-surface);
        }
        .stat-value {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: clamp(28px, 3.5vw, 42px);
            font-weight: 900;
            color: var(--brand-orange);
            letter-spacing: 1px;
            line-height: 1;
            margin-bottom: 6px;
        }
        .stat-label {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        .stat-sub {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        @media (max-width: 768px) {
            .stats-strip {
                grid-template-columns: repeat(2, 1fr);
            }
            .stat-item {
                padding: 20px 14px;
            }
        }
        @media (max-width: 520px) {
            .stats-strip {
                grid-template-columns: 1fr 1fr;
            }
            .stat-value {
                font-size: 24px;
            }
        }

        /* ============ 板块标题 ============ */
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .section-header h2 {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: clamp(26px, 3.5vw, 38px);
            font-weight: 900;
            letter-spacing: 1px;
            color: #fff;
            margin-bottom: 10px;
        }
        .section-header h2 .accent {
            color: var(--brand-orange);
        }
        .section-header p {
            color: var(--text-secondary);
            font-size: 15px;
            max-width: 560px;
            margin: 0 auto;
        }

        /* ============ 卡片组件 ============ */
        .card-glass {
            background: rgba(20, 24, 34, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--card-radius);
            padding: 24px;
            transition: all var(--transition-fast);
        }
        .card-glass:hover {
            border-color: rgba(255, 255, 255, 0.14);
            box-shadow: 0 8px 32px rgba(255, 94, 26, 0.12);
            transform: translateY(-3px);
        }

        /* ============ 赛程表格 ============ */
        .schedule-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--card-radius);
            border: 1px solid var(--dark-border);
        }
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
            font-size: 14px;
        }
        .schedule-table thead th {
            background: var(--dark-surface);
            color: var(--text-muted);
            font-weight: 600;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 14px 16px;
            text-align: left;
            border-bottom: 1px solid var(--dark-border);
            white-space: nowrap;
        }
        .schedule-table tbody td {
            padding: 14px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            color: var(--text-primary);
            white-space: nowrap;
        }
        .schedule-table tbody tr {
            transition: background var(--transition-fast);
        }
        .schedule-table tbody tr:hover {
            background: rgba(255, 94, 26, 0.04);
        }
        .schedule-table tbody tr.current-row {
            background: rgba(255, 94, 26, 0.07);
            border-left: 3px solid var(--brand-orange);
        }
        .schedule-table .status-live {
            display: inline-block;
            padding: 3px 10px;
            background: rgba(0, 230, 118, 0.15);
            color: #00E676;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .schedule-table .status-upcoming {
            display: inline-block;
            padding: 3px 10px;
            background: rgba(108, 60, 252, 0.15);
            color: var(--brand-purple-light);
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .schedule-table .status-completed {
            display: inline-block;
            padding: 3px 10px;
            background: rgba(107, 114, 128, 0.15);
            color: var(--text-muted);
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        .schedule-table .score-bold {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-weight: 900;
            font-size: 16px;
            color: var(--brand-orange);
            letter-spacing: 1px;
        }

        /* ============ 战队排行卡片 ============ */
        .rank-card {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 18px;
            background: var(--dark-card);
            border-radius: 10px;
            border: 1px solid transparent;
            transition: all var(--transition-fast);
            margin-bottom: 8px;
        }
        .rank-card:hover {
            border-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            transform: translateX(4px);
        }
        .rank-number {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: 22px;
            font-weight: 900;
            color: var(--brand-orange);
            min-width: 36px;
            text-align: center;
            letter-spacing: 1px;
        }
        .rank-number.top3 {
            color: #FFD700;
            text-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
        }
        .rank-info {
            flex: 1;
            min-width: 0;
        }
        .rank-team-name {
            font-weight: 700;
            font-size: 15px;
            color: #fff;
            letter-spacing: 0.5px;
        }
        .rank-region {
            font-size: 12px;
            color: var(--text-muted);
        }
        .rank-stats {
            text-align: right;
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }
        .rank-winrate {
            font-size: 18px;
            font-weight: 900;
            color: var(--brand-purple-light);
            letter-spacing: 1px;
        }
        .rank-record {
            font-size: 11px;
            color: var(--text-muted);
        }

        /* ============ 资讯卡片网格 ============ */
        .info-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .info-card {
            background: var(--dark-card);
            border-radius: var(--card-radius);
            border: 1px solid var(--dark-border);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .info-card:hover {
            border-color: rgba(255, 255, 255, 0.14);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
            transform: translateY(-4px);
        }
        .info-card-img {
            height: 180px;
            overflow: hidden;
            position: relative;
        }
        .info-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .info-card:hover .info-card-img img {
            transform: scale(1.05);
        }
        .info-card-body {
            padding: 18px;
        }
        .info-card-tag {
            display: inline-block;
            padding: 4px 10px;
            background: rgba(108, 60, 252, 0.2);
            color: var(--brand-purple-light);
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }
        .info-card-title {
            font-weight: 700;
            font-size: 16px;
            color: #fff;
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .info-card-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
            margin-bottom: 10px;
        }
        .info-card-meta {
            font-size: 11px;
            color: var(--text-muted);
        }
        @media (max-width: 1024px) {
            .info-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 600px) {
            .info-cards-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ============ 场景卡片 ============ */
        .scenario-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .scenario-card {
            background: var(--dark-card);
            border: 1px solid var(--dark-border);
            border-radius: var(--card-radius);
            padding: 24px 18px;
            text-align: center;
            transition: all var(--transition-fast);
        }
        .scenario-card:hover {
            border-color: rgba(255, 255, 255, 0.12);
            box-shadow: 0 6px 24px rgba(255, 94, 26, 0.1);
            transform: translateY(-3px);
        }
        .scenario-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 14px;
            background: rgba(255, 94, 26, 0.12);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }
        .scenario-card h4 {
            font-weight: 700;
            font-size: 15px;
            color: #fff;
            margin-bottom: 6px;
        }
        .scenario-card p {
            font-size: 12px;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        @media (max-width: 1024px) {
            .scenario-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .scenario-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ============ 流程步骤 ============ */
        .steps-list {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            counter-reset: step;
        }
        .step-item {
            background: var(--dark-card);
            border: 1px solid var(--dark-border);
            border-radius: var(--card-radius);
            padding: 28px 20px;
            text-align: center;
            position: relative;
            transition: all var(--transition-fast);
        }
        .step-item:hover {
            border-color: rgba(255, 255, 255, 0.12);
            box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
            transform: translateY(-2px);
        }
        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--brand-orange);
            color: #fff;
            border-radius: 50%;
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: 18px;
            font-weight: 900;
            margin-bottom: 14px;
        }
        .step-item h4 {
            font-weight: 700;
            font-size: 15px;
            color: #fff;
            margin-bottom: 6px;
        }
        .step-item p {
            font-size: 12px;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        @media (max-width: 1024px) {
            .steps-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .steps-list {
                grid-template-columns: 1fr;
            }
        }

        /* ============ FAQ 手风琴 ============ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .faq-item {
            background: var(--dark-card);
            border: 1px solid var(--dark-border);
            border-radius: 10px;
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item.active {
            border-color: rgba(255, 94, 26, 0.3);
            background: var(--dark-surface);
            box-shadow: 0 4px 20px rgba(255, 94, 26, 0.08);
        }
        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 20px;
            background: none;
            border: none;
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            text-align: left;
            letter-spacing: 0.3px;
            transition: color var(--transition-fast);
        }
        .faq-question:hover {
            color: var(--brand-orange);
        }
        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
            transition: all var(--transition-fast);
            margin-left: 12px;
        }
        .faq-item.active .faq-icon {
            background: var(--brand-orange);
            color: #fff;
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 20px;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 20px 18px;
        }
        .faq-answer p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.7;
        }

        /* ============ 用户评论 ============ */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .review-card {
            background: var(--dark-card);
            border: 1px solid var(--dark-border);
            border-radius: var(--card-radius);
            padding: 20px;
            transition: all var(--transition-fast);
        }
        .review-card:hover {
            border-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand-orange), var(--brand-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            color: #fff;
            flex-shrink: 0;
        }
        .review-name {
            font-weight: 600;
            font-size: 14px;
            color: #fff;
        }
        .review-tag {
            font-size: 11px;
            color: var(--text-muted);
        }
        .review-stars {
            color: #FFB800;
            font-size: 13px;
            letter-spacing: 1px;
        }
        .review-text {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        @media (max-width: 1024px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 600px) {
            .reviews-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ============ CTA 横幅 ============ */
        .cta-banner {
            background: linear-gradient(135deg, rgba(20, 24, 34, 0.9) 0%, rgba(24, 28, 40, 0.95) 100%);
            border: 1px solid var(--dark-border);
            border-radius: var(--card-radius);
            padding: 48px 36px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 94, 26, 0.18) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-banner h3 {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: clamp(24px, 3vw, 32px);
            font-weight: 900;
            color: #fff;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        .cta-banner p {
            color: var(--text-secondary);
            font-size: 15px;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }
        .cta-banner .btn-primary {
            position: relative;
            z-index: 1;
            font-size: 16px;
            padding: 16px 36px;
        }

        /* ============ 页脚 ============ */
        .site-footer {
            background: var(--dark-bg);
            border-top: 1px solid var(--dark-border);
            padding: 48px 0 28px;
            color: var(--text-secondary);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 28px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            font-weight: 700;
            font-size: 14px;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 7px;
        }
        .footer-col ul li a {
            font-size: 13px;
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--brand-orange);
        }
        .footer-bottom {
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding-top: 20px;
            line-height: 2;
        }
        .footer-bottom a {
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--brand-orange);
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .site-footer {
                padding: 36px 0 20px;
            }
        }

        /* ============ 分隔线 ============ */
        .divider {
            height: 1px;
            background: var(--dark-border);
            margin: 0;
            border: none;
        }

        /* ============ Tab 切换 ============ */
        .tab-bar {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }
        .tab-btn {
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            background: transparent;
            color: var(--text-secondary);
            border: 1px solid transparent;
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }
        .tab-btn:hover {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.2);
        }
        .tab-btn.active-tab {
            background: rgba(255, 94, 26, 0.15);
            color: var(--brand-orange);
            border-color: rgba(255, 94, 26, 0.3);
        }

        /* ============ 比分中心卡片 ============ */
        .score-center-card {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 20px;
            background: var(--dark-card);
            border: 1px solid var(--dark-border);
            border-radius: var(--card-radius);
            padding: 22px 24px;
            transition: all var(--transition-fast);
            margin-bottom: 10px;
        }
        .score-center-card:hover {
            border-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .score-team {
            font-weight: 700;
            font-size: 16px;
            color: #fff;
            text-align: center;
        }
        .score-mid {
            text-align: center;
        }
        .score-big {
            font-family: 'DIN Alternate', 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: 28px;
            font-weight: 900;
            color: var(--brand-orange);
            letter-spacing: 2px;
        }
        .score-label-sm {
            font-size: 11px;
            color: var(--text-muted);
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .score-event {
            font-size: 12px;
            color: var(--brand-purple-light);
            font-weight: 500;
        }
        @media (max-width: 520px) {
            .score-center-card {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 8px;
                padding: 16px;
            }
            .score-big {
                font-size: 24px;
            }
        }

        /* ============ 渐变文字高亮 ============ */
        .text-glow-orange {
            color: var(--brand-orange);
            text-shadow: 0 0 20px rgba(255, 94, 26, 0.3);
        }
