/* roulang page: index */
:root {
            --primary: #00E676;
            --primary-deep: #00C853;
            --primary-glow: rgba(0, 230, 118, 0.35);
            --primary-border: rgba(0, 230, 118, 0.18);
            --secondary: #FF9100;
            --secondary-glow: rgba(255, 145, 0, 0.3);
            --bg-deep: #0A0D10;
            --bg-base: #0F1419;
            --bg-card: #1B232C;
            --bg-card-hover: #232F3A;
            --bg-table-row: #1B232C;
            --bg-table-alt: #182128;
            --text-primary: #E6ECF0;
            --text-secondary: #8899A6;
            --text-muted: #5C6B76;
            --border-subtle: #2A3642;
            --border-card: rgba(0, 230, 118, 0.12);
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.35);
            --shadow-hover: 0 0 16px rgba(0, 230, 118, 0.25);
            --shadow-glow: 0 0 20px rgba(0, 230, 118, 0.22);
            --font-display: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --font-mono: 'Roboto Mono', 'Courier New', monospace;
            --spacing-xs: 8px;
            --spacing-sm: 16px;
            --spacing-md: 24px;
            --spacing-lg: 40px;
            --spacing-xl: 60px;
            --spacing-2xl: 80px;
            --max-width: 1280px;
            --nav-height: 56px;
            --topbar-height: 32px;
            --transition-fast: 0.18s ease;
            --transition-normal: 0.25s ease;
            --transition-slow: 0.35s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-base);
            color: var(--text-primary);
            line-height: 1.7;
            font-size: 15px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast), border-color var(--transition-fast);
        }

        a:hover {
            color: var(--primary);
        }

        a:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 3px;
            border-radius: var(--radius-sm);
        }

        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(--primary);
            outline-offset: 3px;
            border-radius: var(--radius-sm);
        }

        input {
            font-family: inherit;
        }

        /* Top Bar */
        .top-bar {
            background-color: #000000;
            height: var(--topbar-height);
            display: flex;
            align-items: center;
            font-size: 12px;
            color: var(--text-secondary);
            z-index: 1001;
            position: relative;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }
        .top-bar__left {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .top-bar__left span {
            opacity: 0.75;
            letter-spacing: 0.3px;
        }
        .top-bar__right {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
            white-space: nowrap;
        }
        .top-bar__right a {
            color: var(--text-secondary);
            font-size: 12px;
            transition: color var(--transition-fast);
        }
        .top-bar__right a:hover {
            color: var(--primary);
        }
        .top-bar__dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background-color: var(--text-muted);
            flex-shrink: 0;
        }

        /* Main Nav */
        .main-nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(15, 20, 25, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-subtle);
            height: var(--nav-height);
            display: flex;
            align-items: center;
            transition: background var(--transition-normal);
        }
        .main-nav.scrolled {
            background: rgba(10, 13, 16, 0.94);
            border-bottom-color: rgba(0, 230, 118, 0.2);
        }
        .main-nav .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--spacing-md);
            gap: var(--spacing-md);
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.15rem;
            letter-spacing: -0.3px;
            color: var(--text-primary);
            white-space: nowrap;
        }
        .nav-logo .logo-icon {
            width: 34px;
            height: 34px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, #00C853, #00E676);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #0F1419;
            font-weight: 900;
            flex-shrink: 0;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: nowrap;
        }
        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            white-space: nowrap;
            transition: all var(--transition-fast);
            letter-spacing: 0.2px;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--primary);
            background: rgba(0, 230, 118, 0.06);
        }
        .nav-links a.active {
            color: var(--primary);
            background: rgba(0, 230, 118, 0.1);
            font-weight: 600;
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .nav-search-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid var(--border-subtle);
            background: transparent;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            transition: all var(--transition-fast);
        }
        .nav-search-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            box-shadow: var(--shadow-hover);
        }
        .btn-nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 18px;
            border-radius: var(--radius-sm);
            font-size: 13px;
            font-weight: 600;
            background: var(--primary);
            color: #0F1419;
            white-space: nowrap;
            letter-spacing: 0.3px;
            transition: all var(--transition-fast);
            border: none;
        }
        .btn-nav-cta:hover {
            background: var(--primary-deep);
            box-shadow: 0 0 18px rgba(0, 230, 118, 0.4);
            color: #0F1419;
            transform: translateY(-1px);
        }
        .mobile-menu-toggle {
            display: none;
            width: 38px;
            height: 38px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-subtle);
            background: transparent;
            color: var(--text-primary);
            font-size: 20px;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .mobile-menu {
            display: none;
            position: fixed;
            top: calc(var(--topbar-height) + var(--nav-height));
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 13, 16, 0.97);
            backdrop-filter: blur(20px);
            z-index: 999;
            flex-direction: column;
            padding: var(--spacing-md);
            gap: 4px;
            overflow-y: auto;
        }
        .mobile-menu.open {
            display: flex;
        }
        .mobile-menu a {
            display: block;
            padding: 14px 18px;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-primary);
            border-radius: var(--radius-md);
            border: 1px solid transparent;
            transition: all var(--transition-fast);
        }
        .mobile-menu a:hover,
        .mobile-menu a.active {
            border-color: var(--primary-border);
            background: rgba(0, 230, 118, 0.08);
            color: var(--primary);
        }

        /* Container */
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--spacing-md);
            width: 100%;
        }

        /* Section */
        .section {
            padding: var(--spacing-2xl) 0;
            position: relative;
        }
        .section--alt {
            background: var(--bg-deep);
        }
        .section__header {
            text-align: center;
            margin-bottom: var(--spacing-xl);
        }
        .section__label {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: var(--spacing-xs);
        }
        .section__title {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: var(--text-primary);
            margin-bottom: var(--spacing-xs);
            line-height: 1.3;
        }
        .section__subtitle {
            font-size: 1rem;
            color: var(--text-secondary);
            max-width: 620px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Hero */
        .hero {
            min-height: 580px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: var(--bg-deep);
            padding: var(--spacing-2xl) 0;
        }
        .hero__bg {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.18;
            z-index: 0;
        }
        .hero__grid-overlay {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(0, 230, 118, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 230, 118, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 1;
            pointer-events: none;
        }
        .hero .container {
            display: grid;
            grid-template-columns: 40% 60%;
            gap: var(--spacing-xl);
            align-items: center;
            position: relative;
            z-index: 2;
        }
        .hero__content h1 {
            font-family: var(--font-display);
            font-size: 2.8rem;
            font-weight: 700;
            letter-spacing: -1px;
            color: #FFFFFF;
            line-height: 1.2;
            margin-bottom: var(--spacing-sm);
        }
        .hero__content h1 .highlight {
            color: var(--primary);
            position: relative;
        }
        .hero__content .hero__subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: var(--spacing-md);
            line-height: 1.6;
            max-width: 440px;
        }
        .hero__features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            margin-bottom: var(--spacing-md);
        }
        .hero__feature-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--text-secondary);
        }
        .hero__feature-item i {
            color: var(--primary);
            font-size: 10px;
        }
        .hero__cta {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 600;
            background: var(--primary);
            color: #0F1419;
            letter-spacing: 0.3px;
            border: none;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .btn-primary:hover {
            background: var(--primary-deep);
            box-shadow: 0 0 22px rgba(0, 230, 118, 0.45);
            transform: translateY(-2px);
            color: #0F1419;
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 600;
            background: transparent;
            color: var(--primary);
            border: 1.5px solid var(--primary);
            letter-spacing: 0.3px;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .btn-outline:hover {
            background: rgba(0, 230, 118, 0.1);
            box-shadow: 0 0 16px rgba(0, 230, 118, 0.25);
            color: var(--primary);
            border-color: #00E676;
        }
        .hero__dashboard {
            background: rgba(27, 35, 44, 0.75);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: var(--spacing-md);
            backdrop-filter: blur(8px);
            box-shadow: var(--shadow-card);
        }
        .hero__dashboard .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.8px;
            background: rgba(0, 230, 118, 0.15);
            color: var(--primary);
            margin-bottom: var(--spacing-sm);
            text-transform: uppercase;
        }
        .live-pulse {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--primary);
            animation: livePulse 1.2s ease-in-out infinite;
        }
        @keyframes livePulse {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(0, 230, 118, 0);
            }
        }
        .hero-mini-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
        }
        .hero-mini-table th {
            text-align: left;
            padding: 8px 6px;
            color: var(--text-muted);
            font-weight: 500;
            font-size: 11px;
            letter-spacing: 0.5px;
            border-bottom: 1px solid var(--border-subtle);
            text-transform: uppercase;
            white-space: nowrap;
        }
        .hero-mini-table td {
            padding: 10px 6px;
            border-bottom: 1px solid rgba(42, 54, 66, 0.5);
            white-space: nowrap;
            font-family: var(--font-body);
        }
        .hero-mini-table .score-cell {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 16px;
            color: #FFFFFF;
            letter-spacing: 1px;
        }
        .hero-mini-table .live-dot {
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--primary);
            margin-right: 4px;
            vertical-align: middle;
            animation: livePulse 1.2s ease-in-out infinite;
        }
        .hero-mini-table .status-live {
            color: var(--primary);
            font-weight: 600;
            font-size: 11px;
        }
        .hero-timestamp {
            text-align: right;
            font-family: var(--font-mono);
            font-size: 11px;
            color: var(--text-muted);
            margin-top: var(--spacing-xs);
        }

        /* Stats Cards */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-md);
        }
        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: var(--spacing-md);
            text-align: center;
            transition: all var(--transition-fast);
            position: relative;
            overflow: hidden;
        }
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--primary);
            opacity: 0;
            transition: opacity var(--transition-fast);
        }
        .stat-card:hover {
            border-color: var(--primary-border);
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .stat-card:hover::before {
            opacity: 1;
        }
        .stat-card__value {
            font-family: var(--font-mono);
            font-size: 2.2rem;
            font-weight: 700;
            color: #FFFFFF;
            letter-spacing: 1px;
            line-height: 1;
            margin-bottom: 4px;
        }
        .stat-card__label {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 2px;
        }
        .stat-card__trend {
            font-size: 11px;
            color: var(--primary);
            font-weight: 500;
        }
        .stat-card__trend.up {
            color: var(--primary);
        }
        .stat-card__trend i {
            font-size: 9px;
        }

        /* Live Score Table */
        .score-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-subtle);
            background: var(--bg-card);
        }
        .score-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
            font-size: 14px;
        }
        .score-table thead th {
            padding: 14px 12px;
            text-align: left;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.6px;
            color: var(--text-muted);
            border-bottom: 2px solid var(--primary);
            text-transform: uppercase;
            white-space: nowrap;
            background: var(--bg-deep);
        }
        .score-table tbody td {
            padding: 13px 12px;
            border-bottom: 1px solid var(--border-subtle);
            white-space: nowrap;
        }
        .score-table tbody tr {
            transition: background var(--transition-fast);
        }
        .score-table tbody tr:hover {
            background: var(--bg-card-hover);
        }
        .score-table .score-bold {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 15px;
            color: #FFFFFF;
            letter-spacing: 1px;
        }
        .score-table .status-badge {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.4px;
        }
        .status-badge.live {
            background: rgba(0, 230, 118, 0.18);
            color: var(--primary);
        }
        .status-badge.ft {
            background: rgba(136, 153, 166, 0.18);
            color: var(--text-secondary);
        }
        .score-table .data-link {
            color: var(--primary);
            font-weight: 500;
            font-size: 12px;
            cursor: pointer;
            transition: all var(--transition-fast);
        }
        .score-table .data-link:hover {
            color: #FFFFFF;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .score-table .league-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            color: var(--text-secondary);
        }

        /* League Grid */
        .league-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-md);
        }
        .league-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: var(--spacing-md);
            text-align: center;
            transition: all var(--transition-fast);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .league-card:hover {
            border-color: var(--primary-border);
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .league-card__icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(0, 230, 118, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--primary);
            transition: all var(--transition-fast);
        }
        .league-card:hover .league-card__icon {
            background: rgba(0, 230, 118, 0.2);
            box-shadow: 0 0 14px rgba(0, 230, 118, 0.3);
        }
        .league-card__name {
            font-weight: 600;
            font-size: 15px;
            color: var(--text-primary);
        }
        .league-card__desc {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.4;
        }

        /* News Cards */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--spacing-md);
        }
        .news-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            display: flex;
            gap: var(--spacing-sm);
            padding: var(--spacing-sm);
            transition: all var(--transition-fast);
            overflow: hidden;
            position: relative;
        }
        .news-card:hover {
            border-color: var(--primary-border);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .news-card__img {
            width: 140px;
            height: 100px;
            border-radius: var(--radius-sm);
            object-fit: cover;
            flex-shrink: 0;
            border: 1px solid rgba(0, 230, 118, 0.2);
        }
        .news-card__body {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-width: 0;
        }
        .news-card__tag {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            padding: 2px 8px;
            border-radius: 3px;
            text-transform: uppercase;
            width: fit-content;
        }
        .tag-hot {
            background: rgba(255, 145, 0, 0.2);
            color: var(--secondary);
        }
        .tag-new {
            background: rgba(0, 230, 118, 0.2);
            color: var(--primary);
        }
        .tag-deep {
            background: rgba(136, 153, 166, 0.2);
            color: var(--text-secondary);
        }
        .news-card__title {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-card__excerpt {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Top Scorers */
        .scorer-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
            max-width: 700px;
            margin: 0 auto;
        }
        .scorer-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 12px 16px;
            transition: all var(--transition-fast);
        }
        .scorer-item:hover {
            border-color: var(--primary-border);
            box-shadow: var(--shadow-hover);
        }
        .scorer-rank {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--primary);
            width: 32px;
            text-align: center;
            flex-shrink: 0;
        }
        .scorer-info {
            flex: 1;
            min-width: 0;
        }
        .scorer-name {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
        }
        .scorer-team {
            font-size: 11px;
            color: var(--text-muted);
        }
        .scorer-goals {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 1.3rem;
            color: #FFFFFF;
            text-align: right;
            flex-shrink: 0;
        }

        /* Analysis Cards */
        .analysis-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-md);
        }
        .analysis-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: var(--spacing-md);
            transition: all var(--transition-fast);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .analysis-card:hover {
            border-color: var(--primary-border);
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .analysis-card__matchup {
            font-weight: 600;
            font-size: 15px;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .analysis-card__matchup .vs {
            color: var(--text-muted);
            font-weight: 400;
            font-size: 12px;
        }
        .analysis-card__tip {
            font-size: 12px;
            color: var(--secondary);
            font-weight: 500;
            background: rgba(255, 145, 0, 0.1);
            padding: 4px 10px;
            border-radius: 4px;
            width: fit-content;
        }
        .analysis-card__desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* Reviews */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-md);
        }
        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: var(--spacing-md);
            position: relative;
            transition: all var(--transition-fast);
        }
        .review-card:hover {
            border-color: var(--primary-border);
            box-shadow: var(--shadow-hover);
        }
        .review-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 12px;
            bottom: 12px;
            width: 3px;
            background: var(--primary);
            border-radius: 0 3px 3px 0;
        }
        .review-card__header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }
        .review-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--bg-card-hover);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--text-secondary);
            flex-shrink: 0;
            border: 1px solid var(--border-subtle);
        }
        .review-name {
            font-weight: 600;
            font-size: 13px;
            color: var(--text-primary);
        }
        .review-tag {
            font-size: 10px;
            color: var(--text-muted);
        }
        .review-stars {
            color: var(--secondary);
            font-size: 11px;
            letter-spacing: 1px;
            margin-bottom: 6px;
        }
        .review-text {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* FAQ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: var(--primary-border);
        }
        .faq-question {
            width: 100%;
            text-align: left;
            padding: 16px 20px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: all var(--transition-fast);
            background: transparent;
            border: none;
            font-family: inherit;
        }
        .faq-question .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(0, 230, 118, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--primary);
            flex-shrink: 0;
            transition: all var(--transition-fast);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-slow);
            padding: 0 20px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 20px 16px 20px;
        }
        .faq-item.open .faq-icon {
            background: rgba(0, 230, 118, 0.25);
            transform: rotate(45deg);
        }

        /* Partner Tags */
        .partner-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .partner-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 18px;
            border-radius: 24px;
            border: 1px solid var(--border-subtle);
            font-size: 13px;
            color: var(--text-secondary);
            background: var(--bg-card);
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .partner-tag:hover {
            border-color: var(--primary);
            color: var(--primary);
            box-shadow: var(--shadow-hover);
        }
        .partner-tag i {
            font-size: 12px;
            color: var(--primary);
        }

        /* CTA Section */
        .cta-section {
            background: var(--bg-deep);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
            text-align: center;
            padding: var(--spacing-2xl) 0;
        }
        .cta-section .section__title {
            margin-bottom: var(--spacing-sm);
        }
        .cta-section .btn-primary {
            font-size: 16px;
            padding: 16px 36px;
            margin-top: var(--spacing-sm);
        }

        /* Footer */
        .footer {
            background: #080B0E;
            border-top: 1px solid var(--border-subtle);
            padding: var(--spacing-2xl) 0 var(--spacing-lg);
            font-size: 14px;
            color: var(--text-secondary);
        }
        .footer__grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-xl);
        }
        .footer__col h4 {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }
        .footer__col a {
            display: block;
            padding: 4px 0;
            font-size: 13px;
            color: var(--text-secondary);
            transition: color var(--transition-fast);
        }
        .footer__col a:hover {
            color: var(--primary);
        }
        .footer__bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: var(--spacing-md);
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            flex-direction: column;
            gap: 6px;
            align-items: center;
        }
        .footer__bottom-links {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
        }
        .footer__bottom-links a {
            font-size: 12px;
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer__bottom-links a:hover {
            color: var(--primary);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                gap: var(--spacing-lg);
            }
            .hero__content {
                text-align: center;
            }
            .hero__content .hero__subtitle {
                max-width: 100%;
            }
            .hero__features {
                justify-content: center;
            }
            .hero__cta {
                justify-content: center;
            }
            .hero__dashboard {
                max-width: 600px;
                margin: 0 auto;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .league-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .news-grid {
                grid-template-columns: 1fr;
            }
            .analysis-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer__grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .section__title {
                font-size: 1.6rem;
            }
            .hero__content h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .nav-actions .btn-nav-cta {
                display: none;
            }
            .mobile-menu-toggle {
                display: flex;
            }
            .top-bar__right {
                display: none;
            }
            .top-bar__left span {
                font-size: 11px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .league-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .analysis-grid {
                grid-template-columns: 1fr;
            }
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            .footer__grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .section {
                padding: var(--spacing-xl) 0;
            }
            .hero {
                padding: var(--spacing-xl) 0;
                min-height: auto;
            }
            .hero__content h1 {
                font-size: 1.8rem;
            }
            .section__title {
                font-size: 1.4rem;
            }
            .news-card {
                flex-direction: column;
            }
            .news-card__img {
                width: 100%;
                height: 160px;
            }
            .hero-mini-table {
                font-size: 11px;
            }
            .hero-mini-table .score-cell {
                font-size: 13px;
            }
            .score-table-wrap {
                border-radius: var(--radius-md);
            }
        }
        @media (max-width: 520px) {
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-card__value {
                font-size: 1.6rem;
            }
            .stat-card {
                padding: 12px 8px;
            }
            .hero__cta {
                flex-direction: column;
                align-items: center;
            }
            .btn-primary,
            .btn-outline {
                width: 100%;
                justify-content: center;
            }
            .league-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .footer__grid {
                grid-template-columns: 1fr 1fr;
                gap: var(--spacing-md);
            }
            .section__title {
                font-size: 1.25rem;
            }
            .hero__content h1 {
                font-size: 1.5rem;
            }
            .hero__subtitle {
                font-size: 0.95rem;
            }
            .section__subtitle {
                font-size: 0.9rem;
            }
            .partner-tags {
                gap: 6px;
            }
            .partner-tag {
                padding: 8px 12px;
                font-size: 11px;
            }
            .review-card {
                padding: 12px;
            }
        }

/* roulang page: category1 */
:root {
            --primary: #00E676;
            --primary-dark: #00C853;
            --primary-glow: rgba(0, 230, 118, 0.35);
            --primary-border: rgba(0, 230, 118, 0.2);
            --primary-subtle: rgba(0, 230, 118, 0.08);
            --accent: #FF9100;
            --accent-glow: rgba(255, 145, 0, 0.3);
            --bg-deep: #0A0D10;
            --bg-base: #0F1419;
            --bg-card: #1B232C;
            --bg-card-hover: #212B36;
            --bg-table-row: #182029;
            --bg-table-row-hover: #1E2A34;
            --text-primary: #E6ECF0;
            --text-secondary: #B0BEC5;
            --text-muted: #8899A6;
            --text-dim: #5C6B7A;
            --border-subtle: #2A3642;
            --border-card: rgba(255, 255, 255, 0.06);
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.35);
            --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--primary-border), 0 0 16px var(--primary-glow);
            --shadow-glow-sm: 0 0 8px rgba(0, 230, 118, 0.2);
            --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --font-mono: "Roboto Mono", "SF Mono", "Courier New", "Consolas", monospace;
            --transition-fast: 0.15s ease;
            --transition-normal: 0.25s ease;
            --transition-slow: 0.35s ease;
            --container-max: 1280px;
            --gap-section: 80px;
            --gap-card: 24px;
            --header-height: 56px;
            --topbar-height: 32px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            font-weight: 400;
            font-size: 15px;
            line-height: 1.65;
            color: var(--text-primary);
            background-color: var(--bg-base);
            min-height: 100vh;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
            color: inherit;
            font-size: inherit;
        }
        input {
            font-family: inherit;
            font-size: inherit;
        }
        ul,
        ol {
            list-style: none;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Top Bar */
        .top-bar {
            height: var(--topbar-height);
            background: #000000;
            font-size: 11px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            z-index: 1001;
            position: relative;
        }
        .top-bar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }
        .top-bar__left {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .top-bar__domain {
            color: var(--text-dim);
            font-family: var(--font-mono);
            font-size: 10px;
            letter-spacing: 0.3px;
        }
        .top-bar__slogan {
            color: var(--text-muted);
            font-size: 11px;
        }
        .top-bar__right {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .top-bar__right a {
            color: var(--text-muted);
            font-size: 11px;
            transition: color var(--transition-fast);
        }
        .top-bar__right a:hover {
            color: var(--primary);
        }

        /* Main Navigation */
        .main-nav-wrap {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(15, 20, 25, 0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-subtle);
            height: var(--header-height);
        }
        .main-nav {
            height: 100%;
        }
        .main-nav .container {
            display: flex;
            align-items: center;
            height: 100%;
            gap: 28px;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 9px;
            font-weight: 700;
            font-size: 17px;
            color: var(--text-primary);
            white-space: nowrap;
            flex-shrink: 0;
            transition: color var(--transition-fast);
        }
        .nav-logo:hover {
            color: var(--primary);
        }
        .logo-icon {
            font-size: 20px;
            color: var(--primary);
            transition: text-shadow var(--transition-fast);
        }
        .nav-logo:hover .logo-icon {
            text-shadow: 0 0 14px var(--primary-glow);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex: 1;
            justify-content: center;
        }
        .nav-links a {
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--primary);
            background: var(--primary-subtle);
        }
        .nav-links a.active {
            color: var(--primary);
            background: var(--primary-subtle);
            font-weight: 600;
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: var(--primary);
            border-radius: 1px;
            box-shadow: 0 0 8px var(--primary-glow);
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .nav-search-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all var(--transition-fast);
            font-size: 15px;
            border: 1px solid transparent;
        }
        .nav-search-btn:hover {
            color: var(--primary);
            background: var(--primary-subtle);
            border-color: var(--primary-border);
        }
        .btn-nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: var(--primary);
            color: #0F1419;
            font-weight: 600;
            font-size: 13px;
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.2px;
        }
        .btn-nav-cta:hover {
            background: var(--primary-dark);
            box-shadow: 0 0 18px var(--primary-glow);
            color: #0F1419;
            transform: translateY(-1px);
        }
        .mobile-menu-toggle {
            display: none;
            width: 38px;
            height: 38px;
            border-radius: var(--radius-sm);
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--text-secondary);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-fast);
        }
        .mobile-menu-toggle:hover {
            color: var(--primary);
            border-color: var(--primary-border);
            background: var(--primary-subtle);
        }

        /* Hero */
        .hero-section {
            position: relative;
            padding: 64px 0 60px;
            background-color: var(--bg-deep);
            overflow: hidden;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 13, 16, 0.82) 0%, rgba(15, 20, 25, 0.9) 60%, rgba(15, 20, 25, 0.98) 100%);
            z-index: 0;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 70% 40%, rgba(0, 230, 118, 0.06) 0%, transparent 55%),
                radial-gradient(ellipse at 30% 60%, rgba(255, 145, 0, 0.04) 0%, transparent 50%);
            z-index: 1;
            pointer-events: none;
        }
        .hero-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .hero__text h1 {
            font-size: 2.6rem;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.6px;
            color: #fff;
            margin-bottom: 12px;
        }
        .hero__text h1 .highlight {
            color: var(--primary);
            position: relative;
        }
        .hero__subtitle {
            font-size: 1.05rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
            max-width: 460px;
        }
        .hero__feature-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            margin-bottom: 28px;
        }
        .hero__feature-list li {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .hero__feature-list li i {
            color: var(--primary);
            font-size: 11px;
            flex-shrink: 0;
        }
        .hero__btns {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 13px 24px;
            background: var(--primary);
            color: #0F1419;
            font-weight: 600;
            font-size: 14px;
            border-radius: var(--radius-sm);
            transition: all var(--transition-normal);
            letter-spacing: 0.2px;
            border: 2px solid transparent;
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            box-shadow: 0 0 22px var(--primary-glow);
            transform: translateY(-2px);
            color: #0F1419;
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 13px 24px;
            background: transparent;
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            border-radius: var(--radius-sm);
            border: 2px solid var(--primary-border);
            transition: all var(--transition-normal);
            letter-spacing: 0.2px;
        }
        .btn-secondary:hover {
            background: var(--primary-subtle);
            border-color: var(--primary);
            box-shadow: 0 0 14px rgba(0, 230, 118, 0.2);
        }
        .hero__dashboard {
            background: rgba(27, 35, 44, 0.7);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: 20px 18px;
            backdrop-filter: blur(8px);
        }
        .hero-dash__title {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-muted);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .live-dot {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            display: inline-block;
            animation: livePulse 1.4s ease-in-out infinite;
        }
        @keyframes livePulse {
            0%,
            70%,
            100% {
                box-shadow: 0 0 0 0 var(--primary-glow);
                opacity: 1;
            }
            35% {
                box-shadow: 0 0 0 8px transparent;
                opacity: 0.5;
            }
        }
        .hero-mini-table {
            width: 100%;
            border-collapse: collapse;
        }
        .hero-mini-table th {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: var(--text-dim);
            font-weight: 500;
            padding: 6px 8px;
            text-align: left;
            border-bottom: 1px solid rgba(0, 230, 118, 0.25);
        }
        .hero-mini-table td {
            padding: 9px 8px;
            font-size: 13px;
            border-bottom: 1px solid rgba(42, 54, 66, 0.5);
            color: var(--text-primary);
            vertical-align: middle;
        }
        .hero-mini-table .score-cell {
            font-family: var(--font-mono);
            font-weight: 600;
            font-size: 15px;
            color: #fff;
            letter-spacing: 1px;
            text-align: center;
        }
        .hero-mini-table .live-badge {
            display: inline-block;
            padding: 2px 7px;
            background: var(--primary);
            color: #0F1419;
            font-size: 9px;
            font-weight: 700;
            border-radius: 3px;
            letter-spacing: 0.5px;
            animation: livePulse 1.4s ease-in-out infinite;
        }
        .hero-dash__timestamp {
            margin-top: 12px;
            font-family: var(--font-mono);
            font-size: 10px;
            color: var(--text-dim);
            text-align: right;
        }
        .hero-dash__timestamp span {
            color: var(--primary);
            font-weight: 500;
        }

        /* Section shared */
        .section {
            padding: var(--gap-section) 0;
        }
        .section--alt {
            background: var(--bg-deep);
        }
        .section__header {
            text-align: center;
            margin-bottom: 44px;
        }
        .section__header h2 {
            font-size: 1.75rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.3px;
            margin-bottom: 8px;
        }
        .section__header .section__subtitle {
            color: var(--text-muted);
            font-size: 14px;
        }
        .section__header .section__accent-line {
            display: block;
            width: 50px;
            height: 3px;
            background: var(--primary);
            margin: 12px auto 0;
            border-radius: 2px;
            box-shadow: 0 0 10px var(--primary-glow);
        }

        /* Stats cards */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: var(--gap-card);
        }
        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            padding: 20px 16px;
            text-align: center;
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
        }
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: var(--primary);
            border-radius: 1px;
            opacity: 0.5;
            transition: all var(--transition-normal);
        }
        .stat-card:hover {
            background: var(--bg-card-hover);
            border-color: var(--primary-border);
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .stat-card:hover::before {
            width: 60px;
            opacity: 0.9;
            box-shadow: 0 0 10px var(--primary-glow);
        }
        .stat-card__icon {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 8px;
        }
        .stat-card__value {
            font-family: var(--font-mono);
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.5px;
            line-height: 1;
            margin-bottom: 4px;
        }
        .stat-card__label {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 6px;
        }
        .stat-card__trend {
            font-size: 11px;
            color: var(--primary);
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3px;
        }
        .stat-card__trend.up {
            color: var(--primary);
        }
        .stat-card__trend.down {
            color: #EF5350;
        }
        .stat-card__unit {
            font-size: 12px;
            color: var(--text-dim);
            font-weight: 400;
            margin-left: 2px;
        }

        /* Live Score Table */
        .score-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-card);
            background: var(--bg-card);
        }
        .score-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
        }
        .score-table thead th {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-dim);
            font-weight: 600;
            padding: 13px 12px;
            text-align: left;
            border-bottom: 2px solid rgba(0, 230, 118, 0.3);
            background: var(--bg-deep);
            white-space: nowrap;
        }
        .score-table tbody td {
            padding: 12px 12px;
            font-size: 13px;
            border-bottom: 1px solid var(--border-subtle);
            color: var(--text-primary);
            vertical-align: middle;
            white-space: nowrap;
        }
        .score-table tbody tr {
            transition: background var(--transition-fast);
        }
        .score-table tbody tr:hover {
            background: var(--bg-table-row-hover);
        }
        .score-table .score-live {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 15px;
            color: #fff;
            letter-spacing: 1px;
            text-align: center;
        }
        .score-table .badge-live {
            display: inline-block;
            padding: 3px 8px;
            background: var(--primary);
            color: #0F1419;
            font-size: 9px;
            font-weight: 700;
            border-radius: 3px;
            letter-spacing: 0.5px;
            animation: livePulse 1.4s ease-in-out infinite;
        }
        .score-table .badge-finished {
            display: inline-block;
            padding: 3px 8px;
            background: rgba(136, 153, 166, 0.2);
            color: var(--text-muted);
            font-size: 9px;
            font-weight: 600;
            border-radius: 3px;
            letter-spacing: 0.5px;
        }
        .score-table .badge-upcoming {
            display: inline-block;
            padding: 3px 8px;
            background: rgba(255, 145, 0, 0.18);
            color: var(--accent);
            font-size: 9px;
            font-weight: 600;
            border-radius: 3px;
            letter-spacing: 0.5px;
        }
        .score-table .data-link {
            color: var(--primary);
            font-weight: 500;
            font-size: 12px;
            transition: all var(--transition-fast);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .score-table .data-link:hover {
            color: #fff;
            text-shadow: 0 0 8px var(--primary-glow);
        }
        .score-table .team-cell {
            font-weight: 500;
            font-size: 13px;
        }
        .score-table .ht-score {
            font-family: var(--font-mono);
            font-size: 11px;
            color: var(--text-dim);
        }

        /* League entry cards */
        .league-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }
        .league-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            padding: 22px 14px;
            text-align: center;
            transition: all var(--transition-normal);
            cursor: pointer;
            position: relative;
        }
        .league-card:hover {
            background: var(--bg-card-hover);
            border-color: var(--primary-border);
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .league-card__img {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            margin: 0 auto 10px;
            object-fit: cover;
            border: 2px solid var(--border-subtle);
            transition: border-color var(--transition-fast);
        }
        .league-card:hover .league-card__img {
            border-color: var(--primary-border);
            box-shadow: 0 0 12px rgba(0, 230, 118, 0.2);
        }
        .league-card__name {
            font-weight: 600;
            font-size: 14px;
            color: #fff;
            margin-bottom: 4px;
        }
        .league-card__desc {
            font-size: 11px;
            color: var(--text-dim);
            line-height: 1.4;
        }
        .league-card .corner-badge {
            position: absolute;
            top: 8px;
            right: 8px;
            padding: 2px 7px;
            background: var(--accent);
            color: #0F1419;
            font-size: 9px;
            font-weight: 700;
            border-radius: 3px;
            letter-spacing: 0.3px;
        }

        /* Features */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--gap-card);
        }
        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: 28px 22px;
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
        }
        .feature-card:hover {
            background: var(--bg-card-hover);
            border-color: var(--primary-border);
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .feature-card__icon {
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 14px;
            display: block;
        }
        .feature-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }
        .feature-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .feature-card .feature-card__tag {
            display: inline-block;
            margin-top: 10px;
            padding: 5px 10px;
            font-size: 10px;
            font-weight: 600;
            border-radius: var(--radius-sm);
            background: var(--primary-subtle);
            color: var(--primary);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        /* Reviews */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--gap-card);
        }
        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: 22px 20px;
            border-left: 3px solid transparent;
            transition: all var(--transition-normal);
        }
        .review-card:hover {
            border-left-color: var(--primary);
            background: var(--bg-card-hover);
            box-shadow: var(--shadow-hover);
        }
        .review-card__header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--border-subtle);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 15px;
            color: var(--text-muted);
        }
        .review-card__name {
            font-weight: 600;
            font-size: 14px;
            color: #fff;
        }
        .review-card__tag {
            font-size: 10px;
            color: var(--text-dim);
            display: block;
        }
        .review-stars {
            color: var(--accent);
            font-size: 11px;
            letter-spacing: 1px;
        }
        .review-card__body {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* FAQ */
        .faq-list {
            max-width: 760px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-normal);
        }
        .faq-item.active {
            border-color: var(--primary-border);
            box-shadow: 0 0 14px rgba(0, 230, 118, 0.08);
        }
        .faq-question {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 18px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            color: #fff;
            transition: color var(--transition-fast);
            user-select: none;
            width: 100%;
            text-align: left;
        }
        .faq-question:hover {
            color: var(--primary);
        }
        .faq-icon {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            color: var(--primary);
            transition: transform var(--transition-normal);
            border: 1px solid var(--primary-border);
            border-radius: 50%;
        }
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            background: var(--primary-subtle);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-slow);
            padding: 0 18px;
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 18px 16px;
        }

        /* CTA */
        .cta-section {
            padding: 56px 0;
            text-align: center;
            background: linear-gradient(180deg, rgba(0, 230, 118, 0.04) 0%, transparent 70%);
        }
        .cta-section h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }
        .cta-section p {
            color: var(--text-muted);
            margin-bottom: 20px;
            font-size: 14px;
        }
        .cta-section .btn-primary {
            font-size: 15px;
            padding: 14px 28px;
        }

        /* Footer */
        .footer {
            background: #0A0D10;
            padding: 48px 0 24px;
            border-top: 1px solid var(--border-subtle);
        }
        .footer__grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 28px;
            margin-bottom: 32px;
        }
        .footer__col h4 {
            font-size: 13px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }
        .footer__col a {
            display: block;
            font-size: 12px;
            color: var(--text-muted);
            padding: 4px 0;
            transition: color var(--transition-fast);
        }
        .footer__col a:hover {
            color: var(--primary);
        }
        .footer__bottom {
            text-align: center;
            font-size: 11px;
            color: var(--text-dim);
            line-height: 1.8;
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
        }
        .footer__bottom-links {
            display: flex;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 4px;
        }
        .footer__bottom-links a {
            color: var(--text-dim);
            font-size: 11px;
            transition: color var(--transition-fast);
        }
        .footer__bottom-links a:hover {
            color: var(--primary);
        }
        .footer__bottom-links span {
            color: var(--text-dim);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .league-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero__dashboard {
                max-width: 600px;
                margin: 0 auto;
            }
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer__grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: var(--header-height);
                left: 0;
                right: 0;
                background: rgba(15, 20, 25, 0.96);
                flex-direction: column;
                padding: 16px;
                gap: 2px;
                border-bottom: 1px solid var(--border-subtle);
                backdrop-filter: blur(20px);
                z-index: 999;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                padding: 12px 14px;
                border-radius: var(--radius-sm);
                width: 100%;
            }
            .mobile-menu-toggle {
                display: flex;
            }
            .top-bar__right {
                display: none;
            }
            .top-bar__slogan {
                display: none;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
            .league-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            .footer__grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .hero__text h1 {
                font-size: 1.8rem;
            }
            .section {
                padding: 50px 0;
            }
            .cta-section h2 {
                font-size: 1.3rem;
            }
            .btn-nav-cta {
                padding: 6px 10px;
                font-size: 11px;
                gap: 3px;
            }
            .btn-nav-cta i {
                display: none;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding: 0 14px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-card__value {
                font-size: 1.5rem;
            }
            .league-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .hero__text h1 {
                font-size: 1.45rem;
            }
            .hero__btns {
                flex-direction: column;
                gap: 8px;
            }
            .hero__btns .btn-primary,
            .hero__btns .btn-secondary {
                width: 100%;
                justify-content: center;
            }
            .hero-dash__title {
                font-size: 10px;
            }
            .hero-mini-table td,
            .hero-mini-table th {
                padding: 5px 4px;
                font-size: 10px;
            }
            .hero-mini-table .score-cell {
                font-size: 12px;
            }
            .section__header h2 {
                font-size: 1.3rem;
            }
            .footer__grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .footer__col h4 {
                font-size: 12px;
            }
            .footer__col a {
                font-size: 11px;
            }
            .nav-logo span {
                font-size: 14px;
            }
        }

/* roulang page: category2 */
:root {
            --primary: #00E676;
            --primary-dark: #00C853;
            --primary-glow: rgba(0, 230, 118, 0.35);
            --primary-subtle: rgba(0, 230, 118, 0.08);
            --secondary: #FF9100;
            --secondary-glow: rgba(255, 145, 0, 0.3);
            --bg-primary: #0F1419;
            --bg-card: #1B232C;
            --bg-card-hover: #212C36;
            --bg-dark: #0A0D10;
            --bg-darker: #070A0D;
            --bg-overlay: rgba(15, 20, 25, 0.85);
            --text-primary: #E6ECF0;
            --text-secondary: #8899A6;
            --text-muted: #5C6B78;
            --border: rgba(0, 230, 118, 0.15);
            --border-light: #2A3642;
            --border-card: rgba(255, 255, 255, 0.04);
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
            --shadow-glow: 0 0 12px rgba(0, 230, 118, 0.25);
            --shadow-glow-hover: 0 0 20px rgba(0, 230, 118, 0.4);
            --font-sans: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
            --font-mono: "Roboto Mono", "Courier New", monospace;
            --transition-fast: 0.15s ease;
            --transition-normal: 0.25s ease;
            --transition-slow: 0.35s ease;
            --container-width: 1280px;
            --header-height: 56px;
            --topbar-height: 32px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh;
            font-size: 16px;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast), border-color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
            font-family: inherit;
            color: inherit;
        }

        input {
            font-family: inherit;
            color: inherit;
        }

        ul,
        ol {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
        }

        /* ===== TOP BAR ===== */
        .top-bar {
            background: #000000;
            height: var(--topbar-height);
            display: flex;
            align-items: center;
            font-size: 12px;
            color: var(--text-secondary);
            position: relative;
            z-index: 1001;
        }
        .top-bar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        .top-bar__left {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .top-bar__domain {
            color: var(--text-muted);
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 0.3px;
        }
        .top-bar__slogan {
            color: var(--text-secondary);
            font-size: 11px;
            letter-spacing: 0.5px;
        }
        .top-bar__right {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .top-bar__right a {
            color: var(--text-secondary);
            font-size: 11px;
            transition: color var(--transition-fast);
        }
        .top-bar__right a:hover {
            color: var(--primary);
        }
        @media (max-width: 640px) {
            .top-bar__slogan {
                display: none;
            }
            .top-bar__right {
                gap: 10px;
            }
            .top-bar__right a {
                font-size: 10px;
            }
        }

        /* ===== MAIN HEADER & NAV ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-overlay);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }
        .main-nav {
            height: var(--header-height);
            display: flex;
            align-items: center;
        }
        .main-nav .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            gap: 20px;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 18px;
            color: var(--text-primary);
            flex-shrink: 0;
            letter-spacing: -0.3px;
            transition: color var(--transition-fast);
        }
        .nav-logo:hover {
            color: var(--primary);
        }
        .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--primary-dark);
            border-radius: var(--radius-sm);
            color: #000;
            font-size: 18px;
            flex-shrink: 0;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: nowrap;
        }
        .nav-links a {
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
        }
        .nav-links a:hover {
            color: var(--text-primary);
            background: var(--primary-subtle);
        }
        .nav-links a.active {
            color: var(--primary);
            background: var(--primary-subtle);
            font-weight: 600;
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--primary);
            border-radius: 1px;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .nav-search-btn {
            width: 36px;
            height: 36px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            transition: all var(--transition-fast);
            font-size: 14px;
        }
        .nav-search-btn:hover {
            color: var(--primary);
            border-color: var(--primary);
            box-shadow: var(--shadow-glow);
        }
        .btn-nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: var(--primary);
            color: #000;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 13px;
            white-space: nowrap;
            transition: all var(--transition-fast);
            letter-spacing: 0.2px;
        }
        .btn-nav-cta:hover {
            background: var(--primary-dark);
            box-shadow: var(--shadow-glow-hover);
            color: #000;
            transform: translateY(-1px);
        }
        .mobile-menu-toggle {
            display: none;
            width: 36px;
            height: 36px;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-sm);
            color: var(--text-secondary);
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            font-size: 16px;
            transition: all var(--transition-fast);
        }
        .mobile-menu-toggle:hover {
            color: var(--primary);
            border-color: var(--primary);
        }

        @media (max-width: 1024px) {
            .nav-links a {
                padding: 6px 10px;
                font-size: 13px;
            }
            .btn-nav-cta span {
                display: none;
            }
            .btn-nav-cta {
                padding: 8px 10px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: var(--header-height);
                left: 0;
                right: 0;
                background: var(--bg-overlay);
                backdrop-filter: blur(16px);
                -webkit-backdrop-filter: blur(16px);
                flex-direction: column;
                padding: 12px 16px;
                gap: 2px;
                border-bottom: 1px solid var(--border);
                z-index: 999;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                width: 100%;
                padding: 12px 16px;
                border-radius: var(--radius-sm);
                font-size: 15px;
            }
            .nav-links a.active::after {
                display: none;
            }
            .nav-links a.active {
                border-left: 3px solid var(--primary);
            }
            .mobile-menu-toggle {
                display: flex;
            }
            .btn-nav-cta {
                font-size: 12px;
                padding: 7px 10px;
            }
        }
        @media (max-width: 520px) {
            .btn-nav-cta {
                display: none;
            }
            .nav-logo span {
                font-size: 15px;
            }
            .logo-icon {
                width: 30px;
                height: 30px;
                font-size: 15px;
            }
        }

        /* ===== PAGE HERO ===== */
        .page-hero {
            position: relative;
            padding: 56px 0 48px;
            background: var(--bg-primary);
            background-image:
                radial-gradient(ellipse at 70% 30%, rgba(0, 230, 118, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 30% 70%, rgba(255, 145, 0, 0.04) 0%, transparent 55%),
                url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            overflow: hidden;
            border-bottom: 1px solid var(--border);
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(15, 20, 25, 0.92) 0%, rgba(15, 20, 25, 0.85) 100%);
            z-index: 0;
        }
        .page-hero .container {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 48px;
            align-items: center;
        }
        .hero__content {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .hero__badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            background: var(--primary-subtle);
            border: 1px solid var(--border);
            border-radius: 20px;
            font-size: 13px;
            color: var(--primary);
            font-weight: 500;
            width: fit-content;
            animation: pulse-badge 2.5s ease-in-out infinite;
        }
        @keyframes pulse-badge {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.3);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(0, 230, 118, 0);
            }
        }
        .hero__badge .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
            animation: live-pulse 1.2s ease-in-out infinite;
        }
        @keyframes live-pulse {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.4;
                transform: scale(1.6);
            }
        }
        .hero__content h1 {
            font-size: 40px;
            font-weight: 700;
            letter-spacing: -0.5px;
            line-height: 1.2;
            color: var(--text-primary);
        }
        .hero__content h1 .highlight {
            color: var(--primary);
        }
        .hero__subtitle {
            font-size: 17px;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 480px;
        }
        .hero__features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .hero__feature-tag {
            padding: 6px 14px;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            font-size: 13px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .hero__feature-tag i {
            color: var(--primary);
            font-size: 11px;
        }
        .hero__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 4px;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 26px;
            background: var(--primary);
            color: #000;
            font-weight: 600;
            border-radius: var(--radius-sm);
            font-size: 15px;
            transition: all var(--transition-normal);
            letter-spacing: 0.2px;
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            box-shadow: var(--shadow-glow-hover);
            transform: translateY(-2px);
            color: #000;
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 26px;
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
            font-weight: 600;
            border-radius: var(--radius-sm);
            font-size: 15px;
            transition: all var(--transition-normal);
            letter-spacing: 0.2px;
        }
        .btn-outline:hover {
            background: rgba(0, 230, 118, 0.1);
            border-color: var(--primary-dark);
            box-shadow: var(--shadow-glow);
            color: var(--primary);
        }
        .hero__dashboard {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 20px;
            box-shadow: var(--shadow-md);
        }
        .dashboard__header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
            flex-wrap: wrap;
            gap: 8px;
        }
        .dashboard__title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .dashboard__live-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 3px 10px;
            background: var(--primary);
            color: #000;
            border-radius: 3px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
            animation: live-pulse-bg 1.5s ease-in-out infinite;
        }
        @keyframes live-pulse-bg {
            0%,
            100% {
                background: var(--primary);
            }
            50% {
                background: var(--primary-dark);
            }
        }
        .dashboard__time {
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--text-muted);
        }
        .mini-score-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 10px;
            border-bottom: 1px solid var(--border-light);
            transition: background var(--transition-fast);
            border-radius: var(--radius-sm);
            gap: 8px;
            flex-wrap: wrap;
        }
        .mini-score-row:last-child {
            border-bottom: none;
        }
        .mini-score-row:hover {
            background: var(--bg-card-hover);
        }
        .mini-score__league {
            font-size: 11px;
            color: var(--text-muted);
            min-width: 40px;
            text-align: center;
            font-weight: 500;
        }
        .mini-score__teams {
            flex: 1;
            min-width: 100px;
            text-align: center;
        }
        .mini-score__team {
            font-weight: 500;
            font-size: 13px;
            color: var(--text-primary);
            display: block;
            line-height: 1.4;
        }
        .mini-score__score {
            font-family: var(--font-mono);
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 1px;
            min-width: 50px;
            text-align: center;
            transition: color var(--transition-fast);
        }
        .mini-score__status {
            font-size: 10px;
            color: var(--text-muted);
            min-width: 36px;
            text-align: center;
            font-family: var(--font-mono);
        }
        .mini-score__live-indicator {
            color: var(--primary);
            font-weight: 700;
            font-size: 10px;
            letter-spacing: 1px;
        }

        @media (max-width: 1024px) {
            .page-hero .container {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
            .hero__content h1 {
                font-size: 32px;
            }
        }
        @media (max-width: 768px) {
            .page-hero {
                padding: 36px 0 32px;
            }
            .page-hero .container {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .hero__content h1 {
                font-size: 28px;
            }
            .hero__subtitle {
                font-size: 15px;
            }
            .hero__dashboard {
                padding: 14px;
            }
            .mini-score__score {
                font-size: 18px;
            }
        }
        @media (max-width: 520px) {
            .hero__content h1 {
                font-size: 24px;
            }
            .btn-primary,
            .btn-outline {
                padding: 10px 18px;
                font-size: 13px;
            }
            .mini-score-row {
                padding: 8px 6px;
                gap: 4px;
            }
            .mini-score__team {
                font-size: 11px;
            }
            .mini-score__score {
                font-size: 16px;
                min-width: 36px;
            }
        }

        /* ===== SECTION COMMON ===== */
        .section {
            padding: 56px 0;
        }
        .section--dark {
            background: var(--bg-dark);
        }
        .section--card-bg {
            background: var(--bg-primary);
        }
        .section__header {
            text-align: center;
            margin-bottom: 40px;
        }
        .section__header h2 {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: -0.3px;
            margin-bottom: 10px;
            color: var(--text-primary);
        }
        .section__header p {
            color: var(--text-secondary);
            font-size: 15px;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }
        @media (max-width: 768px) {
            .section {
                padding: 40px 0;
            }
            .section__header h2 {
                font-size: 24px;
            }
            .section__header p {
                font-size: 14px;
            }
        }

        /* ===== STATS CARDS ===== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }
        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            padding: 20px 16px;
            text-align: center;
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
        }
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background: var(--primary);
            border-radius: 0 0 3px 3px;
            opacity: 0.7;
        }
        .stat-card:hover {
            background: var(--bg-card-hover);
            border-color: var(--border);
            box-shadow: var(--shadow-glow);
            transform: translateY(-3px);
        }
        .stat-card__icon {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 8px;
        }
        .stat-card__value {
            font-family: var(--font-mono);
            font-size: 30px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.5px;
            margin-bottom: 4px;
        }
        .stat-card__label {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 6px;
        }
        .stat-card__trend {
            font-size: 11px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 3px;
        }
        .stat-card__trend.up {
            color: var(--primary);
        }
        .stat-card__trend.down {
            color: #FF5252;
        }

        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 640px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .stat-card {
                padding: 16px 10px;
            }
            .stat-card__value {
                font-size: 24px;
            }
        }

        /* ===== LIVE SCORE TABLE ===== */
        .score-table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            background: var(--bg-card);
            box-shadow: var(--shadow-sm);
        }
        .score-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
            font-size: 14px;
        }
        .score-table thead th {
            padding: 14px 12px;
            text-align: left;
            font-weight: 600;
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            border-bottom: 2px solid var(--primary);
            background: var(--bg-dark);
            white-space: nowrap;
        }
        .score-table tbody td {
            padding: 13px 12px;
            border-bottom: 1px solid var(--border-light);
            vertical-align: middle;
            white-space: nowrap;
        }
        .score-table tbody tr {
            transition: background var(--transition-fast);
        }
        .score-table tbody tr:hover {
            background: var(--bg-card-hover);
        }
        .score-table tbody tr:hover .score-table__data-link {
            opacity: 1;
            transform: translateX(0);
        }
        .score-table__time {
            font-family: var(--font-mono);
            color: var(--text-secondary);
            font-size: 13px;
        }
        .score-table__league {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 500;
            color: var(--text-primary);
            font-size: 13px;
        }
        .score-table__league-flag {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--border-light);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
        }
        .score-table__teams {
            font-weight: 500;
            color: var(--text-primary);
        }
        .score-table__score {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 16px;
            color: var(--text-primary);
            letter-spacing: 0.5px;
        }
        .score-table__score.live {
            color: var(--primary);
        }
        .score-table__ht {
            font-size: 12px;
            color: var(--text-muted);
            font-family: var(--font-mono);
        }
        .score-table__status .live-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 3px 9px;
            background: rgba(0, 230, 118, 0.15);
            color: var(--primary);
            border-radius: 3px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        .score-table__status .live-tag .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--primary);
            animation: live-pulse 1.2s ease-in-out infinite;
        }
        .score-table__data-link {
            color: var(--primary);
            font-weight: 500;
            font-size: 12px;
            opacity: 0.5;
            transform: translateX(-4px);
            transition: all var(--transition-fast);
            display: inline-flex;
            align-items: center;
            gap: 3px;
        }
        .score-table__data-link:hover {
            opacity: 1;
            color: var(--primary-dark);
        }

        @media (max-width: 768px) {
            .score-table-wrapper {
                border-radius: var(--radius-md);
            }
            .score-table {
                min-width: 650px;
                font-size: 12px;
            }
            .score-table thead th,
            .score-table tbody td {
                padding: 10px 8px;
            }
            .score-table__score {
                font-size: 14px;
            }
        }

        /* ===== HOT MATCHES RANKING ===== */
        .ranking-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        .ranking-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            padding: 16px 18px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all var(--transition-normal);
            cursor: pointer;
        }
        .ranking-card:hover {
            background: var(--bg-card-hover);
            border-color: var(--border);
            box-shadow: var(--shadow-glow);
            transform: translateY(-2px);
        }
        .ranking-card__rank {
            font-family: var(--font-mono);
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            min-width: 36px;
            text-align: center;
        }
        .ranking-card__rank.top1 {
            color: #FFD700;
        }
        .ranking-card__rank.top2 {
            color: #C0C0C0;
        }
        .ranking-card__rank.top3 {
            color: #CD7F32;
        }
        .ranking-card__info {
            flex: 1;
            min-width: 0;
        }
        .ranking-card__match {
            font-weight: 600;
            font-size: 15px;
            color: var(--text-primary);
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .ranking-card__meta {
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .ranking-card__heat {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            color: var(--secondary);
            font-weight: 500;
            white-space: nowrap;
        }
        .ranking-card__heat i {
            font-size: 11px;
        }

        @media (max-width: 768px) {
            .ranking-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== LEAGUE ENTRY GRID ===== */
        .league-entry-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }
        .league-entry-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            padding: 24px 16px;
            text-align: center;
            transition: all var(--transition-normal);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .league-entry-card:hover {
            background: var(--bg-card-hover);
            border-color: var(--border);
            box-shadow: var(--shadow-glow);
            transform: translateY(-4px);
        }
        .league-entry-card__icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--primary-subtle);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary);
            transition: all var(--transition-normal);
        }
        .league-entry-card:hover .league-entry-card__icon {
            background: rgba(0, 230, 118, 0.2);
            box-shadow: var(--shadow-glow);
        }
        .league-entry-card__name {
            font-weight: 600;
            font-size: 15px;
            color: var(--text-primary);
        }
        .league-entry-card__desc {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        @media (max-width: 1024px) {
            .league-entry-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 640px) {
            .league-entry-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .league-entry-card {
                padding: 18px 12px;
            }
        }

        /* ===== USER REVIEWS ===== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            padding: 20px;
            position: relative;
            transition: all var(--transition-normal);
        }
        .review-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 16px;
            bottom: 16px;
            width: 3px;
            background: var(--primary);
            border-radius: 0 2px 2px 0;
            opacity: 0.6;
        }
        .review-card:hover {
            border-color: var(--border);
            box-shadow: var(--shadow-glow);
            transform: translateY(-2px);
        }
        .review-card__header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-card__avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--text-secondary);
            flex-shrink: 0;
        }
        .review-card__user {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
        }
        .review-card__tag {
            font-size: 11px;
            color: var(--text-muted);
        }
        .review-card__stars {
            color: #FFD700;
            font-size: 12px;
            letter-spacing: 1px;
            margin-bottom: 6px;
        }
        .review-card__text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        .review-card__date {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 8px;
        }

        @media (max-width: 1024px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 640px) {
            .reviews-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== FAQ ===== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-normal);
        }
        .faq-item.active {
            border-color: var(--border);
            box-shadow: var(--shadow-glow);
        }
        .faq-item__question {
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            color: var(--text-primary);
            transition: color var(--transition-fast);
            user-select: none;
        }
        .faq-item__question:hover {
            color: var(--primary);
        }
        .faq-item__icon {
            font-family: var(--font-mono);
            font-size: 16px;
            color: var(--primary);
            min-width: 24px;
            text-align: center;
            transition: transform var(--transition-normal);
            font-weight: 700;
        }
        .faq-item.active .faq-item__icon {
            transform: rotate(45deg);
        }
        .faq-item__answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-normal);
            padding: 0 20px 0 56px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
        }
        .faq-item.active .faq-item__answer {
            max-height: 400px;
            padding: 0 20px 18px 56px;
        }

        @media (max-width: 640px) {
            .faq-item__question {
                padding: 14px 16px;
                font-size: 14px;
            }
            .faq-item__answer {
                padding: 0 16px 0 40px;
                font-size: 13px;
            }
            .faq-item.active .faq-item__answer {
                padding: 0 16px 14px 40px;
            }
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: var(--bg-dark);
            padding: 56px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(0, 230, 118, 0.06) 0%, transparent 70%);
            z-index: 0;
        }
        .cta-section .container {
            position: relative;
            z-index: 1;
        }
        .cta-section h2 {
            font-size: 30px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: -0.3px;
        }
        .cta-section p {
            color: var(--text-secondary);
            font-size: 16px;
            margin-bottom: 24px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }
        .cta-section .btn-primary {
            font-size: 16px;
            padding: 15px 34px;
        }

        @media (max-width: 768px) {
            .cta-section h2 {
                font-size: 24px;
            }
            .cta-section p {
                font-size: 14px;
            }
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--bg-darker);
            padding: 48px 0 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }
        .footer__grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
            margin-bottom: 36px;
        }
        .footer__col h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }
        .footer__col a {
            display: block;
            font-size: 13px;
            color: var(--text-secondary);
            padding: 5px 0;
            transition: color var(--transition-fast);
        }
        .footer__col a:hover {
            color: var(--primary);
        }
        .footer__bottom {
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            line-height: 2;
            padding-top: 20px;
            border-top: 1px solid var(--border-light);
        }
        .footer__bottom-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
            margin-top: 4px;
        }
        .footer__bottom-links a {
            color: var(--text-muted);
            font-size: 12px;
            transition: color var(--transition-fast);
        }
        .footer__bottom-links a:hover {
            color: var(--primary);
        }
        .footer__bottom-links span {
            color: var(--border-light);
            font-size: 10px;
        }

        @media (max-width: 1024px) {
            .footer__grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 640px) {
            .footer__grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .footer {
                padding: 32px 0 20px;
            }
        }

        /* ===== MISC ===== */
        .text-center {
            text-align: center;
        }
        .mt-8 {
            margin-top: 8px;
        }
        .mt-16 {
            margin-top: 16px;
        }
        .mt-24 {
            margin-top: 24px;
        }
        .update-timestamp {
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--text-muted);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: var(--bg-card);
            border-radius: 20px;
            border: 1px solid var(--border-light);
        }
        .update-timestamp .dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--primary);
            animation: live-pulse 1.5s ease-in-out infinite;
        }
        .inline-link {
            color: var(--primary);
            font-weight: 500;
            transition: color var(--transition-fast);
            border-bottom: 1px solid transparent;
        }
        .inline-link:hover {
            color: var(--primary-dark);
            border-bottom-color: var(--primary);
        }

/* roulang page: category3 */
:root {
            --primary: #00E676;
            --primary-dark: #00C853;
            --primary-glow: rgba(0, 230, 118, 0.25);
            --primary-border: rgba(0, 230, 118, 0.18);
            --secondary: #FF9100;
            --secondary-glow: rgba(255, 145, 0, 0.3);
            --bg-deep: #0A0D10;
            --bg-body: #0F1419;
            --bg-card: #1B232C;
            --bg-card-hover: #1F2933;
            --bg-table-row: #161D25;
            --bg-table-row-hover: #1E2732;
            --bg-input: #141B22;
            --text-primary: #E6ECF0;
            --text-secondary: #B0BEC5;
            --text-muted: #8899A6;
            --text-dim: #5E6E7A;
            --border-subtle: #2A3642;
            --border-card: rgba(0, 230, 118, 0.12);
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
            --shadow-glow: 0 0 18px rgba(0, 230, 118, 0.22);
            --shadow-card-hover: 0 0 16px rgba(0, 230, 118, 0.2), 0 4px 20px rgba(0, 0, 0, 0.45);
            --font-display: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
            --font-body: "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
            --font-mono: "Roboto Mono", "Courier New", "SF Mono", monospace;
            --spacing-xs: 8px;
            --spacing-sm: 16px;
            --spacing-md: 24px;
            --spacing-lg: 40px;
            --spacing-xl: 56px;
            --spacing-2xl: 80px;
            --container-max: 1280px;
            --transition-fast: 0.15s ease;
            --transition-normal: 0.25s ease;
            --transition-slow: 0.35s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-body);
            color: var(--text-primary);
            line-height: 1.65;
            min-height: 100vh;
            overflow-x: hidden;
            letter-spacing: 0.01em;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
            transition: all var(--transition-fast);
        }
        button:focus-visible,
        a:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 3px;
            border-radius: var(--radius-sm);
        }
        input {
            font-family: inherit;
            outline: none;
            border: none;
        }
        ul,
        ol {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }

        /* 顶部信息条 */
        .top-bar {
            background: #000000;
            height: 32px;
            display: flex;
            align-items: center;
            font-size: 0.7rem;
            color: var(--text-muted);
            z-index: 1001;
            position: relative;
        }
        .top-bar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        .top-bar__left {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
        }
        .top-bar__domain {
            color: var(--text-dim);
            font-family: var(--font-mono);
            font-size: 0.65rem;
            letter-spacing: 0.03em;
        }
        .top-bar__slogan {
            color: var(--text-muted);
            font-size: 0.68rem;
            letter-spacing: 0.02em;
        }
        .top-bar__right {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
        }
        .top-bar__right a {
            color: var(--text-muted);
            font-size: 0.68rem;
            padding: 2px 6px;
            border-radius: 2px;
            transition: color var(--transition-fast);
        }
        .top-bar__right a:hover {
            color: var(--primary);
        }
        .top-bar__divider {
            width: 1px;
            height: 12px;
            background: #2A3642;
            display: inline-block;
        }

        /* 主导航 */
        .main-nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(15, 20, 25, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-subtle);
            transition: background var(--transition-normal);
        }
        .main-nav .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 56px;
            gap: var(--spacing-md);
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--text-primary);
            white-space: nowrap;
            letter-spacing: -0.02em;
            transition: color var(--transition-fast);
        }
        .nav-logo:hover {
            color: var(--primary);
        }
        .logo-icon {
            font-size: 1.4rem;
            color: var(--primary);
            transition: transform var(--transition-normal);
        }
        .nav-logo:hover .logo-icon {
            transform: rotate(-20deg);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: nowrap;
        }
        .nav-links a {
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--text-secondary);
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
            letter-spacing: 0.02em;
        }
        .nav-links a:hover {
            color: var(--primary);
            background: rgba(0, 230, 118, 0.06);
        }
        .nav-links a.active {
            color: var(--primary);
            font-weight: 600;
            background: rgba(0, 230, 118, 0.08);
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            box-shadow: 0 0 8px var(--primary-glow);
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-search-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: transparent;
            color: var(--text-secondary);
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-fast);
        }
        .nav-search-btn:hover {
            color: var(--primary);
            border-color: var(--primary);
            background: rgba(0, 230, 118, 0.06);
        }
        .btn-nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 18px;
            border-radius: var(--radius-sm);
            background: var(--primary);
            color: #0F1419;
            font-weight: 600;
            font-size: 0.85rem;
            white-space: nowrap;
            letter-spacing: 0.02em;
            transition: all var(--transition-fast);
        }
        .btn-nav-cta:hover {
            background: var(--primary-dark);
            box-shadow: var(--shadow-glow);
            color: #0F1419;
            transform: translateY(-1px);
        }
        .mobile-menu-toggle {
            display: none;
            width: 38px;
            height: 38px;
            border-radius: var(--radius-sm);
            background: transparent;
            color: var(--text-primary);
            font-size: 1.3rem;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-subtle);
        }

        /* Hero 分类首屏 */
        .category-hero {
            position: relative;
            background: linear-gradient(180deg, #0D1319 0%, #111922 40%, #0F1419 100%);
            padding: var(--spacing-2xl) 0 var(--spacing-xl);
            overflow: hidden;
            border-bottom: 1px solid var(--border-subtle);
        }
        .category-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 55%;
            height: 100%;
            background: url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            opacity: 0.08;
            mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
            -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
            pointer-events: none;
        }
        .category-hero__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-xl);
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .category-hero__text h1 {
            font-family: var(--font-display);
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.03em;
            line-height: 1.2;
            margin-bottom: var(--spacing-md);
        }
        .category-hero__text h1 span {
            color: var(--primary);
        }
        .category-hero__subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: var(--spacing-sm);
            max-width: 500px;
        }
        .category-hero__tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: var(--spacing-lg);
        }
        .category-hero__tag {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            background: rgba(0, 230, 118, 0.08);
            color: var(--primary);
            border: 1px solid var(--primary-border);
            letter-spacing: 0.02em;
        }
        .category-hero__btns {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: var(--radius-sm);
            background: var(--primary);
            color: #0F1419;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
            transition: all var(--transition-fast);
            cursor: pointer;
            text-decoration: none;
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            box-shadow: var(--shadow-glow);
            transform: translateY(-2px);
            color: #0F1419;
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 26px;
            border-radius: var(--radius-sm);
            background: transparent;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
            border: 1.5px solid var(--primary);
            transition: all var(--transition-fast);
            cursor: pointer;
            text-decoration: none;
        }
        .btn-outline:hover {
            background: rgba(0, 230, 118, 0.1);
            box-shadow: 0 0 14px var(--primary-glow);
            color: var(--primary);
        }
        .category-hero__visual {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-data-panel {
            background: rgba(27, 35, 44, 0.8);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: var(--spacing-md);
            width: 100%;
            max-width: 460px;
            box-shadow: var(--shadow-md);
        }
        .hero-data-panel__title {
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .hero-data-panel__title .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
            animation: livePulse 1.8s ease-in-out infinite;
        }
        @keyframes livePulse {
            0%,
            100% {
                box-shadow: 0 0 4px var(--primary), 0 0 10px var(--primary-glow);
            }
            50% {
                box-shadow: 0 0 10px var(--primary), 0 0 22px rgba(0, 230, 118, 0.5);
            }
        }
        .hero-mini-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.82rem;
        }
        .hero-mini-table th {
            text-align: left;
            padding: 8px 6px;
            font-weight: 500;
            color: var(--text-muted);
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            border-bottom: 1px solid var(--primary-border);
        }
        .hero-mini-table td {
            padding: 10px 6px;
            border-bottom: 1px solid rgba(42, 54, 66, 0.5);
            font-family: var(--font-body);
            color: var(--text-primary);
            font-size: 0.81rem;
        }
        .hero-mini-table .rank-cell {
            font-family: var(--font-mono);
            font-weight: 600;
            color: var(--primary);
            font-size: 0.85rem;
        }
        .hero-mini-table .pts-cell {
            font-family: var(--font-mono);
            font-weight: 700;
            color: var(--text-primary);
        }

        /* 通用板块 */
        .section {
            padding: var(--spacing-2xl) 0;
        }
        .section--alt {
            background: #0D1318;
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        .section__header {
            text-align: center;
            margin-bottom: var(--spacing-xl);
        }
        .section__header h2 {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.02em;
            margin-bottom: 10px;
        }
        .section__header h2 span {
            color: var(--primary);
        }
        .section__header p {
            color: var(--text-muted);
            font-size: 0.95rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }
        .section__header--left {
            text-align: left;
        }
        .section__header--left p {
            margin: 0;
        }

        /* 指标卡片网格 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-md);
        }
        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            padding: var(--spacing-md);
            text-align: center;
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
        }
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: var(--primary);
            border-radius: 0 0 2px 2px;
            opacity: 0.7;
        }
        .stat-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .stat-card__icon {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 8px;
            display: block;
        }
        .stat-card__value {
            font-family: var(--font-mono);
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.03em;
            line-height: 1;
            margin-bottom: 6px;
        }
        .stat-card__unit {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--text-muted);
        }
        .stat-card__label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            font-weight: 500;
            margin-bottom: 4px;
        }
        .stat-card__trend {
            font-size: 0.75rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            margin-top: 6px;
        }
        .stat-card__trend.up {
            color: var(--primary);
        }
        .stat-card__trend.down {
            color: #FF5252;
        }

        /* 联赛数据表格 */
        .data-table-wrapper {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        .data-table-wrapper__header {
            padding: var(--spacing-md);
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .data-table-wrapper__title {
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 1.05rem;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .data-table-wrapper__title .badge {
            font-size: 0.7rem;
            padding: 3px 10px;
            border-radius: 12px;
            background: rgba(0, 230, 118, 0.12);
            color: var(--primary);
            font-weight: 500;
        }
        .data-table-wrapper__filters {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .filter-chip {
            padding: 6px 14px;
            border-radius: 16px;
            font-size: 0.78rem;
            font-weight: 500;
            border: 1px solid var(--border-subtle);
            background: transparent;
            color: var(--text-muted);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .filter-chip:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .filter-chip.active {
            background: var(--primary);
            color: #0F1419;
            border-color: var(--primary);
            font-weight: 600;
        }
        .league-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.85rem;
        }
        .league-table thead th {
            padding: 12px 10px;
            text-align: left;
            font-weight: 500;
            color: var(--text-muted);
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-bottom: 2px solid var(--primary-border);
            background: rgba(0, 0, 0, 0.2);
            white-space: nowrap;
        }
        .league-table tbody td {
            padding: 12px 10px;
            border-bottom: 1px solid rgba(42, 54, 66, 0.4);
            color: var(--text-primary);
            font-size: 0.84rem;
            white-space: nowrap;
        }
        .league-table tbody tr {
            transition: background var(--transition-fast);
        }
        .league-table tbody tr:hover {
            background: var(--bg-table-row-hover);
        }
        .league-table .pos-cell {
            font-family: var(--font-mono);
            font-weight: 700;
            width: 40px;
            text-align: center;
        }
        .league-table .pos-top4 {
            color: var(--primary);
            font-weight: 700;
        }
        .league-table .team-cell {
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .team-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .team-dot--top {
            background: var(--primary);
        }
        .team-dot--mid {
            background: var(--secondary);
        }
        .team-dot--low {
            background: var(--text-dim);
        }
        .league-table .pts-highlight {
            font-family: var(--font-mono);
            font-weight: 700;
            color: var(--primary);
        }
        .league-table .link-cell a {
            color: var(--primary);
            font-weight: 500;
            font-size: 0.82rem;
            transition: all var(--transition-fast);
        }
        .league-table .link-cell a:hover {
            text-decoration: underline;
            color: #fff;
        }

        /* 联赛分类入口网格 */
        .league-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-md);
        }
        .league-entry-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            padding: var(--spacing-lg) var(--spacing-md);
            text-align: center;
            transition: all var(--transition-normal);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: block;
            color: inherit;
        }
        .league-entry-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-4px);
        }
        .league-entry-card__icon {
            font-size: 2.4rem;
            margin-bottom: 12px;
            display: block;
            transition: transform var(--transition-normal);
        }
        .league-entry-card:hover .league-entry-card__icon {
            transform: scale(1.15);
        }
        .league-entry-card__name {
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 1rem;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .league-entry-card__desc {
            font-size: 0.78rem;
            color: var(--text-muted);
            line-height: 1.5;
        }
        .league-entry-card__badge {
            position: absolute;
            top: 12px;
            right: 12px;
            font-size: 0.65rem;
            padding: 3px 8px;
            border-radius: 10px;
            background: rgba(255, 145, 0, 0.15);
            color: var(--secondary);
            font-weight: 600;
        }

        /* 射手榜排行 */
        .scorer-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--spacing-md);
        }
        .scorer-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            padding: var(--spacing-md);
            display: flex;
            align-items: center;
            gap: 14px;
            transition: all var(--transition-normal);
        }
        .scorer-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-card-hover);
            transform: translateX(3px);
        }
        .scorer-rank {
            font-family: var(--font-mono);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
            width: 36px;
            text-align: center;
            flex-shrink: 0;
        }
        .scorer-info {
            flex: 1;
            min-width: 0;
        }
        .scorer-name {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 0.9rem;
        }
        .scorer-team {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 2px;
        }
        .scorer-goals {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--text-primary);
            flex-shrink: 0;
        }
        .scorer-goals small {
            font-size: 0.7rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        /* 用户评论 */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-md);
        }
        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: var(--spacing-md);
            position: relative;
            transition: all var(--transition-normal);
        }
        .review-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 16px;
            bottom: 16px;
            width: 3px;
            background: var(--primary);
            border-radius: 0 3px 3px 0;
        }
        .review-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-card-hover);
        }
        .review-card__header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--bg-input);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--primary);
            border: 1px solid var(--primary-border);
            flex-shrink: 0;
        }
        .review-name {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--text-primary);
        }
        .review-tag {
            font-size: 0.68rem;
            color: var(--text-dim);
            display: block;
        }
        .review-stars {
            color: var(--secondary);
            font-size: 0.75rem;
            margin-bottom: 8px;
            letter-spacing: 2px;
        }
        .review-text {
            font-size: 0.84rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* FAQ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-normal);
        }
        .faq-item:hover {
            border-color: var(--primary-border);
        }
        .faq-question {
            padding: 16px 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-primary);
            transition: color var(--transition-fast);
            user-select: none;
        }
        .faq-question:hover {
            color: var(--primary);
        }
        .faq-icon {
            font-family: var(--font-mono);
            font-size: 1.1rem;
            color: var(--primary);
            flex-shrink: 0;
            transition: transform var(--transition-normal);
            width: 24px;
            text-align: center;
        }
        .faq-item.open .faq-icon {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-slow);
            padding: 0 20px;
            color: var(--text-secondary);
            font-size: 0.88rem;
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 400px;
            padding: 0 20px 18px;
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, #0F1A15 0%, #111D18 40%, #0F1419 100%);
            border-top: 1px solid var(--primary-border);
            border-bottom: 1px solid var(--primary-border);
            padding: var(--spacing-2xl) 0;
            text-align: center;
        }
        .cta-section h2 {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.02em;
            margin-bottom: 10px;
        }
        .cta-section p {
            color: var(--text-secondary);
            font-size: 1rem;
            max-width: 550px;
            margin: 0 auto var(--spacing-lg);
            line-height: 1.7;
        }
        .cta-section .btn-primary {
            font-size: 1rem;
            padding: 14px 32px;
        }

        /* Footer */
        .footer {
            background: #070A0E;
            padding: var(--spacing-2xl) 0 var(--spacing-lg);
            border-top: 1px solid #1A2630;
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        .footer__grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-xl);
        }
        .footer__col h4 {
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.03em;
        }
        .footer__col a {
            display: block;
            color: var(--text-muted);
            font-size: 0.82rem;
            padding: 5px 0;
            transition: color var(--transition-fast);
            line-height: 1.5;
        }
        .footer__col a:hover {
            color: var(--primary);
        }
        .footer__bottom {
            text-align: center;
            padding-top: var(--spacing-lg);
            border-top: 1px solid #1A2630;
            color: var(--text-dim);
            font-size: 0.75rem;
            line-height: 2;
        }
        .footer__bottom-links {
            margin-top: 6px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 4px;
            align-items: center;
        }
        .footer__bottom-links a {
            color: var(--text-muted);
            font-size: 0.75rem;
            transition: color var(--transition-fast);
        }
        .footer__bottom-links a:hover {
            color: var(--primary);
        }
        .footer__bottom-links span {
            color: var(--text-dim);
            font-size: 0.7rem;
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .league-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .scorer-list {
                grid-template-columns: 1fr;
            }
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer__grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .category-hero__grid {
                grid-template-columns: 1fr;
                gap: var(--spacing-lg);
            }
            .category-hero__visual {
                order: -1;
            }
            .hero-data-panel {
                max-width: 100%;
            }
            .category-hero__text h1 {
                font-size: 2rem;
            }
            .nav-links {
                gap: 2px;
            }
            .nav-links a {
                padding: 6px 10px;
                font-size: 0.8rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 56px;
                left: 0;
                right: 0;
                background: rgba(15, 20, 25, 0.96);
                backdrop-filter: blur(16px);
                flex-direction: column;
                padding: var(--spacing-sm);
                border-bottom: 1px solid var(--border-subtle);
                z-index: 999;
                gap: 2px;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links a {
                padding: 12px 16px;
                width: 100%;
                border-radius: var(--radius-sm);
                font-size: 0.9rem;
            }
            .mobile-menu-toggle {
                display: flex;
            }
            .btn-nav-cta {
                display: none;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: var(--spacing-sm);
            }
            .stat-card__value {
                font-size: 1.6rem;
            }
            .league-grid {
                grid-template-columns: 1fr 1fr;
                gap: var(--spacing-sm);
            }
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            .footer__grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--spacing-md);
            }
            .scorer-list {
                grid-template-columns: 1fr;
            }
            .category-hero__text h1 {
                font-size: 1.7rem;
            }
            .category-hero__subtitle {
                font-size: 0.95rem;
            }
            .section__header h2 {
                font-size: 1.5rem;
            }
            .data-table-wrapper {
                overflow-x: auto;
            }
            .league-table {
                font-size: 0.75rem;
                min-width: 700px;
            }
            .top-bar__slogan {
                display: none;
            }
            .top-bar__right a {
                font-size: 0.65rem;
            }
        }
        @media (max-width: 520px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .league-grid {
                grid-template-columns: 1fr;
            }
            .footer__grid {
                grid-template-columns: 1fr 1fr;
            }
            .category-hero__text h1 {
                font-size: 1.4rem;
            }
            .btn-primary,
            .btn-outline {
                width: 100%;
                justify-content: center;
            }
            .category-hero__btns {
                flex-direction: column;
            }
            .league-table {
                min-width: 550px;
            }
            .data-table-wrapper__header {
                flex-direction: column;
                align-items: flex-start;
            }
            .section {
                padding: var(--spacing-xl) 0;
            }
            .container {
                padding: 0 var(--spacing-sm);
            }
        }

/* roulang page: category4 */
:root {
            --primary: #00E676;
            --primary-dark: #00C853;
            --primary-glow: rgba(0, 230, 118, 0.25);
            --primary-border: rgba(0, 230, 118, 0.18);
            --secondary: #FF9100;
            --secondary-glow: rgba(255, 145, 0, 0.22);
            --bg-darkest: #0A0D10;
            --bg-dark: #0F1419;
            --bg-card: #1B232C;
            --bg-card-hover: #222D38;
            --bg-table-row: #161D25;
            --bg-table-row-hover: #1E2832;
            --text-primary: #E6ECF0;
            --text-secondary: #8899A6;
            --text-muted: #5C6B78;
            --border-subtle: #2A3642;
            --border-card: rgba(0, 230, 118, 0.12);
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.35);
            --shadow-glow: 0 0 14px rgba(0, 230, 118, 0.25);
            --shadow-glow-strong: 0 0 22px rgba(0, 230, 118, 0.35);
            --font-display: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --font-mono: 'Roboto Mono', 'Courier New', 'SF Mono', monospace;
            --spacing-xs: 8px;
            --spacing-sm: 16px;
            --spacing-md: 24px;
            --spacing-lg: 40px;
            --spacing-xl: 56px;
            --spacing-2xl: 80px;
            --max-width: 1280px;
            --nav-height: 60px;
            --topbar-height: 32px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.7;
            min-height: 100vh;
            font-weight: 400;
            font-size: 15px;
            letter-spacing: 0.01em;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
        }
        a:hover {
            color: var(--primary);
        }
        a:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 3px;
            border-radius: 2px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            font-family: var(--font-body);
            cursor: pointer;
            border: none;
            background: none;
            color: inherit;
            font-size: inherit;
            transition: all 0.2s ease;
        }
        button:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 3px;
            border-radius: 4px;
        }

        input {
            font-family: var(--font-body);
        }

        ul,
        ol {
            list-style: none;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-display);
            font-weight: 600;
            letter-spacing: -0.02em;
            line-height: 1.3;
            color: var(--text-primary);
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 var(--spacing-sm);
            }
        }

        /* ========== TOP BAR ========== */
        .top-bar {
            background: #000000;
            height: var(--topbar-height);
            font-size: 12px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            z-index: 1001;
            position: relative;
        }
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .top-bar__left {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .top-bar__left .domain-text {
            font-family: var(--font-mono);
            font-size: 11px;
            color: var(--text-muted);
            letter-spacing: 0.03em;
        }
        .top-bar__left .slogan {
            color: var(--text-secondary);
            font-size: 11px;
            letter-spacing: 0.02em;
        }
        .top-bar__right {
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .top-bar__right a {
            color: var(--text-secondary);
            font-size: 11px;
            transition: color 0.2s;
        }
        .top-bar__right a:hover {
            color: var(--primary);
        }
        @media (max-width: 640px) {
            .top-bar__left .slogan {
                display: none;
            }
            .top-bar__right {
                gap: 10px;
            }
            .top-bar__right a {
                font-size: 10px;
            }
        }

        /* ========== MAIN NAV ========== */
        .main-nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(15, 20, 25, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-card);
            height: var(--nav-height);
            display: flex;
            align-items: center;
            transition: background 0.3s ease;
        }
        .main-nav .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 18px;
            color: var(--text-primary);
            white-space: nowrap;
            letter-spacing: -0.01em;
            transition: color 0.2s;
        }
        .nav-logo:hover {
            color: var(--primary);
        }
        .logo-icon {
            color: var(--primary);
            font-size: 22px;
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-links a {
            padding: 8px 15px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all 0.22s ease;
            white-space: nowrap;
            letter-spacing: 0.02em;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--primary);
            background: rgba(0, 230, 118, 0.06);
        }
        .nav-links a.active {
            color: var(--primary);
            background: rgba(0, 230, 118, 0.1);
            font-weight: 600;
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 15px;
            right: 15px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-search-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            font-size: 15px;
            transition: all 0.2s;
            background: transparent;
        }
        .nav-search-btn:hover {
            color: var(--primary);
            background: rgba(0, 230, 118, 0.08);
        }
        .btn-nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 18px;
            background: var(--primary);
            color: #0F1419;
            font-weight: 600;
            font-size: 13px;
            border-radius: var(--radius-sm);
            letter-spacing: 0.02em;
            transition: all 0.22s ease;
            white-space: nowrap;
        }
        .btn-nav-cta:hover {
            background: var(--primary-dark);
            box-shadow: var(--shadow-glow);
            color: #0F1419;
            transform: translateY(-1px);
        }
        .mobile-menu-toggle {
            display: none;
            width: 38px;
            height: 38px;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--text-primary);
            border-radius: var(--radius-sm);
            background: transparent;
        }
        @media (max-width: 1024px) {
            .nav-links {
                gap: 2px;
            }
            .nav-links a {
                padding: 8px 10px;
                font-size: 13px;
            }
            .btn-nav-cta {
                padding: 8px 14px;
                font-size: 12px;
                gap: 4px;
            }
            .btn-nav-cta i {
                font-size: 11px;
            }
        }
        @media (max-width: 860px) {
            .nav-links {
                display: none;
                position: absolute;
                top: var(--nav-height);
                left: 0;
                right: 0;
                background: rgba(15, 20, 25, 0.96);
                backdrop-filter: blur(18px);
                -webkit-backdrop-filter: blur(18px);
                flex-direction: column;
                padding: var(--spacing-sm);
                gap: 4px;
                border-bottom: 1px solid var(--border-card);
                z-index: 999;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                padding: 12px 16px;
                width: 100%;
                border-radius: var(--radius-sm);
                font-size: 15px;
            }
            .nav-links a.active::after {
                display: none;
            }
            .mobile-menu-toggle {
                display: flex;
            }
            .btn-nav-cta {
                padding: 8px 12px;
                font-size: 12px;
            }
            .btn-nav-cta span {
                display: none;
            }
            .btn-nav-cta i {
                font-size: 14px;
            }
        }
        @media (max-width: 520px) {
            .nav-logo span {
                font-size: 15px;
            }
            .logo-icon {
                font-size: 18px;
            }
            .btn-nav-cta {
                padding: 7px 10px;
            }
        }

        /* ========== BUTTONS ========== */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            background: var(--primary);
            color: #0F1419;
            font-weight: 700;
            font-size: 15px;
            border-radius: var(--radius-sm);
            letter-spacing: 0.02em;
            transition: all 0.22s ease;
            white-space: nowrap;
            border: none;
            cursor: pointer;
            font-family: var(--font-display);
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            box-shadow: var(--shadow-glow-strong);
            transform: translateY(-2px);
            color: #0F1419;
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 26px;
            background: transparent;
            color: var(--primary);
            font-weight: 600;
            font-size: 15px;
            border-radius: var(--radius-sm);
            border: 1.5px solid var(--primary);
            letter-spacing: 0.02em;
            transition: all 0.22s ease;
            white-space: nowrap;
            cursor: pointer;
            font-family: var(--font-display);
        }
        .btn-outline:hover {
            background: rgba(0, 230, 118, 0.08);
            box-shadow: var(--shadow-glow);
            transform: translateY(-1px);
            color: var(--primary);
        }
        .btn-sm {
            padding: 7px 16px;
            font-size: 13px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: all 0.2s ease;
            cursor: pointer;
            font-family: var(--font-display);
            letter-spacing: 0.02em;
        }
        .btn-sm-primary {
            background: var(--primary);
            color: #0F1419;
            border: none;
        }
        .btn-sm-primary:hover {
            background: var(--primary-dark);
            box-shadow: var(--shadow-glow);
            color: #0F1419;
        }
        .btn-sm-outline {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }
        .btn-sm-outline:hover {
            background: rgba(0, 230, 118, 0.07);
            box-shadow: var(--shadow-glow);
            color: var(--primary);
        }

        /* ========== BADGES & TAGS ========== */
        .badge {
            display: inline-block;
            padding: 3px 10px;
            font-size: 11px;
            font-weight: 700;
            border-radius: 3px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            font-family: var(--font-display);
        }
        .badge-live {
            background: #E53935;
            color: #fff;
            animation: livePulse 1.8s ease-in-out infinite;
        }
        .badge-hot {
            background: var(--secondary);
            color: #0F1419;
        }
        .badge-new {
            background: #00B0FF;
            color: #fff;
        }
        .badge-recommend {
            background: var(--primary);
            color: #0F1419;
        }
        .badge-deep {
            background: #7C4DFF;
            color: #fff;
        }
        @keyframes livePulse {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 6px rgba(229, 57, 53, 0.6);
            }
            50% {
                opacity: 0.75;
                box-shadow: 0 0 14px rgba(229, 57, 53, 0.9);
            }
        }
        .tag {
            display: inline-block;
            padding: 4px 12px;
            font-size: 12px;
            font-weight: 500;
            border-radius: 20px;
            background: rgba(0, 230, 118, 0.08);
            color: var(--primary);
            border: 1px solid var(--primary-border);
            letter-spacing: 0.02em;
            transition: all 0.2s;
        }
        .tag:hover {
            background: rgba(0, 230, 118, 0.16);
            color: var(--primary);
        }

        /* ========== SECTION TITLES ========== */
        .section-header {
            text-align: center;
            margin-bottom: var(--spacing-xl);
        }
        .section-header h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
            letter-spacing: -0.02em;
        }
        .section-header p {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 22px;
            }
            .section-header p {
                font-size: 14px;
            }
        }

        /* ========== HERO ========== */
        .hero-section {
            padding: var(--spacing-2xl) 0 var(--spacing-xl);
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 70% 30%, rgba(0, 230, 118, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 30% 60%, rgba(255, 145, 0, 0.04) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-xl);
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .hero-content h1 {
            font-size: 38px;
            font-weight: 700;
            letter-spacing: -0.03em;
            margin-bottom: 16px;
            color: var(--text-primary);
            line-height: 1.25;
        }
        .hero-content h1 .highlight {
            color: var(--primary);
        }
        .hero-content .hero-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 20px;
            line-height: 1.6;
            max-width: 480px;
        }
        .hero-value-points {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 28px;
        }
        .hero-value-points span {
            font-size: 13px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.03);
            padding: 6px 14px;
            border-radius: 20px;
            border: 1px solid var(--border-subtle);
        }
        .hero-value-points span i {
            color: var(--primary);
            font-size: 11px;
        }
        .hero-buttons {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .hero-dashboard {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: var(--spacing-md);
            border: 1px solid var(--border-card);
            box-shadow: var(--shadow-card);
            position: relative;
        }
        .hero-dashboard__header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border-subtle);
        }
        .hero-dashboard__header h3 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }
        .hero-dashboard__header .live-dot {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--primary);
            font-family: var(--font-mono);
        }
        .live-dot-circle {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
            animation: livePulse 1.8s ease-in-out infinite;
        }
        .hero-mini-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
        }
        .hero-mini-table th {
            text-align: left;
            padding: 8px 6px;
            color: var(--text-muted);
            font-weight: 500;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            border-bottom: 2px solid rgba(0, 230, 118, 0.3);
        }
        .hero-mini-table td {
            padding: 10px 6px;
            border-bottom: 1px solid var(--border-subtle);
            color: var(--text-primary);
            font-size: 13px;
            vertical-align: middle;
        }
        .hero-mini-table .score-cell {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 15px;
            color: var(--primary);
        }
        .hero-mini-table .live-badge-cell .badge {
            font-size: 10px;
            padding: 2px 7px;
        }
        .hero-dashboard__footer {
            margin-top: 12px;
            text-align: right;
            font-size: 11px;
            color: var(--text-muted);
            font-family: var(--font-mono);
        }
        .hero-dashboard__footer .update-sec {
            color: var(--primary);
            font-weight: 600;
        }
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: var(--spacing-lg);
            }
            .hero-content h1 {
                font-size: 30px;
            }
            .hero-dashboard {
                max-width: 600px;
                margin: 0 auto;
            }
        }
        @media (max-width: 520px) {
            .hero-content h1 {
                font-size: 24px;
            }
            .hero-buttons {
                flex-direction: column;
            }
            .hero-buttons .btn-primary,
            .hero-buttons .btn-outline {
                width: 100%;
                justify-content: center;
            }
        }

        /* ========== STATS CARDS ========== */
        .stats-section {
            padding: var(--spacing-xl) 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: var(--spacing-md);
        }
        .stat-card {
            background: var(--bg-card);
            border-radius: var(--radius-sm);
            padding: var(--spacing-md);
            border: 1px solid var(--border-card);
            text-align: center;
            transition: all 0.25s ease;
            position: relative;
            overflow: hidden;
        }
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--primary);
            opacity: 0;
            transition: opacity 0.25s;
        }
        .stat-card:hover {
            border-color: var(--primary-border);
            box-shadow: var(--shadow-glow);
            transform: translateY(-3px);
            background: var(--bg-card-hover);
        }
        .stat-card:hover::before {
            opacity: 1;
        }
        .stat-card__icon {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 8px;
        }
        .stat-card__value {
            font-family: var(--font-mono);
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
            letter-spacing: -0.02em;
        }
        .stat-card__label {
            font-size: 12px;
            color: var(--text-secondary);
            margin-bottom: 6px;
            letter-spacing: 0.03em;
        }
        .stat-card__trend {
            font-size: 11px;
            font-family: var(--font-mono);
            color: var(--primary);
            font-weight: 500;
        }
        .stat-card__trend.up {
            color: var(--primary);
        }
        .stat-card__trend.stable {
            color: var(--secondary);
        }
        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 520px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--spacing-sm);
            }
            .stat-card__value {
                font-size: 22px;
            }
        }

        /* ========== FEATURE CARDS ========== */
        .features-section {
            padding: var(--spacing-xl) 0;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-md);
        }
        .feature-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: var(--spacing-lg) var(--spacing-md);
            border: 1px solid var(--border-card);
            text-align: center;
            transition: all 0.25s ease;
            position: relative;
        }
        .feature-card:hover {
            border-color: var(--primary-border);
            box-shadow: var(--shadow-glow);
            transform: translateY(-4px);
            background: var(--bg-card-hover);
        }
        .feature-card__icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 16px;
            background: rgba(0, 230, 118, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary);
            transition: all 0.25s;
        }
        .feature-card:hover .feature-card__icon {
            background: rgba(0, 230, 118, 0.2);
            box-shadow: var(--shadow-glow);
        }
        .feature-card h3 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-primary);
        }
        .feature-card p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 520px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== ANALYSIS HIGHLIGHT CARDS ========== */
        .highlight-section {
            padding: var(--spacing-xl) 0;
        }
        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-md);
        }
        .highlight-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-card);
            transition: all 0.25s ease;
        }
        .highlight-card:hover {
            border-color: var(--primary-border);
            box-shadow: var(--shadow-glow);
            transform: translateY(-3px);
            background: var(--bg-card-hover);
        }
        .highlight-card__img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-bottom: 2px solid rgba(0, 230, 118, 0.3);
        }
        .highlight-card__body {
            padding: var(--spacing-md);
        }
        .highlight-card__body .badge-row {
            display: flex;
            gap: 8px;
            margin-bottom: 10px;
            flex-wrap: wrap;
        }
        .highlight-card__body h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-primary);
            line-height: 1.4;
        }
        .highlight-card__body p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .highlight-card__body .data-points {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 12px;
        }
        .highlight-card__body .data-points span {
            font-size: 11px;
            font-family: var(--font-mono);
            color: var(--primary);
            background: rgba(0, 230, 118, 0.08);
            padding: 3px 10px;
            border-radius: 3px;
        }
        .highlight-card__body .card-link {
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: gap 0.2s;
        }
        .highlight-card__body .card-link:hover {
            gap: 8px;
        }
        @media (max-width: 1024px) {
            .highlight-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 600px) {
            .highlight-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== DATA TABLE ========== */
        .table-section {
            padding: var(--spacing-xl) 0;
        }
        .table-wrapper {
            overflow-x: auto;
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-card);
            padding: var(--spacing-sm);
            box-shadow: var(--shadow-card);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
            min-width: 800px;
        }
        .data-table thead th {
            text-align: left;
            padding: 12px 10px;
            color: var(--text-muted);
            font-weight: 600;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-bottom: 2px solid rgba(0, 230, 118, 0.35);
            white-space: nowrap;
        }
        .data-table tbody td {
            padding: 12px 10px;
            border-bottom: 1px solid var(--border-subtle);
            color: var(--text-primary);
            vertical-align: middle;
            white-space: nowrap;
        }
        .data-table tbody tr {
            transition: background 0.2s;
        }
        .data-table tbody tr:hover {
            background: var(--bg-table-row-hover);
        }
        .data-table .team-cell {
            font-weight: 600;
            font-size: 14px;
        }
        .data-table .prediction-cell {
            font-family: var(--font-mono);
            font-weight: 700;
            color: var(--primary);
            font-size: 14px;
        }
        .data-table .confidence-cell {
            font-family: var(--font-mono);
            font-weight: 600;
        }
        .confidence-high {
            color: var(--primary);
        }
        .confidence-mid {
            color: var(--secondary);
        }
        .data-table .link-cell a {
            color: var(--primary);
            font-weight: 600;
            font-size: 12px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .data-table .link-cell a:hover {
            text-decoration: underline;
        }

        /* ========== PROCESS / FLOW ========== */
        .process-section {
            padding: var(--spacing-xl) 0;
        }
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-md);
            position: relative;
        }
        .process-step {
            text-align: center;
            position: relative;
            padding: var(--spacing-md);
        }
        .process-step__num {
            width: 48px;
            height: 48px;
            margin: 0 auto 14px;
            background: rgba(0, 230, 118, 0.12);
            border: 2px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 18px;
            color: var(--primary);
            transition: all 0.3s;
            position: relative;
            z-index: 2;
        }
        .process-step:hover .process-step__num {
            background: var(--primary);
            color: #0F1419;
            box-shadow: var(--shadow-glow-strong);
        }
        .process-step h3 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--text-primary);
        }
        .process-step p {
            font-size: 12px;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        .process-step::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -50%;
            width: 100%;
            height: 1px;
            background: var(--border-subtle);
            z-index: 1;
            transform: translateX(-25%);
        }
        .process-step:last-child::after {
            display: none;
        }
        @media (max-width: 768px) {
            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .process-step:nth-child(2)::after {
                display: none;
            }
        }
        @media (max-width: 520px) {
            .process-grid {
                grid-template-columns: 1fr;
            }
            .process-step::after {
                display: none;
            }
        }

        /* ========== REVIEWS ========== */
        .reviews-section {
            padding: var(--spacing-xl) 0;
        }
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-md);
        }
        .review-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: var(--spacing-md);
            border: 1px solid var(--border-card);
            border-left: 3px solid var(--primary);
            transition: all 0.25s;
        }
        .review-card:hover {
            border-color: var(--primary-border);
            box-shadow: var(--shadow-glow);
            transform: translateY(-2px);
            background: var(--bg-card-hover);
        }
        .review-card__header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }
        .review-card__avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(0, 230, 118, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--primary);
            font-size: 16px;
            flex-shrink: 0;
        }
        .review-card__info .review-name {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
        }
        .review-card__info .review-tag {
            font-size: 11px;
            color: var(--text-muted);
        }
        .review-stars {
            color: var(--secondary);
            font-size: 12px;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }
        .review-card__body {
            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;
            }
        }

        /* ========== FAQ ========== */
        .faq-section {
            padding: var(--spacing-xl) 0;
        }
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            margin-bottom: 10px;
            border: 1px solid var(--border-card);
            overflow: hidden;
            transition: all 0.25s;
        }
        .faq-item:hover {
            border-color: var(--primary-border);
        }
        .faq-question {
            width: 100%;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-weight: 600;
            font-size: 15px;
            color: var(--text-primary);
            text-align: left;
            background: transparent;
            cursor: pointer;
            transition: color 0.2s;
            font-family: var(--font-display);
            letter-spacing: 0.01em;
        }
        .faq-question:hover {
            color: var(--primary);
        }
        .faq-icon {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 18px;
            color: var(--primary);
            flex-shrink: 0;
            transition: transform 0.3s;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 230, 118, 0.08);
            border-radius: 50%;
        }
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            background: rgba(0, 230, 118, 0.2);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
        }
        .faq-answer-inner {
            padding: 0 20px 18px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ========== CTA ========== */
        .cta-section {
            padding: var(--spacing-xl) 0 var(--spacing-2xl);
        }
        .cta-block {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: var(--spacing-xl) var(--spacing-lg);
            text-align: center;
            border: 1px solid var(--border-card);
            position: relative;
            overflow: hidden;
        }
        .cta-block::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 160px;
            height: 160px;
            background: radial-gradient(circle, rgba(0, 230, 118, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-block h2 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        .cta-block p {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }
        .cta-block .cta-buttons {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        @media (max-width: 520px) {
            .cta-block h2 {
                font-size: 20px;
            }
            .cta-block .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        /* ========== FOOTER ========== */
        .footer {
            background: var(--bg-darkest);
            padding: var(--spacing-xl) 0 var(--spacing-md);
            border-top: 1px solid var(--border-subtle);
            font-size: 14px;
            color: var(--text-secondary);
        }
        .footer__grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-lg);
            padding-bottom: var(--spacing-lg);
            border-bottom: 1px solid var(--border-subtle);
        }
        .footer__col h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.03em;
        }
        .footer__col a {
            display: block;
            font-size: 13px;
            color: var(--text-secondary);
            padding: 5px 0;
            transition: color 0.2s;
        }
        .footer__col a:hover {
            color: var(--primary);
        }
        .footer__bottom {
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            line-height: 2;
        }
        .footer__bottom-links {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 6px;
        }
        .footer__bottom-links a {
            color: var(--text-muted);
            font-size: 12px;
        }
        .footer__bottom-links a:hover {
            color: var(--primary);
        }
        .footer__bottom-links span {
            color: var(--text-muted);
        }
        @media (max-width: 768px) {
            .footer__grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 520px) {
            .footer__grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--spacing-md);
            }
        }

        /* ========== UTILITY ========== */
        .text-mono {
            font-family: var(--font-mono);
        }
        .text-primary-color {
            color: var(--primary);
        }
        .text-secondary-color {
            color: var(--secondary);
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        @media (max-width: 768px) {
            :root {
                --spacing-2xl: 48px;
                --spacing-xl: 36px;
                --spacing-lg: 28px;
            }
        }

/* roulang page: category5 */
:root {
            --primary: #00E676;
            --primary-dark: #00C853;
            --primary-glow: rgba(0, 230, 118, 0.25);
            --primary-subtle: rgba(0, 230, 118, 0.08);
            --secondary: #FF9100;
            --secondary-dark: #E67E00;
            --bg-deep: #0A0D10;
            --bg-main: #0F1419;
            --bg-card: #1B232C;
            --bg-card-hover: #232F3A;
            --bg-elevated: #1E2832;
            --text-primary: #E6ECF0;
            --text-secondary: #B0BEC5;
            --text-muted: #8899A6;
            --text-dim: #5D6D7A;
            --border-subtle: rgba(0, 230, 118, 0.12);
            --border-card: rgba(255, 255, 255, 0.06);
            --border-divider: #2A3642;
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.3);
            --shadow-hover: 0 0 18px rgba(0, 230, 118, 0.22);
            --shadow-glow: 0 0 24px rgba(0, 230, 118, 0.35);
            --font-display: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
            --font-mono: "Roboto Mono", "Courier New", "SF Mono", monospace;
            --spacing-xs: 8px;
            --spacing-sm: 16px;
            --spacing-md: 24px;
            --spacing-lg: 40px;
            --spacing-xl: 56px;
            --spacing-2xl: 80px;
            --container-max: 1280px;
            --transition-fast: 0.18s ease;
            --transition-base: 0.25s ease;
            --transition-slow: 0.35s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-display);
            font-weight: 400;
            line-height: 1.65;
            color: var(--text-primary);
            background-color: var(--bg-main);
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
        }
        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }
        ul,
        ol {
            list-style: none;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            letter-spacing: -0.3px;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }

        /* ========== TOP BAR ========== */
        .top-bar {
            background: #000000;
            height: 32px;
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            z-index: 1001;
            position: relative;
        }
        .top-bar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        .top-bar__left {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
        }
        .top-bar__left span {
            color: var(--text-dim);
        }
        .top-bar__left .domain-text {
            color: var(--text-muted);
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 0.3px;
        }
        .top-bar__right {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
        }
        .top-bar__right a {
            color: var(--text-muted);
            font-size: 12px;
            transition: color var(--transition-fast);
        }
        .top-bar__right a:hover {
            color: var(--primary);
        }
        .top-bar__divider {
            width: 1px;
            height: 12px;
            background: #333;
        }

        /* ========== MAIN NAV ========== */
        .main-nav {
            background: rgba(15, 20, 25, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-subtle);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: background var(--transition-base);
        }
        .main-nav .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
            gap: var(--spacing-md);
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: var(--spacing-xs);
            font-weight: 700;
            font-size: 20px;
            color: var(--text-primary);
            white-space: nowrap;
            flex-shrink: 0;
        }
        .nav-logo .logo-icon {
            font-size: 22px;
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        .nav-logo span {
            letter-spacing: -0.5px;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: nowrap;
        }
        .nav-links a {
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
        }
        .nav-links a:hover {
            color: var(--primary);
            background: var(--primary-subtle);
        }
        .nav-links a.active {
            color: var(--primary);
            background: var(--primary-subtle);
            font-weight: 600;
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: var(--spacing-xs);
            flex-shrink: 0;
        }
        .nav-search-btn {
            width: 38px;
            height: 38px;
            border-radius: var(--radius-sm);
            background: transparent;
            color: var(--text-secondary);
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-fast);
            border: 1px solid transparent;
        }
        .nav-search-btn:hover {
            color: var(--primary);
            background: var(--primary-subtle);
            border-color: var(--border-subtle);
        }
        .btn-nav-cta {
            padding: 9px 18px;
            border-radius: var(--radius-sm);
            background: var(--primary);
            color: #0A0D10;
            font-weight: 600;
            font-size: 13px;
            white-space: nowrap;
            transition: all var(--transition-base);
            display: flex;
            align-items: center;
            gap: 6px;
            letter-spacing: -0.2px;
        }
        .btn-nav-cta:hover {
            background: var(--primary-dark);
            box-shadow: var(--shadow-glow);
            color: #0A0D10;
            transform: translateY(-1px);
        }
        .mobile-menu-toggle {
            display: none;
            width: 38px;
            height: 38px;
            border-radius: var(--radius-sm);
            background: transparent;
            color: var(--text-primary);
            font-size: 20px;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-card);
        }

        /* ========== PAGE HERO ========== */
        .page-hero {
            position: relative;
            padding: var(--spacing-2xl) 0 var(--spacing-xl);
            overflow: hidden;
            background:
                radial-gradient(ellipse at 30% 20%, rgba(0, 200, 83, 0.06) 0%, transparent 65%),
                radial-gradient(ellipse at 70% 60%, rgba(255, 145, 0, 0.04) 0%, transparent 55%),
                var(--bg-main);
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.06;
            pointer-events: none;
        }
        .page-hero .container {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-xl);
            align-items: center;
        }
        .hero-content h1 {
            font-size: 2.6rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: -1px;
            line-height: 1.2;
            margin-bottom: var(--spacing-sm);
        }
        .hero-content h1 .highlight {
            color: var(--primary);
            position: relative;
        }
        .hero-content .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: var(--spacing-md);
            line-height: 1.6;
            max-width: 480px;
        }
        .hero-feature-tags {
            display: flex;
            flex-wrap: wrap;
            gap: var(--spacing-xs);
            margin-bottom: var(--spacing-lg);
        }
        .hero-feature-tags span {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            background: var(--bg-card);
            color: var(--text-secondary);
            border: 1px solid var(--border-card);
            white-space: nowrap;
        }
        .hero-feature-tags span i {
            color: var(--primary);
            margin-right: 4px;
            font-size: 11px;
        }
        .hero-buttons {
            display: flex;
            gap: var(--spacing-sm);
            flex-wrap: wrap;
        }
        .btn-hero-primary {
            padding: 13px 28px;
            border-radius: var(--radius-sm);
            background: var(--primary);
            color: #0A0D10;
            font-weight: 600;
            font-size: 15px;
            transition: all var(--transition-base);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            letter-spacing: -0.2px;
        }
        .btn-hero-primary:hover {
            background: var(--primary-dark);
            box-shadow: var(--shadow-glow);
            transform: translateY(-2px);
            color: #0A0D10;
        }
        .btn-hero-outline {
            padding: 12px 26px;
            border-radius: var(--radius-sm);
            background: transparent;
            color: var(--primary);
            font-weight: 600;
            font-size: 15px;
            border: 2px solid var(--primary);
            transition: all var(--transition-base);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            letter-spacing: -0.2px;
        }
        .btn-hero-outline:hover {
            background: rgba(0, 230, 118, 0.1);
            box-shadow: 0 0 14px rgba(0, 230, 118, 0.2);
            transform: translateY(-2px);
        }
        .hero-visual {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-subtle);
            padding: var(--spacing-md);
            box-shadow: var(--shadow-card);
        }
        .hero-visual__header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: var(--spacing-sm);
            padding-bottom: var(--spacing-sm);
            border-bottom: 1px solid var(--border-divider);
        }
        .hero-visual__title {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
        }
        .live-pulse {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            color: var(--primary);
            font-weight: 600;
            font-family: var(--font-mono);
        }
        .live-pulse::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
            animation: livePulse 1.2s ease-in-out infinite;
        }
        @keyframes livePulse {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(0, 230, 118, 0);
            }
        }
        .hero-mini-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
        }
        .hero-mini-table th {
            text-align: left;
            padding: 8px 6px;
            color: var(--text-dim);
            font-weight: 500;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 1px solid var(--border-subtle);
        }
        .hero-mini-table td {
            padding: 9px 6px;
            border-bottom: 1px solid var(--border-divider);
            color: var(--text-secondary);
            font-family: var(--font-display);
        }
        .hero-mini-table td.odds-value {
            font-family: var(--font-mono);
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
        }
        .hero-mini-table tr:hover td {
            background: var(--bg-card-hover);
        }
        .hero-mini-table .tag-trend {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 10px;
            font-weight: 600;
            background: rgba(255, 145, 0, 0.15);
            color: var(--secondary);
            white-space: nowrap;
        }
        .hero-visual__footer {
            margin-top: var(--spacing-sm);
            text-align: right;
            font-size: 11px;
            color: var(--text-dim);
            font-family: var(--font-mono);
        }

        /* ========== SECTION COMMON ========== */
        .section {
            padding: var(--spacing-xl) 0;
        }
        .section--alt {
            background: var(--bg-deep);
        }
        .section__header {
            text-align: center;
            margin-bottom: var(--spacing-xl);
        }
        .section__header h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: var(--spacing-xs);
            letter-spacing: -0.5px;
        }
        .section__header h2 i {
            color: var(--primary);
            margin-right: 8px;
        }
        .section__header .section__subtitle {
            color: var(--text-muted);
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* ========== STATS CARDS ROW ========== */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: var(--spacing-sm);
        }
        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-sm);
            padding: var(--spacing-md);
            text-align: center;
            transition: all var(--transition-fast);
            position: relative;
        }
        .stat-card:hover {
            border-color: var(--border-subtle);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
            background: var(--bg-card-hover);
        }
        .stat-card__icon {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: var(--spacing-xs);
        }
        .stat-card__value {
            font-family: var(--font-mono);
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.5px;
            line-height: 1;
        }
        .stat-card__label {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 4px;
            font-weight: 500;
        }
        .stat-card__trend {
            font-size: 11px;
            margin-top: 6px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 3px;
        }
        .stat-card__trend.up {
            color: var(--primary);
        }
        .stat-card__trend.stable {
            color: var(--secondary);
        }

        /* ========== ANALYSIS TYPE GRID ========== */
        .analysis-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-md);
        }
        .analysis-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            padding: var(--spacing-lg) var(--spacing-md);
            transition: all var(--transition-base);
            position: relative;
            overflow: hidden;
        }
        .analysis-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--primary);
            opacity: 0;
            transition: opacity var(--transition-base);
            border-radius: 0 2px 2px 0;
        }
        .analysis-card:hover {
            border-color: var(--border-subtle);
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
            background: var(--bg-card-hover);
        }
        .analysis-card:hover::before {
            opacity: 1;
        }
        .analysis-card__icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            background: var(--primary-subtle);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--primary);
            margin-bottom: var(--spacing-sm);
            transition: all var(--transition-base);
        }
        .analysis-card:hover .analysis-card__icon {
            box-shadow: 0 0 16px rgba(0, 230, 118, 0.3);
        }
        .analysis-card h3 {
            font-size: 1.1rem;
            color: #fff;
            margin-bottom: 6px;
            font-weight: 600;
        }
        .analysis-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.55;
            margin-bottom: var(--spacing-xs);
        }
        .analysis-card__link {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            transition: gap var(--transition-fast);
        }
        .analysis-card__link:hover {
            gap: 8px;
            color: var(--primary-dark);
        }

        /* ========== HOT ANALYSIS ========== */
        .hot-analysis-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--spacing-md);
        }
        .hot-match-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-base);
            display: flex;
            flex-direction: column;
        }
        .hot-match-card:hover {
            border-color: var(--border-subtle);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .hot-match-card__img {
            height: 160px;
            overflow: hidden;
            position: relative;
        }
        .hot-match-card__img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hot-match-card__badge {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 4px 10px;
            border-radius: 3px;
            font-size: 11px;
            font-weight: 700;
            background: var(--secondary);
            color: #0A0D10;
            letter-spacing: 0.5px;
        }
        .hot-match-card__body {
            padding: var(--spacing-md);
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .hot-match-card__teams {
            font-weight: 700;
            font-size: 1.05rem;
            color: #fff;
            margin-bottom: 4px;
        }
        .hot-match-card__league {
            font-size: 11px;
            color: var(--text-dim);
            margin-bottom: var(--spacing-xs);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .hot-match-card__summary {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.55;
            margin-bottom: var(--spacing-sm);
            flex: 1;
        }
        .hot-match-card__data-row {
            display: flex;
            gap: var(--spacing-sm);
            flex-wrap: wrap;
            margin-bottom: var(--spacing-sm);
        }
        .hot-match-card__data-tag {
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 500;
            background: var(--primary-subtle);
            color: var(--primary);
            white-space: nowrap;
        }
        .hot-match-card__cta {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            transition: gap var(--transition-fast);
            align-self: flex-start;
        }
        .hot-match-card__cta:hover {
            gap: 8px;
            color: var(--primary-dark);
        }

        /* ========== PROCESS STEPS ========== */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-md);
            position: relative;
        }
        .process-steps::before {
            content: '';
            position: absolute;
            top: 32px;
            left: 12%;
            right: 12%;
            height: 2px;
            background: var(--border-divider);
            z-index: 0;
            display: none;
        }
        .process-step {
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .process-step__num {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 2px solid var(--border-subtle);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
            margin: 0 auto var(--spacing-sm);
            font-family: var(--font-mono);
            transition: all var(--transition-base);
        }
        .process-step:hover .process-step__num {
            border-color: var(--primary);
            box-shadow: var(--shadow-hover);
            background: var(--primary-subtle);
        }
        .process-step h4 {
            font-size: 1rem;
            color: #fff;
            margin-bottom: 4px;
        }
        .process-step p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* ========== REVIEWS ========== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-sm);
        }
        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            padding: var(--spacing-md);
            border-left: 3px solid var(--primary);
            transition: all var(--transition-base);
        }
        .review-card:hover {
            border-left-color: var(--secondary);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
            background: var(--bg-card-hover);
        }
        .review-card__header {
            display: flex;
            align-items: center;
            gap: var(--spacing-xs);
            margin-bottom: var(--spacing-xs);
        }
        .review-card__avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--bg-elevated);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            color: var(--primary);
            flex-shrink: 0;
            border: 1px solid var(--border-subtle);
        }
        .review-card__name {
            font-weight: 600;
            font-size: 13px;
            color: #fff;
        }
        .review-card__tag {
            font-size: 10px;
            color: var(--text-dim);
        }
        .review-card__stars {
            color: var(--secondary);
            font-size: 12px;
            margin-bottom: 6px;
        }
        .review-card__text {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.55;
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: var(--spacing-xs);
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item.active {
            border-color: var(--border-subtle);
            box-shadow: var(--shadow-hover);
        }
        .faq-question {
            width: 100%;
            text-align: left;
            padding: var(--spacing-md);
            background: transparent;
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--spacing-sm);
            letter-spacing: -0.2px;
            cursor: pointer;
        }
        .faq-question .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--primary-subtle);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--primary);
            transition: transform var(--transition-fast);
            font-weight: 700;
        }
        .faq-item.active .faq-question .faq-icon {
            transform: rotate(45deg);
            background: rgba(255, 145, 0, 0.15);
            color: var(--secondary);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-base);
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.65;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 var(--spacing-md) var(--spacing-md);
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            background:
                radial-gradient(ellipse at 50% 50%, rgba(0, 200, 83, 0.08) 0%, transparent 70%),
                var(--bg-deep);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
            padding: var(--spacing-xl) 0;
            text-align: center;
        }
        .cta-section h2 {
            font-size: 1.7rem;
            color: #fff;
            margin-bottom: var(--spacing-xs);
            font-weight: 700;
        }
        .cta-section p {
            color: var(--text-secondary);
            margin-bottom: var(--spacing-md);
            font-size: 1rem;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-buttons {
            display: flex;
            gap: var(--spacing-sm);
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ========== FOOTER ========== */
        .footer {
            background: #0A0D10;
            border-top: 1px solid #1a2229;
            padding: var(--spacing-xl) 0 var(--spacing-md);
        }
        .footer__grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-xl);
        }
        .footer__col h4 {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: var(--spacing-sm);
            letter-spacing: -0.2px;
        }
        .footer__col a {
            display: block;
            font-size: 13px;
            color: var(--text-muted);
            padding: 4px 0;
            transition: color var(--transition-fast);
        }
        .footer__col a:hover {
            color: var(--primary);
        }
        .footer__bottom {
            text-align: center;
            font-size: 12px;
            color: var(--text-dim);
            line-height: 1.8;
            border-top: 1px solid #1a2229;
            padding-top: var(--spacing-md);
        }
        .footer__bottom-links {
            display: flex;
            justify-content: center;
            gap: var(--spacing-sm);
            flex-wrap: wrap;
            margin-top: 4px;
        }
        .footer__bottom-links a {
            color: var(--text-muted);
        }
        .footer__bottom-links a:hover {
            color: var(--primary);
        }
        .footer__bottom-links span {
            color: #333;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .page-hero .container {
                grid-template-columns: 1fr;
                gap: var(--spacing-lg);
            }
            .hero-content h1 {
                font-size: 2rem;
            }
            .stats-row {
                grid-template-columns: repeat(3, 1fr);
            }
            .analysis-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hot-analysis-grid {
                grid-template-columns: 1fr 1fr;
            }
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
            .process-steps::before {
                display: none;
            }
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer__grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .nav-links a {
                padding: 6px 10px;
                font-size: 13px;
            }
        }
        @media (max-width: 768px) {
            .top-bar__right {
                display: none;
            }
            .top-bar__left .domain-text {
                display: none;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background: rgba(15, 20, 25, 0.97);
                flex-direction: column;
                padding: var(--spacing-sm);
                gap: 2px;
                border-bottom: 1px solid var(--border-subtle);
                z-index: 999;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links a {
                width: 100%;
                padding: 12px 16px;
                border-radius: var(--radius-sm);
            }
            .mobile-menu-toggle {
                display: flex;
            }
            .btn-nav-cta {
                padding: 7px 12px;
                font-size: 12px;
            }
            .page-hero {
                padding: var(--spacing-lg) 0;
            }
            .hero-content h1 {
                font-size: 1.6rem;
            }
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
            }
            .analysis-grid {
                grid-template-columns: 1fr;
            }
            .hot-analysis-grid {
                grid-template-columns: 1fr;
            }
            .process-steps {
                grid-template-columns: 1fr;
            }
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            .footer__grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--spacing-md);
            }
            .section__header h2 {
                font-size: 1.4rem;
            }
            .hero-visual {
                padding: var(--spacing-sm);
            }
            .hero-mini-table {
                font-size: 11px;
            }
            .hero-mini-table td,
            .hero-mini-table th {
                padding: 6px 4px;
            }
        }
        @media (max-width: 520px) {
            .stats-row {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .stat-card__value {
                font-size: 1.5rem;
            }
            .footer__grid {
                grid-template-columns: 1fr 1fr;
                gap: var(--spacing-sm);
            }
            .hero-buttons {
                flex-direction: column;
            }
            .btn-hero-primary,
            .btn-hero-outline {
                width: 100%;
                justify-content: center;
            }
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            .container {
                padding: 0 var(--spacing-sm);
            }
            .hero-content h1 {
                font-size: 1.4rem;
            }
        }
