/* roulang page: index */
:root {
            --green: #1FDF4B;
            --green-hover: #18C93E;
            --green-dark: #14a832;
            --black-asphalt: #121212;
            --black-card: #1a1a1a;
            --white-lime: #FAFAF5;
            --white-pure: #FFFFFF;
            --red-zone: #FF3B3B;
            --yellow-ref: #FFD026;
            --blue-gray: #6B7B8D;
            --text-primary: #1a1a1a;
            --text-secondary: #5A6670;
            --text-weak: #8a929b;
            --text-on-dark: #e8e8e4;
            --text-on-dark-weak: rgba(232, 232, 228, 0.65);
            --border-light: #E5E5DF;
            --border-subtle: #eaeae5;
            --radius-card: 12px;
            --radius-btn: 6px;
            --radius-pill: 24px;
            --radius-icon: 4px;
            --shadow-card: 0px 8px 24px rgba(0, 0, 0, 0.04), 0px 2px 4px rgba(0, 0, 0, 0.02);
            --shadow-card-hover: 0px 16px 32px rgba(0, 0, 0, 0.12), 0px 4px 8px rgba(0, 0, 0, 0.04);
            --shadow-nav: 0px 1px 3px rgba(0, 0, 0, 0.04);
            --max-width: 1320px;
            --gap-col: 24px;
            --section-pad-desktop: 120px;
            --section-pad-tablet: 80px;
            --section-pad-mobile: 60px;
            --nav-height: 72px;
            --transition-fast: 0.18s ease;
            --transition-normal: 0.25s ease;
            --transition-slow: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-weight: 400;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--white-lime);
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:focus-visible {
            outline: 2px solid var(--green);
            outline-offset: 3px;
            border-radius: 2px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            border: none;
            font-family: inherit;
            transition: all var(--transition-fast);
        }
        button:focus-visible {
            outline: 2px solid var(--green);
            outline-offset: 3px;
        }
        input {
            font-family: inherit;
            border: none;
            outline: none;
        }
        input:focus-visible {
            outline: 2px solid var(--green);
            outline-offset: 2px;
        }
        ul,
        ol {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header / Nav */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--white-lime);
            border-bottom: 1px solid var(--border-light);
            height: var(--nav-height);
            box-shadow: var(--shadow-nav);
        }
        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 9px;
            font-weight: 800;
            font-size: 1.25rem;
            letter-spacing: -0.02em;
            color: var(--text-primary);
            white-space: nowrap;
        }
        .nav-brand .brand-icon {
            width: 34px;
            height: 34px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #121212;
            font-size: 1rem;
            flex-shrink: 0;
        }
        .nav-brand .brand-dot {
            color: var(--green);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-secondary);
            border-radius: var(--radius-btn);
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
            letter-spacing: 0.01em;
        }
        .nav-links a:hover {
            color: var(--text-primary);
            background: rgba(31, 223, 75, 0.06);
        }
        .nav-links a.active {
            color: var(--green-dark);
            font-weight: 700;
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 16px;
            right: 16px;
            height: 2.5px;
            background: var(--green);
            border-radius: 2px;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-search {
            display: flex;
            align-items: center;
            background: #eef0ea;
            border-radius: var(--radius-pill);
            padding: 8px 16px;
            gap: 8px;
            transition: all var(--transition-fast);
            border: 2px solid transparent;
        }
        .nav-search:focus-within {
            border-color: var(--green);
            background: var(--white-pure);
            box-shadow: 0 0 0 4px rgba(31, 223, 75, 0.08);
        }
        .nav-search i {
            color: var(--blue-gray);
            font-size: 0.85rem;
        }
        .nav-search input {
            background: transparent;
            font-size: 0.85rem;
            color: var(--text-primary);
            width: 120px;
            letter-spacing: 0.02em;
        }
        .nav-search input::placeholder {
            color: var(--text-weak);
        }
        .btn-subscribe {
            background: var(--green);
            color: #121212;
            font-weight: 700;
            font-size: 0.875rem;
            padding: 10px 20px;
            border-radius: var(--radius-pill);
            letter-spacing: 0.01em;
            white-space: nowrap;
            transition: all var(--transition-fast);
            border: 2px solid var(--green);
        }
        .btn-subscribe:hover {
            background: var(--green-hover);
            border-color: var(--green-hover);
            transform: translateY(-1px);
        }
        .btn-subscribe:active {
            transform: translateY(0);
        }
        .hamburger-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-primary);
            padding: 6px;
            cursor: pointer;
            border-radius: var(--radius-btn);
            transition: background var(--transition-fast);
        }
        .hamburger-toggle:hover {
            background: rgba(0, 0, 0, 0.04);
        }

        /* Mobile nav drawer */
        .mobile-nav-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
            z-index: 1100;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--transition-normal);
        }
        .mobile-nav-overlay.open {
            opacity: 1;
            pointer-events: auto;
        }
        .mobile-nav-drawer {
            position: fixed;
            top: 0;
            right: 0;
            width: 300px;
            max-width: 85vw;
            height: 100vh;
            background: var(--white-lime);
            z-index: 1200;
            transform: translateX(100%);
            transition: transform var(--transition-slow);
            display: flex;
            flex-direction: column;
            padding: 24px 20px;
            gap: 8px;
            box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
        }
        .mobile-nav-drawer.open {
            transform: translateX(0);
        }
        .mobile-nav-drawer .drawer-close {
            align-self: flex-end;
            background: none;
            border: none;
            font-size: 1.4rem;
            color: var(--text-secondary);
            padding: 8px;
            cursor: pointer;
            border-radius: var(--radius-btn);
        }
        .mobile-nav-drawer .drawer-close:hover {
            background: rgba(0, 0, 0, 0.05);
        }
        .mobile-nav-drawer a {
            display: block;
            padding: 12px 16px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            border-radius: var(--radius-btn);
            transition: all var(--transition-fast);
        }
        .mobile-nav-drawer a:hover {
            background: rgba(31, 223, 75, 0.08);
            color: var(--green-dark);
        }
        .mobile-nav-drawer a.active {
            color: var(--green-dark);
            background: rgba(31, 223, 75, 0.1);
            font-weight: 700;
        }
        .mobile-nav-drawer .drawer-search {
            display: flex;
            align-items: center;
            background: #eef0ea;
            border-radius: var(--radius-pill);
            padding: 10px 16px;
            gap: 8px;
            margin: 4px 0;
        }
        .mobile-nav-drawer .drawer-search input {
            background: transparent;
            font-size: 0.9rem;
            width: 100%;
        }
        .mobile-nav-drawer .btn-subscribe-mobile {
            background: var(--green);
            color: #121212;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 12px 20px;
            border-radius: var(--radius-pill);
            text-align: center;
            margin-top: 4px;
            border: 2px solid var(--green);
            transition: all var(--transition-fast);
            cursor: pointer;
            display: block;
        }
        .mobile-nav-drawer .btn-subscribe-mobile:hover {
            background: var(--green-hover);
        }

        /* Hero */
        .hero-section {
            background: var(--black-asphalt);
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            position: relative;
            padding: 60px 0 70px;
            min-height: 520px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(31, 223, 75, 0.07) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(255, 59, 59, 0.04) 0%, transparent 50%);
            pointer-events: none;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 3fr 2fr;
            gap: 28px;
            position: relative;
            z-index: 1;
            align-items: start;
        }
        .hero-scoreboard {
            background: rgba(18, 18, 18, 0.9);
            border: 1px solid rgba(31, 223, 75, 0.25);
            border-radius: var(--radius-card);
            padding: 28px 24px;
            box-shadow: 0 0 40px rgba(31, 223, 75, 0.06), 0 8px 32px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        .hero-scoreboard::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--green), transparent 70%, var(--green));
            animation: scanLine 3s ease-in-out infinite;
        }
        @keyframes scanLine {
            0%,
            100% {
                opacity: 0.6;
            }
            50% {
                opacity: 1;
            }
        }
        .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: var(--red-zone);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: var(--radius-pill);
            letter-spacing: 0.04em;
            margin-bottom: 20px;
            animation: pulseBadge 2s ease-in-out infinite;
        }
        @keyframes pulseBadge {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.5);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(255, 59, 59, 0);
            }
        }
        .live-badge .dot {
            width: 7px;
            height: 7px;
            background: #fff;
            border-radius: 50%;
            animation: blink 1s step-end infinite;
        }
        @keyframes blink {
            50% {
                opacity: 0;
            }
        }
        .match-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .match-row:last-child {
            border-bottom: none;
        }
        .match-team {
            font-weight: 700;
            font-size: 1.05rem;
            color: #e8e8e4;
            flex: 1;
            text-align: center;
            letter-spacing: 0.02em;
        }
        .match-team.home {
            text-align: right;
        }
        .match-team.away {
            text-align: left;
        }
        .match-score {
            font-weight: 800;
            font-size: 2.4rem;
            color: var(--green);
            letter-spacing: -0.03em;
            font-variant-numeric: tabular-nums;
            min-width: 90px;
            text-align: center;
            flex-shrink: 0;
            line-height: 1;
        }
        .match-meta {
            font-size: 0.75rem;
            color: var(--text-on-dark-weak);
            text-align: center;
            margin-top: 2px;
            letter-spacing: 0.03em;
        }
        .match-minutes {
            display: inline-block;
            background: rgba(255, 59, 59, 0.2);
            color: var(--red-zone);
            font-weight: 700;
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: var(--radius-pill);
            letter-spacing: 0.04em;
        }
        .hero-news {
            background: rgba(26, 26, 26, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-card);
            padding: 24px 20px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            height: 100%;
            min-height: 320px;
        }
        .hero-news h3 {
            font-weight: 800;
            font-size: 1.15rem;
            color: #e8e8e4;
            letter-spacing: -0.01em;
            line-height: 1.35;
            border-left: 3px solid var(--green);
            padding-left: 12px;
        }
        .hero-news .news-item {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            cursor: pointer;
            transition: all var(--transition-fast);
        }
        .hero-news .news-item:hover {
            padding-left: 6px;
        }
        .hero-news .news-item:last-child {
            border-bottom: none;
        }
        .hero-news .news-item .news-label {
            font-size: 0.7rem;
            color: var(--yellow-ref);
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        .hero-news .news-item p {
            font-size: 0.9rem;
            color: #ccc;
            line-height: 1.45;
            margin-top: 3px;
        }
        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--green);
            color: #121212;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 12px 24px;
            border-radius: var(--radius-pill);
            margin-top: auto;
            align-self: flex-start;
            letter-spacing: 0.02em;
            transition: all var(--transition-fast);
            border: 2px solid var(--green);
        }
        .hero-cta:hover {
            background: var(--green-hover);
            border-color: var(--green-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(31, 223, 75, 0.25);
        }

        /* Sections general */
        .section {
            padding: var(--section-pad-desktop) 0;
        }
        .section-header {
            margin-bottom: 40px;
        }
        .section-header h2 {
            font-weight: 800;
            font-size: 2rem;
            letter-spacing: -0.02em;
            color: var(--text-primary);
            line-height: 1.2;
        }
        .section-header .subtitle {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-top: 8px;
            letter-spacing: 0.01em;
        }
        .section-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--green-dark);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        /* Staggered sandwich layout */
        .staggered-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 24px;
            align-items: stretch;
        }
        .staggered-main {
            background: var(--black-asphalt);
            border-radius: var(--radius-card);
            padding: 32px 28px;
            color: #e8e8e4;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 380px;
            border: 1px solid rgba(31, 223, 75, 0.15);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-slow);
        }
        .staggered-main:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            border-color: rgba(31, 223, 75, 0.35);
        }
        .staggered-main .tag-row {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .staggered-main .tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: var(--radius-pill);
            letter-spacing: 0.03em;
            background: rgba(31, 223, 75, 0.15);
            color: var(--green);
            border: 1px solid rgba(31, 223, 75, 0.3);
        }
        .staggered-main h3 {
            font-weight: 800;
            font-size: 1.5rem;
            letter-spacing: -0.02em;
            line-height: 1.25;
            margin: 16px 0 8px;
        }
        .staggered-main p {
            color: var(--text-on-dark-weak);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .staggered-main .data-highlight {
            display: flex;
            gap: 20px;
            margin-top: 16px;
            flex-wrap: wrap;
        }
        .staggered-main .data-point {
            text-align: center;
        }
        .staggered-main .data-point .num {
            font-weight: 800;
            font-size: 2.2rem;
            color: var(--green);
            letter-spacing: -0.03em;
            font-variant-numeric: tabular-nums;
            line-height: 1;
        }
        .staggered-main .data-point .lbl {
            font-size: 0.7rem;
            color: var(--text-on-dark-weak);
            letter-spacing: 0.03em;
            margin-top: 4px;
        }
        .staggered-side {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .staggered-side .side-card {
            background: var(--white-pure);
            border-radius: var(--radius-card);
            padding: 22px 20px;
            flex: 1;
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-slow);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .staggered-side .side-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            border-color: rgba(31, 223, 75, 0.25);
        }
        .staggered-side .side-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--green);
            border-radius: 0 2px 2px 0;
            transition: width var(--transition-fast);
        }
        .staggered-side .side-card:hover::before {
            width: 5px;
        }
        .staggered-side .side-card h4 {
            font-weight: 700;
            font-size: 1.05rem;
            letter-spacing: -0.01em;
            color: var(--text-primary);
            margin-bottom: 6px;
        }
        .staggered-side .side-card p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        .staggered-side .side-card .side-icon {
            font-size: 1.6rem;
            color: var(--green);
            margin-bottom: 10px;
            display: block;
        }

        /* Fixture cards */
        .fixture-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 18px;
        }
        .fixture-card {
            background: var(--white-pure);
            border-radius: var(--radius-card);
            padding: 18px 16px;
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-slow);
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .fixture-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--green);
            border-radius: 0 1px 1px 0;
            transition: width var(--transition-fast);
        }
        .fixture-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .fixture-card:hover::before {
            width: 4px;
        }
        .fixture-card .fc-teams {
            flex: 1;
            min-width: 0;
        }
        .fixture-card .fc-teams .team-name {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--text-primary);
            letter-spacing: 0.01em;
        }
        .fixture-card .fc-teams .vs {
            font-size: 0.75rem;
            color: var(--text-weak);
            margin: 2px 0;
            letter-spacing: 0.04em;
        }
        .fixture-card .fc-time {
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--green-dark);
            white-space: nowrap;
            background: rgba(31, 223, 75, 0.08);
            padding: 6px 12px;
            border-radius: var(--radius-pill);
            letter-spacing: 0.02em;
        }
        .fixture-card .fc-league {
            font-size: 0.7rem;
            color: var(--text-weak);
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }

        /* Scenario cards */
        .scenario-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .scenario-card {
            background: var(--white-pure);
            border-radius: var(--radius-card);
            padding: 28px 22px;
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-slow);
            text-align: center;
        }
        .scenario-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .scenario-card .sc-icon {
            font-size: 2.5rem;
            color: var(--green);
            margin-bottom: 14px;
            display: block;
        }
        .scenario-card h4 {
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: -0.01em;
            margin-bottom: 8px;
        }
        .scenario-card p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.55;
        }

        /* Highlight cases */
        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .highlight-card {
            background: var(--white-pure);
            border-radius: var(--radius-card);
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-slow);
            display: flex;
            flex-direction: column;
        }
        .highlight-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .highlight-card .hl-img {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            background: #e8e8e4;
        }
        .highlight-card .hl-body {
            padding: 20px 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .highlight-card .hl-body h4 {
            font-weight: 700;
            font-size: 1.05rem;
            letter-spacing: -0.01em;
            line-height: 1.3;
        }
        .highlight-card .hl-body p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        .highlight-card .hl-body .hl-tags {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            margin-top: auto;
            padding-top: 8px;
        }
        .highlight-card .hl-body .hl-tags span {
            font-size: 0.7rem;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            background: rgba(31, 223, 75, 0.08);
            color: var(--green-dark);
            letter-spacing: 0.02em;
            border: 1px solid rgba(31, 223, 75, 0.2);
        }

        /* Pricing */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            align-items: stretch;
        }
        .pricing-card {
            background: var(--white-pure);
            border-radius: var(--radius-card);
            padding: 30px 22px;
            border: 2px solid var(--border-subtle);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-slow);
            display: flex;
            flex-direction: column;
            gap: 14px;
            position: relative;
        }
        .pricing-card.featured {
            border-color: var(--green);
            box-shadow: 0 0 0 6px rgba(31, 223, 75, 0.06), var(--shadow-card);
        }
        .pricing-card.featured::before {
            content: '推荐';
            position: absolute;
            top: -1px;
            right: 24px;
            background: var(--green);
            color: #121212;
            font-size: 0.7rem;
            font-weight: 800;
            padding: 4px 14px;
            border-radius: 0 0 6px 6px;
            letter-spacing: 0.04em;
        }
        .pricing-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .pricing-card .plan-name {
            font-weight: 800;
            font-size: 1.2rem;
            letter-spacing: -0.01em;
        }
        .pricing-card .plan-price {
            font-weight: 800;
            font-size: 2.6rem;
            color: var(--text-primary);
            letter-spacing: -0.03em;
            line-height: 1;
        }
        .pricing-card .plan-price span {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-weak);
            letter-spacing: 0.01em;
        }
        .pricing-card .plan-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex: 1;
        }
        .pricing-card .plan-features li {
            font-size: 0.88rem;
            color: var(--text-secondary);
            padding-left: 20px;
            position: relative;
            line-height: 1.5;
        }
        .pricing-card .plan-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--green);
            font-weight: 700;
            font-size: 0.85rem;
        }
        .btn-plan {
            display: block;
            text-align: center;
            font-weight: 700;
            font-size: 0.9rem;
            padding: 12px 20px;
            border-radius: var(--radius-pill);
            letter-spacing: 0.02em;
            transition: all var(--transition-fast);
            border: 2px solid var(--green);
            background: transparent;
            color: var(--green-dark);
            cursor: pointer;
            margin-top: auto;
        }
        .btn-plan:hover {
            background: rgba(31, 223, 75, 0.06);
        }
        .pricing-card.featured .btn-plan {
            background: var(--green);
            color: #121212;
            border-color: var(--green);
        }
        .pricing-card.featured .btn-plan:hover {
            background: var(--green-hover);
            border-color: var(--green-hover);
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0;
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            border-bottom: 1px solid var(--border-subtle);
            cursor: pointer;
            padding: 18px 0;
            transition: all var(--transition-fast);
        }
        .faq-item:first-child {
            border-top: 1px solid var(--border-subtle);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-weight: 700;
            font-size: 1.02rem;
            letter-spacing: -0.01em;
            color: var(--text-primary);
            line-height: 1.4;
        }
        .faq-question .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--text-weak);
            transition: all var(--transition-fast);
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.03);
        }
        .faq-item.open .faq-question .faq-icon {
            color: var(--green);
            background: rgba(31, 223, 75, 0.1);
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-normal);
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.65;
            padding: 0 4px;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 12px 4px 4px;
        }

        /* CTA section */
        .cta-section {
            background: var(--black-asphalt);
            padding: 70px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(31, 223, 75, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }
        .cta-section h2 {
            font-weight: 800;
            font-size: 2rem;
            color: #e8e8e4;
            letter-spacing: -0.02em;
            position: relative;
            z-index: 1;
        }
        .cta-section p {
            color: var(--text-on-dark-weak);
            font-size: 1.05rem;
            margin: 12px 0 24px;
            position: relative;
            z-index: 1;
        }
        .btn-cta-large {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--green);
            color: #121212;
            font-weight: 700;
            font-size: 1.05rem;
            padding: 14px 32px;
            border-radius: var(--radius-pill);
            letter-spacing: 0.02em;
            transition: all var(--transition-fast);
            border: 2px solid var(--green);
            position: relative;
            z-index: 1;
            cursor: pointer;
        }
        .btn-cta-large:hover {
            background: var(--green-hover);
            border-color: var(--green-hover);
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(31, 223, 75, 0.3);
        }

        /* Footer */
        .site-footer {
            background: var(--black-asphalt);
            color: var(--text-on-dark);
            padding: 50px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 32px;
        }
        .footer-col h4 {
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
            margin-bottom: 16px;
            color: #e8e8e4;
        }
        .footer-col p,
        .footer-col a {
            font-size: 0.85rem;
            color: var(--text-on-dark-weak);
            line-height: 1.7;
            display: block;
        }
        .footer-col a {
            padding: 3px 0;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--green);
        }
        .footer-bottom {
            margin-top: 36px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            text-align: center;
            font-size: 0.78rem;
            color: var(--text-on-dark-weak);
            line-height: 1.8;
            letter-spacing: 0.02em;
        }
        .footer-bottom .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin-bottom: 10px;
        }
        .footer-bottom .footer-links a {
            color: var(--text-on-dark-weak);
            transition: color var(--transition-fast);
            font-size: 0.78rem;
        }
        .footer-bottom .footer-links a:hover {
            color: var(--green);
        }
        .footer-friendly {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-top: 6px;
        }
        .footer-friendly span {
            font-size: 0.75rem;
            color: var(--text-on-dark-weak);
            cursor: default;
            letter-spacing: 0.02em;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .hero-scoreboard {
                order: 1;
            }
            .hero-news {
                order: 2;
                min-height: auto;
            }
            .staggered-grid {
                grid-template-columns: 1fr;
            }
            .staggered-side {
                flex-direction: row;
                gap: 16px;
            }
            .staggered-side .side-card {
                flex: 1;
            }
            .scenario-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .pricing-card.featured {
                grid-column: span 2;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
            .highlight-grid {
                grid-template-columns: 1fr;
            }
            .section {
                padding: var(--section-pad-tablet) 0;
            }
            .nav-links {
                gap: 2px;
            }
            .nav-links a {
                padding: 6px 10px;
                font-size: 0.8rem;
            }
            .nav-search input {
                width: 80px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .nav-actions .nav-search {
                display: none;
            }
            .nav-actions .btn-subscribe {
                display: none;
            }
            .hamburger-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .hero-section {
                padding: 36px 0 44px;
                min-height: auto;
            }
            .hero-scoreboard {
                padding: 18px 14px;
            }
            .match-score {
                font-size: 1.7rem;
                min-width: 60px;
            }
            .match-team {
                font-size: 0.9rem;
            }
            .hero-news {
                padding: 16px 14px;
            }
            .staggered-side {
                flex-direction: column;
            }
            .scenario-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .pricing-card.featured {
                grid-column: span 1;
            }
            .fixture-list {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .section {
                padding: var(--section-pad-mobile) 0;
            }
            .section-header h2 {
                font-size: 1.5rem;
            }
            .hero-cta {
                width: 100%;
                justify-content: center;
            }
            .highlight-grid {
                grid-template-columns: 1fr;
            }
            .staggered-main {
                min-height: auto;
                padding: 22px 16px;
            }
            .staggered-main h3 {
                font-size: 1.2rem;
            }
            .staggered-main .data-point .num {
                font-size: 1.6rem;
            }
            .faq-question {
                font-size: 0.9rem;
            }
            .cta-section h2 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 12px;
            }
            .hero-scoreboard {
                padding: 14px 10px;
            }
            .match-score {
                font-size: 1.35rem;
                min-width: 48px;
            }
            .match-team {
                font-size: 0.78rem;
            }
            .match-row {
                gap: 6px;
                padding: 10px 0;
            }
            .hero-news h3 {
                font-size: 1rem;
            }
            .hero-news .news-item p {
                font-size: 0.8rem;
            }
            .btn-subscribe {
                font-size: 0.78rem;
                padding: 8px 14px;
            }
            .fixture-card {
                padding: 12px 10px;
                gap: 8px;
            }
            .fixture-card .fc-teams .team-name {
                font-size: 0.82rem;
            }
        }

/* roulang page: category3 */
:root {
            --green: #1FDF4B;
            --green-hover: #18C93E;
            --green-dark: #14a832;
            --black-asphalt: #121212;
            --black-card: #1a1a1a;
            --white-lime: #FAFAF5;
            --white-pure: #ffffff;
            --red-zone: #FF3B3B;
            --yellow-ref: #FFD026;
            --blue-data: #6B7B8D;
            --text-primary: #1a1a1a;
            --text-secondary: #5A6670;
            --text-muted: #8a94a0;
            --text-on-dark: #e8e8e4;
            --text-on-dark-muted: rgba(232, 232, 228, 0.65);
            --border-light: #E5E5DF;
            --border-subtle: #eaeaec;
            --radius-card: 12px;
            --radius-btn: 6px;
            --radius-icon: 4px;
            --radius-pill: 24px;
            --shadow-card: 0px 8px 24px rgba(0, 0, 0, 0.04), 0px 2px 4px rgba(0, 0, 0, 0.02);
            --shadow-card-hover: 0px 16px 32px rgba(0, 0, 0, 0.12);
            --shadow-nav: 0px 1px 0px rgba(0, 0, 0, 0.06);
            --font-heading: 'Inter', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, sans-serif;
            --font-body: 'Roboto', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, sans-serif;
            --font-mono: 'SF Mono', 'JetBrains Mono', 'Consolas', monospace;
            --spacing-xs: 8px;
            --spacing-sm: 16px;
            --spacing-md: 24px;
            --spacing-lg: 40px;
            --spacing-xl: 60px;
            --spacing-2xl: 80px;
            --spacing-3xl: 120px;
            --container-max: 1320px;
            --nav-height: 72px;
            --transition-fast: 0.18s ease;
            --transition-smooth: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            font-weight: 400;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--white-lime);
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
            outline: none;
        }
        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--green);
            outline-offset: 3px;
            border-radius: 3px;
        }

        input {
            font-family: inherit;
            border: none;
            outline: none;
            background: none;
        }

        ul,
        ol {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }

        /* ========== HEADER / NAV ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--white-lime);
            height: var(--nav-height);
            border-bottom: 1px solid var(--border-light);
            box-shadow: var(--shadow-nav);
            display: flex;
            align-items: center;
        }
        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            gap: var(--spacing-md);
        }
        .header-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .header-logo .logo-icon {
            width: 38px;
            height: 38px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            flex-shrink: 0;
        }
        .header-logo .logo-icon::after {
            content: '';
            width: 16px;
            height: 16px;
            background: var(--black-asphalt);
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .header-logo .logo-icon::before {
            content: '';
            width: 6px;
            height: 14px;
            background: var(--green);
            border-radius: 3px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(30deg);
            z-index: 1;
            clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
        }
        .header-logo .logo-text {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--black-asphalt);
            letter-spacing: -0.02em;
            white-space: nowrap;
        }
        .header-logo .logo-text span {
            color: var(--green-dark);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: nowrap;
        }
        .nav-links a {
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 0.875rem;
            color: var(--text-secondary);
            padding: 8px 14px;
            border-radius: var(--radius-pill);
            transition: color var(--transition-fast), background var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--black-asphalt);
            background: rgba(31, 223, 75, 0.06);
        }
        .nav-links a.active {
            color: var(--green-dark);
            background: rgba(31, 223, 75, 0.1);
            font-weight: 700;
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 14px;
            right: 14px;
            height: 2.5px;
            background: var(--green);
            border-radius: 2px;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .search-box {
            display: flex;
            align-items: center;
            background: #f0f0ec;
            border-radius: var(--radius-pill);
            padding: 8px 16px;
            gap: 8px;
            transition: background var(--transition-fast), box-shadow var(--transition-fast);
        }
        .search-box:hover,
        .search-box:focus-within {
            background: #e8e8e2;
            box-shadow: 0 0 0 2px rgba(31, 223, 75, 0.2);
        }
        .search-box .search-icon {
            width: 16px;
            height: 16px;
            color: var(--text-muted);
            flex-shrink: 0;
        }
        .search-box input {
            font-size: 0.85rem;
            color: var(--text-primary);
            width: 140px;
            background: transparent;
        }
        .search-box input::placeholder {
            color: var(--text-muted);
        }
        .btn-subscribe {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.85rem;
            background: var(--green);
            color: #000;
            padding: 10px 20px;
            border-radius: var(--radius-pill);
            white-space: nowrap;
            transition: background var(--transition-fast), transform var(--transition-fast);
            letter-spacing: -0.01em;
        }
        .btn-subscribe:hover {
            background: var(--green-hover);
            transform: translateY(-1px);
        }
        .btn-subscribe:active {
            transform: scale(0.97);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }
        .hamburger span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: var(--black-asphalt);
            border-radius: 2px;
            transition: all var(--transition-smooth);
        }
        .hamburger.active span:nth-child(1) {
            transform: translateY(7.5px) rotate(45deg);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: translateY(-7.5px) rotate(-45deg);
        }
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.55);
            z-index: 999;
            opacity: 0;
            transition: opacity var(--transition-smooth);
            pointer-events: none;
        }
        .mobile-nav-overlay.show {
            opacity: 1;
            pointer-events: auto;
        }
        .mobile-nav-drawer {
            display: none;
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            height: 100%;
            background: var(--white-lime);
            z-index: 1000;
            padding: var(--spacing-lg) var(--spacing-md);
            transition: right var(--transition-smooth);
            box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
            overflow-y: auto;
        }
        .mobile-nav-drawer.show {
            right: 0;
        }
        .mobile-nav-drawer .drawer-links {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-top: var(--spacing-xl);
        }
        .mobile-nav-drawer .drawer-links a {
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 1rem;
            padding: 14px 18px;
            border-radius: var(--radius-card);
            color: var(--text-primary);
            transition: background var(--transition-fast);
        }
        .mobile-nav-drawer .drawer-links a:hover,
        .mobile-nav-drawer .drawer-links a.active {
            background: rgba(31, 223, 75, 0.1);
            color: var(--green-dark);
        }
        .mobile-nav-drawer .drawer-close {
            position: absolute;
            top: 18px;
            right: 18px;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--text-secondary);
            cursor: pointer;
            border-radius: 50%;
            transition: background var(--transition-fast);
        }
        .mobile-nav-drawer .drawer-close:hover {
            background: rgba(0, 0, 0, 0.06);
        }

        /* ========== HERO ========== */
        .page-hero {
            background: var(--black-asphalt);
            color: var(--text-on-dark);
            padding: var(--spacing-3xl) 0 var(--spacing-2xl);
            position: relative;
            overflow: hidden;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(ellipse at 25% 30%, rgba(31, 223, 75, 0.07) 0%, transparent 55%),
                radial-gradient(ellipse at 72% 65%, rgba(31, 223, 75, 0.04) 0%, transparent 50%);
            pointer-events: none;
        }
        .page-hero .container {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-2xl);
            align-items: center;
        }
        .page-hero .hero-content {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-md);
        }
        .page-hero .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(31, 223, 75, 0.13);
            color: var(--green);
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.8rem;
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            width: fit-content;
            letter-spacing: 0.03em;
            border: 1px solid rgba(31, 223, 75, 0.25);
        }
        .page-hero .hero-badge .dot {
            width: 7px;
            height: 7px;
            background: var(--green);
            border-radius: 50%;
            animation: pulse-dot 1.6s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.35;
                transform: scale(1.8);
            }
        }
        .page-hero h1 {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 2.8rem;
            line-height: 1.15;
            letter-spacing: -0.025em;
            color: #ffffff;
            margin: 0;
        }
        .page-hero h1 .highlight {
            color: var(--green);
            position: relative;
        }
        .page-hero .hero-subtitle {
            font-size: 1.05rem;
            color: var(--text-on-dark-muted);
            line-height: 1.7;
            max-width: 90%;
        }
        .page-hero .hero-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 4px;
        }
        .btn-primary {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.95rem;
            background: var(--green);
            color: #000;
            padding: 14px 28px;
            border-radius: var(--radius-btn);
            transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
            letter-spacing: -0.01em;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-primary:hover {
            background: var(--green-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(31, 223, 75, 0.3);
        }
        .btn-outline-light {
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 0.95rem;
            background: transparent;
            color: #ffffff;
            padding: 14px 28px;
            border-radius: var(--radius-btn);
            border: 1.5px solid rgba(255, 255, 255, 0.35);
            transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
            letter-spacing: -0.01em;
        }
        .btn-outline-light:hover {
            border-color: #ffffff;
            background: rgba(255, 255, 255, 0.06);
            transform: translateY(-2px);
        }
        .page-hero .hero-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .hero-visual-card {
            background: var(--black-card);
            border-radius: var(--radius-card);
            padding: var(--spacing-lg);
            border: 1px solid rgba(255, 255, 255, 0.08);
            width: 100%;
            max-width: 480px;
            box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
        }
        .hero-visual-card .vis-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .hero-visual-card .vis-row:last-child {
            border-bottom: none;
        }
        .hero-visual-card .vis-icon {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-icon);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.75rem;
            font-family: var(--font-heading);
        }
        .vis-icon.green-bg {
            background: rgba(31, 223, 75, 0.18);
            color: var(--green);
        }
        .vis-icon.yellow-bg {
            background: rgba(255, 208, 38, 0.18);
            color: var(--yellow-ref);
        }
        .vis-icon.red-bg {
            background: rgba(255, 59, 59, 0.18);
            color: var(--red-zone);
        }
        .hero-visual-card .vis-info {
            flex: 1;
            min-width: 0;
        }
        .hero-visual-card .vis-label {
            font-size: 0.75rem;
            color: var(--text-on-dark-muted);
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .hero-visual-card .vis-value {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.15rem;
            color: #ffffff;
            letter-spacing: -0.01em;
        }

        /* ========== MAIN SECTIONS ========== */
        main {
            display: flex;
            flex-direction: column;
        }
        .section {
            padding: var(--spacing-3xl) 0;
        }
        .section-dark {
            background: var(--black-asphalt);
            color: var(--text-on-dark);
        }
        .section-light {
            background: var(--white-pure);
        }
        .section-lime {
            background: var(--white-lime);
        }
        .section-header {
            text-align: center;
            margin-bottom: var(--spacing-2xl);
            display: flex;
            flex-direction: column;
            gap: var(--spacing-sm);
        }
        .section-header h2 {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 2rem;
            letter-spacing: -0.02em;
            color: inherit;
        }
        .section-dark .section-header h2 {
            color: #ffffff;
        }
        .section-header .section-subtitle {
            color: var(--text-secondary);
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        .section-dark .section-header .section-subtitle {
            color: var(--text-on-dark-muted);
        }
        .section-divider {
            width: 48px;
            height: 3px;
            background: var(--green);
            border-radius: 2px;
            margin: 0 auto;
        }

        /* ========== FEATURE CARDS ========== */
        .feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-md);
        }
        .feature-card {
            background: var(--white-pure);
            border-radius: var(--radius-card);
            padding: var(--spacing-lg);
            box-shadow: var(--shadow-card);
            border-left: 2px solid transparent;
            transition: box-shadow var(--transition-smooth), transform var(--transition-smooth), border-color var(--transition-fast);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .section-dark .feature-card {
            background: var(--black-card);
            border: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: none;
        }
        .feature-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            border-left-color: var(--green);
        }
        .section-dark .feature-card:hover {
            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
        }
        .feature-card .card-icon-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.78rem;
            color: var(--green-dark);
            background: rgba(31, 223, 75, 0.08);
            padding: 4px 12px;
            border-radius: var(--radius-pill);
            width: fit-content;
        }
        .feature-card h3 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.25rem;
            letter-spacing: -0.015em;
            color: var(--text-primary);
        }
        .section-dark .feature-card h3 {
            color: #ffffff;
        }
        .feature-card p {
            color: var(--text-secondary);
            font-size: 0.92rem;
            line-height: 1.65;
            flex: 1;
        }
        .section-dark .feature-card p {
            color: var(--text-on-dark-muted);
        }
        .feature-card .card-stat {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 2rem;
            color: var(--green-dark);
            letter-spacing: -0.03em;
        }
        .section-dark .feature-card .card-stat {
            color: var(--green);
        }

        /* ========== SCENARIO CARDS ========== */
        .scenario-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-md);
        }
        .scenario-card {
            background: var(--white-pure);
            border-radius: var(--radius-card);
            padding: var(--spacing-lg);
            box-shadow: var(--shadow-card);
            text-align: center;
            transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }
        .scenario-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .scenario-card .sc-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            flex-shrink: 0;
        }
        .sc-icon.pre-match {
            background: rgba(31, 223, 75, 0.12);
            color: var(--green-dark);
        }
        .sc-icon.in-match {
            background: rgba(255, 59, 59, 0.1);
            color: var(--red-zone);
        }
        .sc-icon.post-match {
            background: rgba(107, 123, 141, 0.1);
            color: var(--blue-data);
        }
        .scenario-card h3 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: -0.01em;
        }
        .scenario-card p {
            color: var(--text-secondary);
            font-size: 0.88rem;
            line-height: 1.6;
        }

        /* ========== PROCESS TIMELINE ========== */
        .process-list {
            display: flex;
            flex-direction: column;
            gap: 0;
            max-width: 760px;
            margin: 0 auto;
        }
        .process-item {
            display: flex;
            gap: var(--spacing-md);
            position: relative;
            padding-bottom: var(--spacing-lg);
        }
        .process-item:last-child {
            padding-bottom: 0;
        }
        .process-item .proc-step {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--green);
            color: #000;
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
        }
        .process-item:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 52px;
            left: 23px;
            width: 2px;
            height: calc(100% + 4px);
            background: #e0e0da;
            z-index: 1;
        }
        .process-item .proc-content {
            flex: 1;
            padding-top: 4px;
        }
        .process-item .proc-content h3 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: -0.01em;
            margin-bottom: 4px;
        }
        .process-item .proc-content p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* ========== CASE CARDS ========== */
        .case-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--spacing-md);
        }
        .case-card {
            background: var(--white-pure);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
        }
        .case-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .case-card .case-img-wrap {
            width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: #e8e8e2;
        }
        .case-card .case-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }
        .case-card:hover .case-img-wrap img {
            transform: scale(1.04);
        }
        .case-card .case-body {
            padding: var(--spacing-md);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .case-card .case-tags {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        .case-tags span {
            font-size: 0.72rem;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            background: rgba(31, 223, 75, 0.07);
            color: var(--green-dark);
            font-family: var(--font-heading);
            letter-spacing: 0.02em;
            border: 1px solid transparent;
        }
        .case-tags span.tag-yellow {
            background: rgba(255, 208, 38, 0.12);
            color: #b8920a;
        }
        .case-card h3 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.15rem;
            letter-spacing: -0.01em;
        }
        .case-card p {
            color: var(--text-secondary);
            font-size: 0.88rem;
            line-height: 1.6;
        }
        .case-card .case-date {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-family: var(--font-mono);
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 760px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .faq-item {
            border-bottom: 1px solid var(--border-subtle);
            cursor: pointer;
            transition: background var(--transition-fast);
        }
        .faq-item:hover {
            background: rgba(31, 223, 75, 0.02);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 0;
            gap: 16px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: -0.01em;
            color: var(--text-primary);
            transition: color var(--transition-fast);
        }
        .faq-item.open .faq-question {
            color: var(--green-dark);
        }
        .faq-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--text-muted);
            transition: transform var(--transition-smooth), color var(--transition-fast);
            font-weight: 300;
        }
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            color: var(--green);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
            color: var(--text-secondary);
            font-size: 0.92rem;
            line-height: 1.7;
            padding: 0 0;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 0 20px 0;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            background: var(--black-asphalt);
            text-align: center;
            padding: var(--spacing-2xl) 0;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -40%;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(31, 223, 75, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-section .container {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--spacing-md);
        }
        .cta-section h2 {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 2rem;
            letter-spacing: -0.02em;
            color: #ffffff;
        }
        .cta-section p {
            color: var(--text-on-dark-muted);
            font-size: 1rem;
            max-width: 500px;
        }
        .cta-section .btn-primary {
            font-size: 1rem;
            padding: 16px 36px;
            border-radius: var(--radius-btn);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--black-asphalt);
            color: var(--text-on-dark);
            padding: var(--spacing-2xl) 0 var(--spacing-lg);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1fr;
            gap: var(--spacing-xl);
            margin-bottom: var(--spacing-xl);
            padding-bottom: var(--spacing-lg);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-col h4 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.95rem;
            color: #ffffff;
            margin-bottom: 14px;
            letter-spacing: -0.01em;
        }
        .footer-col p {
            font-size: 0.85rem;
            color: var(--text-on-dark-muted);
            line-height: 1.7;
        }
        .footer-col a,
        .footer-col span {
            display: block;
            font-size: 0.85rem;
            color: var(--text-on-dark-muted);
            padding: 5px 0;
            transition: color var(--transition-fast);
            cursor: default;
        }
        .footer-col a {
            cursor: pointer;
        }
        .footer-col a:hover {
            color: var(--green);
        }
        .footer-bottom {
            text-align: center;
            font-size: 0.78rem;
            color: var(--text-on-dark-muted);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            align-items: center;
        }
        .footer-links a,
        .footer-links span {
            color: var(--text-on-dark-muted);
            font-size: 0.78rem;
            cursor: default;
        }
        .footer-links a {
            cursor: pointer;
            transition: color var(--transition-fast);
        }
        .footer-links a:hover {
            color: var(--green);
        }
        .footer-friendly {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.35);
        }
        .footer-friendly span {
            cursor: default;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .page-hero .container {
                grid-template-columns: 1fr;
                gap: var(--spacing-xl);
                text-align: center;
            }
            .page-hero .hero-subtitle {
                max-width: 100%;
            }
            .page-hero .hero-actions {
                justify-content: center;
            }
            .page-hero .hero-badge {
                margin: 0 auto;
            }
            .hero-visual-card {
                max-width: 100%;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .scenario-grid {
                grid-template-columns: 1fr 1fr;
            }
            .case-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: var(--spacing-lg);
            }
            .nav-links {
                display: none;
            }
            .search-box input {
                width: 100px;
            }
            .hamburger {
                display: flex;
            }
            .mobile-nav-overlay {
                display: block;
            }
            .mobile-nav-drawer {
                display: block;
            }
            :root {
                --spacing-3xl: 80px;
                --spacing-2xl: 56px;
            }
            .page-hero h1 {
                font-size: 2.2rem;
            }
            .section-header h2 {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 768px) {
            .page-hero {
                padding: var(--spacing-xl) 0;
            }
            .page-hero h1 {
                font-size: 1.75rem;
            }
            .page-hero .hero-subtitle {
                font-size: 0.9rem;
            }
            .scenario-grid {
                grid-template-columns: 1fr;
            }
            .process-item {
                gap: 12px;
            }
            .process-item .proc-step {
                width: 38px;
                height: 38px;
                font-size: 0.9rem;
            }
            .process-item:not(:last-child)::after {
                top: 42px;
                left: 18px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: var(--spacing-md);
            }
            .btn-subscribe {
                padding: 8px 14px;
                font-size: 0.78rem;
            }
            .search-box {
                padding: 6px 10px;
            }
            .search-box input {
                width: 70px;
                font-size: 0.78rem;
            }
            :root {
                --spacing-3xl: 60px;
                --spacing-2xl: 40px;
                --spacing-xl: 32px;
            }
            .section-header h2 {
                font-size: 1.4rem;
            }
            .feature-card h3 {
                font-size: 1.05rem;
            }
            .cta-section h2 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 520px) {
            .page-hero h1 {
                font-size: 1.4rem;
            }
            .page-hero .hero-actions {
                flex-direction: column;
                width: 100%;
            }
            .page-hero .hero-actions .btn-primary,
            .page-hero .hero-actions .btn-outline-light {
                width: 100%;
                justify-content: center;
                text-align: center;
            }
            .hero-visual-card {
                padding: var(--spacing-sm);
            }
            .section-header h2 {
                font-size: 1.2rem;
            }
            .feature-card {
                padding: var(--spacing-sm);
            }
            .case-card .case-body {
                padding: var(--spacing-sm);
            }
        }

/* roulang page: category2 */
:root {
            --green: #1FDF4B;
            --green-hover: #18C93E;
            --green-dark: #14A632;
            --black: #121212;
            --black-light: #1A1A1A;
            --black-card: #1E1E1E;
            --white: #FAFAF5;
            --white-pure: #FFFFFF;
            --red: #FF3B3B;
            --red-soft: #FF6B6B;
            --yellow: #FFD026;
            --yellow-soft: #FFE066;
            --gray-blue: #6B7B8D;
            --gray-light: #A0AAB4;
            --gray-border: #E5E5DF;
            --gray-bg: #F5F5F0;
            --gray-text: #5A6670;
            --text-primary: #1A1A1A;
            --text-secondary: #4A5058;
            --text-weak: #889098;
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-btn: 8px;
            --shadow-sm: 0px 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-md: 0px 8px 24px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0px 16px 40px rgba(0, 0, 0, 0.10);
            --shadow-xl: 0px 24px 56px rgba(0, 0, 0, 0.14);
            --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            --max-width: 1320px;
            --nav-height: 72px;
            --section-gap-desktop: 100px;
            --section-gap-tablet: 72px;
            --section-gap-mobile: 52px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            font-weight: 400;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--white);
            min-height: 100vh;
            font-size: 16px;
            letter-spacing: 0.01em;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
            outline: none;
        }
        a:focus-visible {
            outline: 2px solid var(--green);
            outline-offset: 3px;
            border-radius: 4px;
        }

        button {
            cursor: pointer;
            border: none;
            font-family: inherit;
            font-size: inherit;
            outline: none;
        }
        button:focus-visible {
            outline: 2px solid var(--green);
            outline-offset: 3px;
        }

        input {
            font-family: inherit;
            font-size: inherit;
            outline: none;
            border: none;
        }
        input:focus-visible {
            outline: 2px solid var(--green);
            outline-offset: 2px;
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 32px;
        }

        /* Header / Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--white);
            border-bottom: 1px solid var(--gray-border);
            height: var(--nav-height);
            box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.03);
            transition: box-shadow var(--transition-smooth);
        }
        .site-header.scrolled {
            box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.07);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            gap: 28px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--green);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            flex-shrink: 0;
            transition: transform var(--transition-bounce);
        }
        .logo-icon:hover {
            transform: rotate(-8deg) scale(1.06);
        }
        .logo-icon::after {
            content: '';
            width: 14px;
            height: 14px;
            background: var(--black);
            border-radius: 50%;
            position: absolute;
            top: -3px;
            right: -2px;
            border: 2px solid var(--white);
        }
        .logo-icon-inner {
            width: 16px;
            height: 16px;
            background: var(--black);
            clip-path: polygon(50% 0%, 80% 20%, 90% 55%, 75% 80%, 50% 100%, 25% 80%, 10% 55%, 20% 20%);
        }
        .logo-text {
            font-weight: 800;
            font-size: 20px;
            color: var(--black);
            letter-spacing: -0.02em;
            white-space: nowrap;
        }
        .logo-text span {
            color: var(--green);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
        }
        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            border-radius: var(--radius-btn);
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
            letter-spacing: 0.005em;
        }
        .nav-links a:hover {
            color: var(--black);
            background: rgba(31, 223, 75, 0.06);
        }
        .nav-links a.active {
            color: var(--green-dark);
            background: rgba(31, 223, 75, 0.10);
            font-weight: 700;
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 3px;
            background: var(--green);
            border-radius: 2px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .search-box {
            display: flex;
            align-items: center;
            background: var(--gray-bg);
            border-radius: 24px;
            padding: 9px 16px;
            gap: 8px;
            border: 1px solid transparent;
            transition: all var(--transition-fast);
            width: 200px;
        }
        .search-box:focus-within {
            border-color: var(--green);
            background: var(--white-pure);
            box-shadow: 0px 0px 0px 3px rgba(31, 223, 75, 0.10);
            width: 240px;
        }
        .search-box svg {
            width: 16px;
            height: 16px;
            color: var(--gray-light);
            flex-shrink: 0;
        }
        .search-box input {
            background: transparent;
            width: 100%;
            font-size: 14px;
            color: var(--text-primary);
            letter-spacing: 0.01em;
        }
        .search-box input::placeholder {
            color: var(--gray-light);
        }

        .btn-subscribe {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            background: var(--green);
            color: var(--black);
            font-weight: 700;
            font-size: 14px;
            border-radius: 24px;
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.01em;
            border: 2px solid transparent;
        }
        .btn-subscribe:hover {
            background: var(--green-hover);
            box-shadow: 0px 4px 16px rgba(31, 223, 75, 0.30);
            transform: translateY(-1px);
        }
        .btn-subscribe:active {
            transform: scale(0.97);
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            padding: 8px;
            border-radius: var(--radius-sm);
            transition: background var(--transition-fast);
        }
        .mobile-menu-toggle:hover {
            background: var(--gray-bg);
        }
        .mobile-menu-toggle span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: var(--black);
            border-radius: 2px;
            transition: all var(--transition-smooth);
        }
        .mobile-menu-toggle.active span:nth-child(1) {
            transform: translateY(7.5px) rotate(45deg);
        }
        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .mobile-menu-toggle.active span:nth-child(3) {
            transform: translateY(-7.5px) rotate(-45deg);
        }

        .mobile-drawer {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--white);
            z-index: 99;
            padding: 24px;
            flex-direction: column;
            gap: 8px;
            overflow-y: auto;
            border-top: 1px solid var(--gray-border);
            transform: translateX(-100%);
            transition: transform var(--transition-smooth);
        }
        .mobile-drawer.open {
            transform: translateX(0);
        }
        .mobile-drawer a {
            display: block;
            padding: 14px 18px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-secondary);
            border-radius: var(--radius-md);
            transition: all var(--transition-fast);
        }
        .mobile-drawer a:hover,
        .mobile-drawer a.active {
            background: rgba(31, 223, 75, 0.08);
            color: var(--green-dark);
        }
        .mobile-drawer .mobile-search {
            display: flex;
            align-items: center;
            background: var(--gray-bg);
            border-radius: 24px;
            padding: 12px 18px;
            gap: 10px;
            border: 1px solid var(--gray-border);
            margin-bottom: 8px;
        }
        .mobile-drawer .mobile-search input {
            background: transparent;
            width: 100%;
            font-size: 15px;
            color: var(--text-primary);
        }

        /* Page Hero */
        .page-hero {
            background: var(--black);
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center 30%;
            position: relative;
            padding: 72px 0 80px;
            overflow: hidden;
            min-height: 420px;
            display: flex;
            align-items: center;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(18, 18, 18, 0.92) 0%, rgba(18, 18, 18, 0.78) 40%, rgba(18, 18, 18, 0.65) 70%, rgba(18, 18, 18, 0.50) 100%);
            z-index: 1;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            top: -120px;
            right: -80px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(31, 223, 75, 0.10) 0%, transparent 70%);
            z-index: 1;
            border-radius: 50%;
        }
        .page-hero .container {
            position: relative;
            z-index: 2;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(31, 223, 75, 0.15);
            color: var(--green);
            font-weight: 700;
            font-size: 13px;
            padding: 6px 14px;
            border-radius: 20px;
            letter-spacing: 0.02em;
            margin-bottom: 18px;
            border: 1px solid rgba(31, 223, 75, 0.25);
        }
        .hero-badge .dot {
            width: 7px;
            height: 7px;
            background: var(--green);
            border-radius: 50%;
            animation: pulse-dot 2s infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 0 0 rgba(31, 223, 75, 0.6);
            }
            50% {
                opacity: 0.5;
                box-shadow: 0 0 0 10px rgba(31, 223, 75, 0);
            }
        }
        .page-hero h1 {
            font-size: 44px;
            font-weight: 900;
            letter-spacing: -0.03em;
            color: var(--white-pure);
            line-height: 1.15;
            max-width: 700px;
            margin-bottom: 14px;
        }
        .page-hero h1 span {
            color: var(--green);
        }
        .page-hero .hero-sub {
            font-size: 17px;
            color: rgba(250, 250, 245, 0.80);
            max-width: 560px;
            line-height: 1.6;
            margin-bottom: 28px;
        }
        .hero-stats-row {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .hero-stat-item {
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-md);
            padding: 16px 22px;
            min-width: 110px;
            text-align: center;
            backdrop-filter: blur(4px);
            transition: all var(--transition-fast);
        }
        .hero-stat-item:hover {
            background: rgba(31, 223, 75, 0.10);
            border-color: rgba(31, 223, 75, 0.30);
            transform: translateY(-2px);
        }
        .hero-stat-value {
            font-size: 32px;
            font-weight: 900;
            color: var(--green);
            letter-spacing: -0.02em;
            line-height: 1;
            font-variant-numeric: tabular-nums;
        }
        .hero-stat-label {
            font-size: 12px;
            color: rgba(250, 250, 245, 0.65);
            margin-top: 4px;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            font-weight: 600;
        }

        /* Section Shared */
        .section {
            padding: var(--section-gap-desktop) 0;
        }
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.06em;
            color: var(--green-dark);
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .section-label::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--green);
            border-radius: 2px;
        }
        .section-title {
            font-size: 32px;
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.2;
            color: var(--black);
            margin-bottom: 12px;
        }
        .section-desc {
            font-size: 16px;
            color: var(--gray-text);
            max-width: 600px;
            line-height: 1.65;
            margin-bottom: 36px;
        }

        /* League Overview Cards */
        .league-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .league-card {
            background: var(--white-pure);
            border-radius: var(--radius-lg);
            border: 1px solid var(--gray-border);
            overflow: hidden;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-sm);
        }
        .league-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: rgba(31, 223, 75, 0.25);
        }
        .league-card-header {
            padding: 20px 24px;
            border-bottom: 1px solid var(--gray-border);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            background: var(--gray-bg);
        }
        .league-card-name {
            font-weight: 800;
            font-size: 17px;
            color: var(--black);
            letter-spacing: -0.01em;
        }
        .league-card-badge {
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 12px;
            background: rgba(31, 223, 75, 0.12);
            color: var(--green-dark);
            letter-spacing: 0.03em;
            white-space: nowrap;
        }
        .league-table-mini {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
        }
        .league-table-mini thead th {
            padding: 10px 14px;
            text-align: left;
            font-weight: 600;
            font-size: 11px;
            color: var(--gray-blue);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            border-bottom: 1px solid var(--gray-border);
            background: var(--white-pure);
        }
        .league-table-mini tbody td {
            padding: 9px 14px;
            border-bottom: 1px solid rgba(229, 229, 223, 0.6);
            color: var(--text-primary);
            font-weight: 500;
        }
        .league-table-mini tbody tr {
            transition: background var(--transition-fast);
        }
        .league-table-mini tbody tr:hover {
            background: rgba(31, 223, 75, 0.03);
        }
        .league-table-mini .pos {
            font-weight: 700;
            width: 32px;
            text-align: center;
            font-variant-numeric: tabular-nums;
        }
        .league-table-mini .pos.top4 {
            color: var(--green-dark);
        }
        .league-table-mini .team-name {
            font-weight: 600;
        }
        .league-table-mini .pts {
            font-weight: 800;
            font-variant-numeric: tabular-nums;
            color: var(--black);
        }
        .league-card-footer {
            padding: 12px 24px;
            text-align: center;
            border-top: 1px solid var(--gray-border);
        }
        .league-card-footer a {
            font-size: 13px;
            font-weight: 700;
            color: var(--green-dark);
            transition: color var(--transition-fast);
        }
        .league-card-footer a:hover {
            color: var(--black);
        }

        /* Scorer Ranking */
        .scorer-section-bg {
            background: var(--black-light);
            position: relative;
            overflow: hidden;
        }
        .scorer-section-bg::before {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -60px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(31, 223, 75, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }
        .scorer-section-bg .section-title {
            color: var(--white-pure);
        }
        .scorer-section-bg .section-desc {
            color: rgba(250, 250, 245, 0.70);
        }
        .scorer-section-bg .section-label {
            color: var(--green);
        }
        .scorer-section-bg .section-label::before {
            background: var(--green);
        }

        .scorer-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            position: relative;
            z-index: 2;
        }
        .scorer-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .scorer-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: transparent;
            transition: all var(--transition-smooth);
            border-radius: 0 2px 2px 0;
        }
        .scorer-item:hover {
            background: rgba(31, 223, 75, 0.06);
            border-color: rgba(31, 223, 75, 0.25);
            transform: translateX(4px);
        }
        .scorer-item:hover::before {
            background: var(--green);
        }
        .scorer-item.top-gold {
            border-color: rgba(255, 208, 38, 0.35);
            background: rgba(255, 208, 38, 0.06);
        }
        .scorer-item.top-gold::before {
            background: var(--yellow);
        }
        .scorer-rank {
            font-size: 22px;
            font-weight: 900;
            width: 40px;
            text-align: center;
            color: var(--gray-light);
            font-variant-numeric: tabular-nums;
            flex-shrink: 0;
            letter-spacing: -0.02em;
        }
        .scorer-item.top-gold .scorer-rank {
            color: var(--yellow);
        }
        .scorer-item:nth-child(2) .scorer-rank {
            color: #C0C0C0;
        }
        .scorer-item:nth-child(3) .scorer-rank {
            color: #CD7F32;
        }
        .scorer-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.10);
            flex-shrink: 0;
            border: 2px solid rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.6);
        }
        .scorer-info {
            flex: 1;
            min-width: 0;
        }
        .scorer-name {
            font-weight: 700;
            font-size: 16px;
            color: var(--white-pure);
            letter-spacing: -0.01em;
        }
        .scorer-team {
            font-size: 12px;
            color: rgba(250, 250, 245, 0.55);
            margin-top: 2px;
        }
        .scorer-goals {
            font-size: 28px;
            font-weight: 900;
            color: var(--green);
            font-variant-numeric: tabular-nums;
            letter-spacing: -0.02em;
            flex-shrink: 0;
            min-width: 48px;
            text-align: right;
        }
        .scorer-goals-label {
            font-size: 11px;
            color: rgba(250, 250, 245, 0.45);
            font-weight: 500;
            flex-shrink: 0;
        }

        /* Team Cards */
        .team-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .team-card {
            background: var(--white-pure);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--gray-border);
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-sm);
        }
        .team-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
            border-color: rgba(31, 223, 75, 0.30);
        }
        .team-card-img {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            background: var(--gray-bg);
        }
        .team-card-body {
            padding: 18px 18px 16px;
        }
        .team-card-name {
            font-weight: 800;
            font-size: 16px;
            color: var(--black);
            letter-spacing: -0.01em;
            margin-bottom: 4px;
        }
        .team-card-league {
            font-size: 12px;
            color: var(--gray-blue);
            font-weight: 600;
            letter-spacing: 0.03em;
            margin-bottom: 10px;
        }
        .team-card-stats {
            display: flex;
            gap: 14px;
            font-size: 12px;
            color: var(--text-secondary);
            flex-wrap: wrap;
        }
        .team-card-stats span {
            font-weight: 700;
            color: var(--black);
        }
        .team-card-form {
            display: flex;
            gap: 4px;
            margin-top: 10px;
        }
        .form-dot {
            width: 20px;
            height: 20px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
        }
        .form-dot.win {
            background: var(--green);
        }
        .form-dot.draw {
            background: var(--yellow);
            color: var(--black);
        }
        .form-dot.loss {
            background: var(--red);
        }

        /* Trend Placeholder */
        .trend-block {
            background: var(--white-pure);
            border-radius: var(--radius-xl);
            border: 1px solid var(--gray-border);
            padding: 36px;
            box-shadow: var(--shadow-md);
        }
        .trend-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 24px;
        }
        .trend-header h3 {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: -0.01em;
        }
        .trend-tabs {
            display: flex;
            gap: 4px;
            background: var(--gray-bg);
            border-radius: 20px;
            padding: 3px;
        }
        .trend-tab {
            padding: 7px 16px;
            font-size: 12px;
            font-weight: 700;
            border-radius: 18px;
            cursor: pointer;
            transition: all var(--transition-fast);
            color: var(--text-secondary);
            background: transparent;
            letter-spacing: 0.02em;
        }
        .trend-tab.active {
            background: var(--white-pure);
            color: var(--black);
            box-shadow: var(--shadow-sm);
        }
        .trend-tab:hover:not(.active) {
            color: var(--black);
        }
        .trend-chart-placeholder {
            width: 100%;
            height: 280px;
            background: var(--gray-bg);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            border: 1px dashed var(--gray-border);
        }
        .trend-chart-placeholder .chart-lines {
            display: flex;
            align-items: flex-end;
            gap: 8px;
            height: 180px;
            padding: 0 20px;
        }
        .chart-bar {
            width: 36px;
            border-radius: 6px 6px 0 0;
            background: var(--green);
            transition: all var(--transition-bounce);
            cursor: pointer;
            position: relative;
        }
        .chart-bar:hover {
            background: var(--green-hover);
            transform: scaleY(1.05);
            transform-origin: bottom;
        }
        .chart-bar:nth-child(odd) {
            background: rgba(31, 223, 75, 0.6);
        }
        .chart-bar-label {
            position: absolute;
            bottom: -22px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 10px;
            font-weight: 600;
            color: var(--gray-blue);
            white-space: nowrap;
        }
        .trend-legend {
            display: flex;
            gap: 16px;
            margin-top: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .legend-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--text-secondary);
            font-weight: 600;
        }
        .legend-dot {
            width: 10px;
            height: 10px;
            border-radius: 3px;
        }
        .legend-dot.green {
            background: var(--green);
        }
        .legend-dot.light {
            background: rgba(31, 223, 75, 0.5);
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0;
            border-top: 1px solid var(--gray-border);
        }
        .faq-item {
            border-bottom: 1px solid var(--gray-border);
            cursor: pointer;
            transition: all var(--transition-fast);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 8px;
            font-weight: 700;
            font-size: 16px;
            color: var(--text-primary);
            letter-spacing: -0.01em;
            gap: 16px;
            transition: color var(--transition-fast);
        }
        .faq-item:hover .faq-question {
            color: var(--green-dark);
        }
        .faq-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            transition: transform var(--transition-smooth);
            color: var(--gray-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 300;
            line-height: 1;
        }
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            color: var(--green);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
            padding: 0 8px;
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 8px 20px;
        }

        /* CTA */
        .cta-block {
            background: var(--black);
            border-radius: var(--radius-xl);
            padding: 48px 44px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .cta-block::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -60px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(31, 223, 75, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }
        .cta-block h3 {
            font-size: 28px;
            font-weight: 800;
            color: var(--white-pure);
            letter-spacing: -0.02em;
            position: relative;
            z-index: 2;
            margin-bottom: 8px;
        }
        .cta-block p {
            color: rgba(250, 250, 245, 0.70);
            position: relative;
            z-index: 2;
            margin-bottom: 24px;
            font-size: 15px;
        }
        .cta-block .btn-subscribe {
            position: relative;
            z-index: 2;
            padding: 14px 32px;
            font-size: 15px;
            border-radius: 28px;
        }

        /* Footer */
        .site-footer {
            background: var(--black);
            color: rgba(250, 250, 245, 0.70);
            padding: 56px 0 28px;
            margin-top: 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.3fr;
            gap: 40px;
            margin-bottom: 36px;
        }
        .footer-col h4 {
            font-weight: 800;
            font-size: 15px;
            color: var(--white-pure);
            margin-bottom: 16px;
            letter-spacing: -0.01em;
        }
        .footer-col p {
            font-size: 13px;
            line-height: 1.7;
            color: rgba(250, 250, 245, 0.55);
        }
        .footer-col a,
        .footer-col span {
            display: block;
            font-size: 13px;
            margin-bottom: 8px;
            color: rgba(250, 250, 245, 0.60);
            transition: color var(--transition-fast);
            cursor: pointer;
        }
        .footer-col a:hover {
            color: var(--green);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.10);
            padding-top: 20px;
            text-align: center;
            font-size: 12px;
            color: rgba(250, 250, 245, 0.40);
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
        }
        .footer-links a,
        .footer-links span {
            font-size: 12px;
            color: rgba(250, 250, 245, 0.50);
            cursor: pointer;
            transition: color var(--transition-fast);
        }
        .footer-links a:hover {
            color: var(--green);
        }
        .footer-friendly {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-top: 6px;
        }
        .footer-friendly span {
            font-size: 11px;
            color: rgba(250, 250, 245, 0.35);
            cursor: default;
        }
        .footer-bottom p {
            margin-top: 4px;
            line-height: 1.6;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .container {
                padding: 0 24px;
            }
            .section {
                padding: var(--section-gap-tablet) 0;
            }
            .page-hero {
                padding: 52px 0 56px;
                min-height: auto;
            }
            .page-hero h1 {
                font-size: 34px;
            }
            .league-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .team-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .scorer-goals {
                font-size: 24px;
                min-width: 36px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
            .nav-links {
                display: none;
            }
            .search-box {
                display: none;
            }
            .mobile-menu-toggle {
                display: flex;
            }
            .mobile-drawer {
                display: flex;
            }
            .trend-chart-placeholder {
                height: 220px;
            }
            .chart-bar {
                width: 24px;
            }
            .section-title {
                font-size: 26px;
            }
            .hero-stats-row {
                gap: 10px;
            }
            .hero-stat-item {
                padding: 12px 16px;
                min-width: 80px;
            }
            .hero-stat-value {
                font-size: 24px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 18px;
            }
            .section {
                padding: var(--section-gap-mobile) 0;
            }
            .page-hero {
                padding: 40px 0 44px;
            }
            .page-hero h1 {
                font-size: 28px;
            }
            .page-hero .hero-sub {
                font-size: 15px;
            }
            .league-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .team-cards-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .scorer-item {
                padding: 12px 14px;
                gap: 10px;
            }
            .scorer-rank {
                font-size: 18px;
                width: 30px;
            }
            .scorer-avatar {
                width: 34px;
                height: 34px;
                font-size: 13px;
            }
            .scorer-name {
                font-size: 14px;
            }
            .scorer-goals {
                font-size: 22px;
                min-width: 30px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .cta-block {
                padding: 32px 20px;
            }
            .cta-block h3 {
                font-size: 22px;
            }
            .trend-block {
                padding: 20px;
            }
            .trend-chart-placeholder {
                height: 180px;
            }
            .chart-bar {
                width: 18px;
            }
            .chart-lines {
                gap: 4px;
                padding: 0 8px;
            }
            .section-title {
                font-size: 23px;
            }
            .league-card-header {
                padding: 14px 16px;
            }
            .league-table-mini thead th,
            .league-table-mini tbody td {
                padding: 7px 10px;
                font-size: 11px;
            }
            .hero-stats-row {
                gap: 8px;
            }
            .hero-stat-item {
                padding: 10px 14px;
                min-width: 70px;
            }
            .hero-stat-value {
                font-size: 20px;
            }
            .header-inner {
                gap: 12px;
            }
            .btn-subscribe {
                padding: 8px 14px;
                font-size: 12px;
            }
            .logo-text {
                font-size: 17px;
            }
            .logo-icon {
                width: 32px;
                height: 32px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 14px;
            }
            .page-hero h1 {
                font-size: 24px;
            }
            .team-cards-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .scorer-item {
                flex-wrap: wrap;
                gap: 8px;
            }
            .scorer-goals {
                font-size: 20px;
            }
            .trend-tabs {
                flex-wrap: wrap;
            }
            .trend-tab {
                font-size: 10px;
                padding: 5px 10px;
            }
            .section-title {
                font-size: 20px;
            }
            .hero-stat-item {
                padding: 8px 10px;
                min-width: 60px;
            }
            .hero-stat-value {
                font-size: 18px;
            }
            .hero-stat-label {
                font-size: 10px;
            }
            .btn-subscribe {
                padding: 7px 12px;
                font-size: 11px;
                border-radius: 20px;
            }
            .league-card-name {
                font-size: 14px;
            }
            .scorer-list {
                gap: 6px;
            }
        }

        @media (min-width: 1025px) {
            .mobile-drawer {
                display: none !important;
            }
        }

/* roulang page: category1 */
:root {
            --green-primary: #1FDF4B;
            --green-hover: #18C93E;
            --green-glow: rgba(31, 223, 75, 0.25);
            --black-asphalt: #121212;
            --black-card: #1A1A1A;
            --black-elevated: #1E1E1E;
            --white-lime: #FAFAF5;
            --white-pure: #FFFFFF;
            --red-danger: #FF3B3B;
            --yellow-alert: #FFD026;
            --blue-data: #6B7B8D;
            --blue-muted: #8A96A3;
            --gray-border: #E5E5DF;
            --gray-light: #F0F0EA;
            --gray-divider: #E8E8E2;
            --text-primary: #1A1A1A;
            --text-secondary: #5A6670;
            --text-muted: #8A94A0;
            --text-on-dark: #EAEAE5;
            --text-on-dark-muted: rgba(234, 234, 229, 0.6);
            --radius-card: 12px;
            --radius-btn: 6px;
            --radius-sm: 4px;
            --radius-pill: 24px;
            --shadow-card: 0px 8px 24px rgba(0, 0, 0, 0.04), 0px 2px 4px rgba(0, 0, 0, 0.02);
            --shadow-card-hover: 0px 16px 32px rgba(0, 0, 0, 0.12);
            --shadow-nav: 0px 1px 0px rgba(0, 0, 0, 0.06);
            --transition-fast: 0.18s ease;
            --transition-smooth: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --font-title: 'Inter', 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
            --font-body: 'Roboto', 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
            --font-mono: 'SF Mono', 'Roboto Mono', 'Consolas', 'Monaco', monospace;
            --max-width: 1320px;
            --col-gap: 24px;
            --section-gap-desktop: 120px;
            --section-gap-tablet: 80px;
            --section-gap-mobile: 60px;
            --nav-height: 72px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            font-weight: 400;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--white-lime);
            min-height: 100vh;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
            transition: all var(--transition-smooth);
        }

        input {
            font-family: inherit;
            border: none;
            outline: none;
        }

        ul,
        ol {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* ===== HEADER & NAV ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--white-lime);
            height: var(--nav-height);
            border-bottom: 1px solid var(--gray-border);
            box-shadow: var(--shadow-nav);
            display: flex;
            align-items: center;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            height: 100%;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--green-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .logo-icon::before {
            content: '';
            width: 20px;
            height: 20px;
            background: var(--black-asphalt);
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .logo-icon::after {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--green-primary);
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
        }

        .logo-text {
            font-family: var(--font-title);
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--green-primary);
            letter-spacing: -0.02em;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            font-family: var(--font-title);
            font-weight: 600;
            font-size: 0.875rem;
            color: var(--text-primary);
        }

        .nav-links a {
            position: relative;
            padding: 6px 0;
            white-space: nowrap;
            letter-spacing: -0.01em;
            transition: color var(--transition-fast);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--green-primary);
            border-radius: 1px;
            transition: width var(--transition-smooth);
        }

        .nav-links a:hover {
            color: var(--green-primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a.active {
            color: var(--green-primary);
        }

        .nav-links a.active::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .search-box {
            display: flex;
            align-items: center;
            background: var(--gray-light);
            border-radius: var(--radius-pill);
            padding: 8px 16px;
            gap: 8px;
            transition: all var(--transition-fast);
            border: 1px solid transparent;
        }

        .search-box:focus-within {
            border-color: var(--green-primary);
            background: var(--white-pure);
            box-shadow: 0 0 0 3px var(--green-glow);
        }

        .search-box .search-icon {
            width: 16px;
            height: 16px;
            color: var(--blue-data);
            flex-shrink: 0;
        }

        .search-box input {
            background: transparent;
            font-size: 0.85rem;
            color: var(--text-primary);
            width: 140px;
            font-family: var(--font-body);
        }

        .search-box input::placeholder {
            color: var(--blue-muted);
        }

        .btn-cta-nav {
            background: var(--green-primary);
            color: #000;
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 0.85rem;
            padding: 10px 20px;
            border-radius: var(--radius-pill);
            letter-spacing: -0.01em;
            white-space: nowrap;
            transition: all var(--transition-smooth);
            border: 2px solid var(--green-primary);
        }

        .btn-cta-nav:hover {
            background: var(--green-hover);
            border-color: var(--green-hover);
            transform: translateY(-1px);
        }

        .btn-cta-nav:active {
            transform: translateY(0);
            background: #14b835;
            border-color: #14b835;
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
            background: none;
            border: none;
        }

        .menu-toggle span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all var(--transition-smooth);
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile Nav Drawer */
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity var(--transition-smooth);
        }
        .mobile-nav-overlay.show {
            display: block;
            opacity: 1;
        }

        .mobile-nav-drawer {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            height: 100%;
            background: var(--white-lime);
            z-index: 1000;
            padding: 24px;
            padding-top: 80px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            transition: right var(--transition-smooth);
            box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
        }
        .mobile-nav-drawer.open {
            right: 0;
        }
        .mobile-nav-drawer a {
            font-family: var(--font-title);
            font-weight: 600;
            font-size: 1.05rem;
            padding: 12px 16px;
            border-radius: var(--radius-card);
            color: var(--text-primary);
            transition: all var(--transition-fast);
            display: block;
        }
        .mobile-nav-drawer a:hover,
        .mobile-nav-drawer a.active {
            background: rgba(31, 223, 75, 0.08);
            color: var(--green-primary);
        }
        .mobile-nav-drawer .search-box-mobile {
            display: flex;
            align-items: center;
            background: var(--gray-light);
            border-radius: var(--radius-pill);
            padding: 10px 16px;
            gap: 8px;
            margin-top: 8px;
        }
        .mobile-nav-drawer .search-box-mobile input {
            background: transparent;
            font-size: 0.9rem;
            width: 100%;
            font-family: var(--font-body);
        }

        /* ===== HERO ===== */
        .page-hero {
            position: relative;
            background-color: var(--black-asphalt);
            min-height: 520px;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 60px 0;
        }

        .hero-bg-image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.22;
            pointer-events: none;
        }

        .hero-geo-lines {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                radial-gradient(ellipse at 65% 40%, rgba(31, 223, 75, 0.06) 0%, transparent 55%),
                radial-gradient(ellipse at 25% 60%, rgba(31, 223, 75, 0.04) 0%, transparent 50%);
            z-index: 1;
        }

        .hero-geo-lines::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                linear-gradient(0deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        .hero-data-panel {
            background: var(--black-card);
            border-radius: var(--radius-card);
            padding: 28px 24px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
            overflow: hidden;
        }

        .hero-data-panel::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10%;
            bottom: 10%;
            width: 3px;
            background: var(--green-primary);
            border-radius: 0 3px 3px 0;
            box-shadow: 0 0 18px var(--green-glow);
        }

        .hero-data-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-left: 8px;
        }

        .hero-data-label {
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--green-primary);
        }

        .hero-live-dot {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--text-on-dark-muted);
            font-family: var(--font-title);
        }

        .hero-live-dot .dot {
            width: 8px;
            height: 8px;
            background: var(--red-danger);
            border-radius: 50%;
            animation: pulse-dot 1.6s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 4px var(--red-danger);
            }
            50% {
                opacity: 0.35;
                box-shadow: 0 0 10px var(--red-danger);
            }
        }

        .mini-standings-table {
            width: 100%;
            border-collapse: collapse;
            font-family: var(--font-mono);
            font-size: 0.82rem;
        }

        .mini-standings-table th {
            text-align: left;
            font-weight: 600;
            color: var(--blue-muted);
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            padding: 8px 6px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            font-family: var(--font-title);
        }

        .mini-standings-table td {
            padding: 9px 6px;
            color: var(--text-on-dark);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            white-space: nowrap;
        }

        .mini-standings-table .pos-col {
            width: 32px;
            text-align: center;
            font-weight: 700;
        }

        .mini-standings-table .team-col {
            font-family: var(--font-body);
            font-weight: 500;
        }

        .mini-standings-table .pts-col {
            font-weight: 700;
            color: var(--green-primary);
            text-align: center;
        }

        .mini-standings-table .zone-cl {
            color: var(--yellow-alert);
            font-weight: 700;
        }

        .mini-standings-table .zone-el {
            color: var(--red-danger);
            font-weight: 700;
        }

        .mini-standings-table tbody tr {
            transition: background var(--transition-fast);
        }

        .mini-standings-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.03);
        }

        .mini-standings-table tbody tr:nth-child(4) {
            border-bottom: 2px solid var(--yellow-alert);
        }

        .mini-standings-table tbody tr:nth-child(17) {
            border-top: 2px solid var(--red-danger);
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(31, 223, 75, 0.1);
            border: 1px solid rgba(31, 223, 75, 0.25);
            color: var(--green-primary);
            font-family: var(--font-title);
            font-weight: 600;
            font-size: 0.78rem;
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            width: fit-content;
            letter-spacing: 0.02em;
        }

        .hero-title {
            font-family: var(--font-title);
            font-weight: 800;
            font-size: 2.6rem;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: var(--text-on-dark);
            margin: 0;
        }

        .hero-title .highlight {
            color: var(--green-primary);
        }

        .hero-desc {
            font-size: 1.05rem;
            color: var(--text-on-dark-muted);
            line-height: 1.7;
            max-width: 460px;
        }

        .hero-cta-group {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 4px;
        }

        .btn-primary {
            background: var(--green-primary);
            color: #000;
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 0.95rem;
            padding: 13px 28px;
            border-radius: var(--radius-btn);
            letter-spacing: -0.01em;
            transition: all var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 2px solid var(--green-primary);
        }
        .btn-primary:hover {
            background: var(--green-hover);
            border-color: var(--green-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(31, 223, 75, 0.3);
        }
        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-outline-light {
            background: transparent;
            color: var(--text-on-dark);
            font-family: var(--font-title);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 13px 28px;
            border-radius: var(--radius-btn);
            letter-spacing: -0.01em;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-outline-light:hover {
            border-color: var(--green-primary);
            color: var(--green-primary);
            background: rgba(31, 223, 75, 0.06);
        }

        /* ===== SECTION COMMONS ===== */
        .section {
            padding: var(--section-gap-desktop) 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .section-header h2 {
            font-family: var(--font-title);
            font-weight: 800;
            font-size: 2rem;
            letter-spacing: -0.02em;
            color: var(--text-primary);
            margin-bottom: 12px;
            line-height: 1.2;
        }
        .section-header p {
            font-size: 1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .section-dark {
            background: var(--black-asphalt);
            color: var(--text-on-dark);
        }
        .section-dark .section-header h2 {
            color: var(--text-on-dark);
        }
        .section-dark .section-header p {
            color: var(--text-on-dark-muted);
        }

        /* ===== LEAGUE COVERAGE GRID ===== */
        .league-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--col-gap);
        }

        .league-card {
            background: var(--white-pure);
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            text-align: center;
            border: 1px solid transparent;
            cursor: default;
        }
        .league-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            border-color: var(--green-primary);
        }
        .league-card .league-icon {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-sm);
            margin: 0 auto 16px;
            overflow: hidden;
            background: var(--gray-light);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .league-card .league-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .league-card h3 {
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 6px;
            color: var(--text-primary);
            letter-spacing: -0.01em;
        }
        .league-card .league-stat {
            font-family: var(--font-mono);
            font-size: 0.8rem;
            color: var(--blue-data);
            font-weight: 500;
        }
        .league-card .league-badge {
            display: inline-block;
            background: rgba(31, 223, 75, 0.08);
            color: var(--green-primary);
            font-size: 0.7rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: var(--radius-pill);
            margin-top: 10px;
            font-family: var(--font-title);
            letter-spacing: 0.03em;
        }

        /* ===== SANDWICH LAYOUT ===== */
        .sandwich-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: var(--col-gap);
            align-items: stretch;
        }

        .sandwich-main {
            background: var(--white-pure);
            border-radius: var(--radius-card);
            padding: 32px 28px;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
            gap: 20px;
            border-left: 3px solid var(--green-primary);
            transition: all var(--transition-smooth);
        }
        .sandwich-main:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .sandwich-main h3 {
            font-family: var(--font-title);
            font-weight: 800;
            font-size: 1.3rem;
            letter-spacing: -0.02em;
        }
        .sandwich-main .trend-placeholder {
            background: var(--gray-light);
            border-radius: var(--radius-card);
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blue-muted);
            font-family: var(--font-mono);
            font-size: 0.85rem;
            position: relative;
            overflow: hidden;
        }
        .sandwich-main .trend-placeholder::after {
            content: '';
            position: absolute;
            bottom: 30px;
            left: 10%;
            width: 80%;
            height: 2px;
            background: linear-gradient(90deg, var(--green-primary), var(--green-primary) 60%, var(--yellow-alert) 80%, var(--red-danger));
            border-radius: 1px;
            opacity: 0.6;
        }

        .sandwich-stack {
            display: flex;
            flex-direction: column;
            gap: var(--col-gap);
        }
        .sandwich-card {
            background: var(--white-pure);
            border-radius: var(--radius-card);
            padding: 24px 20px;
            box-shadow: var(--shadow-card);
            flex: 1;
            transition: all var(--transition-smooth);
            border: 1px solid transparent;
        }
        .sandwich-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            border-color: var(--green-primary);
        }
        .sandwich-card h4 {
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: -0.01em;
            margin-bottom: 8px;
            color: var(--text-primary);
        }
        .sandwich-card p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .sandwich-card .mini-stat {
            font-family: var(--font-mono);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--green-primary);
            margin: 8px 0;
        }

        /* ===== FEATURE CARDS ===== */
        .feature-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--col-gap);
        }
        .feature-card {
            background: var(--white-pure);
            border-radius: var(--radius-card);
            padding: 28px 24px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            border: 1px solid transparent;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .feature-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            border-color: var(--green-primary);
        }
        .feature-card .fc-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-sm);
            background: rgba(31, 223, 75, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        .feature-card h4 {
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 1.05rem;
            letter-spacing: -0.01em;
            color: var(--text-primary);
        }
        .feature-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.65;
        }
        .feature-card .fc-tag {
            font-family: var(--font-title);
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--green-primary);
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }

        /* ===== SCENARIO CARDS ===== */
        .scenario-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--col-gap);
        }
        .scenario-card {
            background: var(--white-pure);
            border-radius: var(--radius-card);
            padding: 28px 24px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            text-align: center;
            border: 1px solid transparent;
        }
        .scenario-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            border-color: var(--green-primary);
        }
        .scenario-card .sc-icon {
            font-size: 2.4rem;
            margin-bottom: 14px;
            display: block;
        }
        .scenario-card h4 {
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 1.05rem;
            letter-spacing: -0.01em;
            margin-bottom: 8px;
        }
        .scenario-card p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ===== FAQ ===== */
        .faq-list {
            max-width: 780px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .faq-item {
            border-bottom: 1px solid var(--gray-divider);
            cursor: pointer;
            transition: all var(--transition-fast);
        }
        .faq-item:first-child {
            border-top: 1px solid var(--gray-divider);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0;
            gap: 16px;
            font-family: var(--font-title);
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: -0.01em;
            color: var(--text-primary);
            transition: color var(--transition-fast);
            text-align: left;
            width: 100%;
        }
        .faq-item:hover .faq-question {
            color: var(--green-primary);
        }
        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 700;
            transition: all var(--transition-smooth);
            color: var(--blue-data);
            background: var(--gray-light);
        }
        .faq-item.open .faq-icon {
            color: var(--green-primary);
            background: rgba(31, 223, 75, 0.1);
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 0;
            font-size: 0.92rem;
            color: var(--text-secondary);
            line-height: 1.7;
            padding-right: 40px;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 0 20px 0;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: var(--black-asphalt);
            text-align: center;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 300px;
            height: 3px;
            background: var(--green-primary);
            border-radius: 0 0 3px 3px;
            box-shadow: 0 0 30px var(--green-glow);
        }
        .cta-section h2 {
            font-family: var(--font-title);
            font-weight: 800;
            font-size: 2rem;
            letter-spacing: -0.02em;
            color: var(--text-on-dark);
            margin-bottom: 12px;
        }
        .cta-section p {
            color: var(--text-on-dark-muted);
            font-size: 1rem;
            max-width: 500px;
            margin: 0 auto 28px;
            line-height: 1.7;
        }
        .cta-section .btn-primary {
            font-size: 1rem;
            padding: 15px 36px;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: var(--black-asphalt);
            color: var(--text-on-dark);
            padding: 56px 0 32px;
            font-size: 0.88rem;
            line-height: 1.8;
        }
        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .site-footer h4 {
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: -0.01em;
            margin-bottom: 14px;
            color: var(--text-on-dark);
        }
        .site-footer .footer-col p {
            color: var(--text-on-dark-muted);
            font-size: 0.85rem;
            line-height: 1.7;
        }
        .site-footer .footer-col a,
        .site-footer .footer-col span {
            display: block;
            color: var(--text-on-dark-muted);
            font-size: 0.85rem;
            transition: color var(--transition-fast);
            cursor: default;
        }
        .site-footer .footer-col a:hover {
            color: var(--green-primary);
            cursor: pointer;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            text-align: center;
            color: var(--text-on-dark-muted);
            font-size: 0.8rem;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 6px;
            margin-bottom: 12px;
            align-items: center;
        }
        .footer-links a,
        .footer-links span {
            color: var(--text-on-dark-muted);
            font-size: 0.8rem;
            cursor: default;
        }
        .footer-links a:hover {
            color: var(--green-primary);
            cursor: pointer;
        }
        .footer-friendly {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin: 10px 0;
            font-size: 0.75rem;
            color: var(--text-on-dark-muted);
        }
        .footer-friendly span {
            opacity: 0.55;
            cursor: default;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero-title {
                font-size: 2rem;
            }
            .hero-data-panel {
                order: -1;
                max-width: 600px;
                margin: 0 auto;
                width: 100%;
            }
            .hero-content {
                text-align: center;
                align-items: center;
            }
            .hero-desc {
                max-width: 100%;
            }
            .league-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .sandwich-grid {
                grid-template-columns: 1fr;
            }
            .feature-cards {
                grid-template-columns: repeat(2, 1fr);
            }
            .scenario-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .site-footer .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
            .section {
                padding: var(--section-gap-tablet) 0;
            }
            .nav-links {
                gap: 18px;
                font-size: 0.8rem;
            }
            .search-box input {
                width: 100px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --nav-height: 60px;
            }
            .nav-links {
                display: none;
            }
            .header-actions .search-box {
                display: none;
            }
            .header-actions .btn-cta-nav {
                font-size: 0.78rem;
                padding: 8px 16px;
            }
            .menu-toggle {
                display: flex;
            }
            .hero-title {
                font-size: 1.6rem;
            }
            .hero-desc {
                font-size: 0.92rem;
            }
            .hero-inner {
                gap: 24px;
            }
            .hero-data-panel {
                padding: 18px 14px;
            }
            .mini-standings-table {
                font-size: 0.7rem;
            }
            .mini-standings-table th,
            .mini-standings-table td {
                padding: 6px 4px;
            }
            .league-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .league-card {
                padding: 16px 12px;
            }
            .feature-cards {
                grid-template-columns: 1fr;
            }
            .scenario-grid {
                grid-template-columns: 1fr;
            }
            .sandwich-grid {
                grid-template-columns: 1fr;
            }
            .site-footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .section {
                padding: var(--section-gap-mobile) 0;
            }
            .section-header h2 {
                font-size: 1.5rem;
            }
            .section-header {
                margin-bottom: 36px;
            }
            .cta-section h2 {
                font-size: 1.5rem;
            }
            .hero-cta-group {
                flex-direction: column;
                width: 100%;
                align-items: center;
            }
            .hero-cta-group .btn-primary,
            .hero-cta-group .btn-outline-light {
                width: 100%;
                justify-content: center;
            }
            .btn-cta-nav {
                display: none;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .hero-title {
                font-size: 1.35rem;
            }
            .hero-data-panel {
                padding: 14px 10px;
            }
            .mini-standings-table {
                font-size: 0.65rem;
            }
            .mini-standings-table th,
            .mini-standings-table td {
                padding: 4px 2px;
            }
            .league-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .hero-badge {
                font-size: 0.7rem;
                padding: 4px 10px;
            }
            .sandwich-main {
                padding: 20px 16px;
            }
            .sandwich-card {
                padding: 16px 14px;
            }
            .sandwich-card .mini-stat {
                font-size: 1.3rem;
            }
        }

/* roulang page: category5 */
:root {
            --green-primary: #1FDF4B;
            --green-hover: #18C93E;
            --green-dark: #14a832;
            --asphalt-black: #121212;
            --asphalt-light: #1a1a1a;
            --lime-white: #FAFAF5;
            --pure-white: #FFFFFF;
            --red-accent: #FF3B3B;
            --yellow-accent: #FFD026;
            --blue-gray: #6B7B8D;
            --text-primary: #1a1a1a;
            --text-secondary: #5A6670;
            --text-muted: #8a949e;
            --border-light: #E5E5DF;
            --border-subtle: #e8e8e3;
            --shadow-card: 0px 8px 24px rgba(0, 0, 0, 0.04), 0px 2px 4px rgba(0, 0, 0, 0.02);
            --shadow-hover: 0px 16px 32px rgba(0, 0, 0, 0.12);
            --shadow-nav: 0px 1px 0px rgba(0, 0, 0, 0.06);
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-icon: 4px;
            --radius-full: 24px;
            --font-heading: 'Inter', 'PingFang SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
            --font-body: 'Roboto', 'PingFang SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
            --font-mono: 'SF Mono', 'JetBrains Mono', 'Consolas', 'Monaco', monospace;
            --container-max: 1320px;
            --section-gap: 120px;
            --section-gap-tablet: 80px;
            --section-gap-mobile: 60px;
            --nav-height: 72px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-body);
            font-weight: 400;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--lime-white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
            font-family: inherit;
            font-size: inherit;
        }

        input {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 40px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
        }

        /* ===== Header / Nav ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--lime-white);
            height: var(--nav-height);
            border-bottom: 1px solid var(--border-light);
            box-shadow: var(--shadow-nav);
            display: flex;
            align-items: center;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 40px;
            height: 100%;
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--green-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .logo-icon::after {
            content: '';
            width: 16px;
            height: 16px;
            background: var(--asphalt-black);
            border-radius: 50%;
            position: absolute;
        }

        .logo-icon::before {
            content: '';
            width: 28px;
            height: 3px;
            background: var(--asphalt-black);
            border-radius: 2px;
            position: absolute;
            transform: rotate(-30deg);
            top: 10px;
            left: 4px;
        }

        .logo-text {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 20px;
            letter-spacing: -0.02em;
            color: var(--asphalt-black);
            white-space: nowrap;
        }

        .logo-text span {
            color: var(--green-primary);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            border-radius: var(--radius-btn);
            transition: color 0.2s, background 0.2s;
            white-space: nowrap;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--green-primary);
            background: rgba(31, 223, 75, 0.05);
        }

        .nav-links a.active {
            color: var(--green-primary);
            font-weight: 700;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 16px;
            right: 16px;
            height: 2px;
            background: var(--green-primary);
            border-radius: 1px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .search-box {
            display: flex;
            align-items: center;
            background: #eef0ea;
            border-radius: var(--radius-full);
            padding: 8px 16px;
            gap: 8px;
            transition: background 0.2s;
        }

        .search-box:focus-within {
            background: #e2e5dc;
            box-shadow: 0 0 0 2px rgba(31, 223, 75, 0.2);
        }

        .search-box svg {
            width: 16px;
            height: 16px;
            color: var(--text-muted);
            flex-shrink: 0;
        }

        .search-box input {
            background: transparent;
            font-size: 14px;
            color: var(--text-primary);
            width: 140px;
            transition: width 0.3s;
        }

        .search-box input::placeholder {
            color: var(--text-muted);
        }

        .search-box input:focus {
            width: 180px;
        }

        .btn-cta-header {
            background: var(--green-primary);
            color: var(--asphalt-black);
            font-weight: 700;
            font-size: 14px;
            padding: 10px 20px;
            border-radius: var(--radius-full);
            transition: background 0.2s, transform 0.15s;
            white-space: nowrap;
            font-family: var(--font-heading);
            letter-spacing: -0.01em;
        }

        .btn-cta-header:hover {
            background: var(--green-hover);
            transform: translateY(-1px);
        }

        .btn-cta-header:active {
            transform: translateY(0);
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 8px;
            cursor: pointer;
        }

        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--asphalt-black);
            border-radius: 2px;
            transition: transform 0.25s, opacity 0.25s;
        }

        @media (max-width: 1024px) {
            .nav-links {
                gap: 2px;
            }
            .nav-links a {
                padding: 8px 10px;
                font-size: 13px;
            }
            .search-box input {
                width: 100px;
            }
            .search-box input:focus {
                width: 140px;
            }
            .header-inner {
                padding: 0 24px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: var(--nav-height);
                left: 0;
                right: 0;
                background: var(--lime-white);
                flex-direction: column;
                padding: 16px 20px;
                gap: 4px;
                border-bottom: 1px solid var(--border-light);
                box-shadow: var(--shadow-card);
                display: none;
                z-index: 99;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                padding: 12px 16px;
                font-size: 15px;
                border-radius: var(--radius-btn);
                width: 100%;
            }
            .nav-links a.active::after {
                display: none;
            }
            .nav-links a.active {
                background: rgba(31, 223, 75, 0.08);
            }
            .search-box {
                display: none;
            }
            .mobile-menu-btn {
                display: flex;
            }
            .header-actions {
                gap: 8px;
            }
            .btn-cta-header {
                padding: 8px 16px;
                font-size: 13px;
            }
            .header-inner {
                padding: 0 20px;
            }
        }

        @media (max-width: 520px) {
            .btn-cta-header {
                padding: 8px 14px;
                font-size: 12px;
            }
            .logo-text {
                font-size: 17px;
            }
            .logo-icon {
                width: 30px;
                height: 30px;
            }
        }

        /* ===== Main ===== */
        main {
            flex: 1;
        }

        .section {
            padding: var(--section-gap) 0;
        }

        @media (max-width: 1024px) {
            .section {
                padding: var(--section-gap-tablet) 0;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: var(--section-gap-mobile) 0;
            }
        }

        /* ===== Hero ===== */
        .wiki-hero {
            background: var(--asphalt-black);
            color: var(--lime-white);
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .wiki-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('/assets/images/backpic/back-3.webp') center/cover no-repeat;
            opacity: 0.18;
            pointer-events: none;
        }

        .wiki-hero .container {
            position: relative;
            z-index: 1;
        }

        .wiki-hero-content {
            max-width: 620px;
        }

        .wiki-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(31, 223, 75, 0.15);
            border: 1px solid rgba(31, 223, 75, 0.3);
            color: var(--green-primary);
            font-size: 13px;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: var(--radius-full);
            margin-bottom: 24px;
            font-family: var(--font-heading);
            letter-spacing: 0.02em;
        }

        .wiki-hero h1 {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 48px;
            letter-spacing: -0.02em;
            line-height: 1.15;
            margin-bottom: 20px;
            color: var(--pure-white);
        }

        .wiki-hero h1 span {
            color: var(--green-primary);
        }

        .wiki-hero-desc {
            font-size: 17px;
            line-height: 1.7;
            color: rgba(250, 250, 245, 0.8);
            margin-bottom: 32px;
        }

        .wiki-hero-stats {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }

        .wiki-stat-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .wiki-stat-num {
            font-family: var(--font-mono);
            font-size: 36px;
            font-weight: 800;
            color: var(--green-primary);
            letter-spacing: -0.03em;
            font-variant-numeric: tabular-nums;
        }

        .wiki-stat-label {
            font-size: 13px;
            color: rgba(250, 250, 245, 0.6);
            letter-spacing: 0.02em;
        }

        @media (max-width: 768px) {
            .wiki-hero {
                padding: 60px 0 50px;
            }
            .wiki-hero h1 {
                font-size: 32px;
            }
            .wiki-hero-desc {
                font-size: 15px;
            }
            .wiki-hero-content {
                max-width: 100%;
            }
            .wiki-hero::before {
                width: 100%;
                opacity: 0.08;
            }
            .wiki-stat-num {
                font-size: 28px;
            }
        }

        /* ===== Term Cards Grid ===== */
        .terms-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .term-card {
            background: var(--pure-white);
            border-radius: var(--radius-card);
            padding: 28px;
            box-shadow: var(--shadow-card);
            border-left: 3px solid transparent;
            transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
            cursor: default;
        }

        .term-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
            border-left-color: var(--green-primary);
        }

        .term-card-icon {
            width: 48px;
            height: 48px;
            background: rgba(31, 223, 75, 0.08);
            border-radius: var(--radius-icon);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            font-size: 22px;
            color: var(--green-primary);
            font-weight: 800;
            font-family: var(--font-heading);
        }

        .term-card h3 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 18px;
            letter-spacing: -0.01em;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .term-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.65;
        }

        @media (max-width: 1024px) {
            .terms-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 520px) {
            .terms-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== Section Headers ===== */
        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-header h2 {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 34px;
            letter-spacing: -0.02em;
            line-height: 1.2;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .section-header p {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 26px;
            }
            .section-header {
                margin-bottom: 32px;
            }
        }

        /* ===== Beginner Guide ===== */
        .guide-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            background: var(--pure-white);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        .guide-image {
            position: relative;
            height: 100%;
            min-height: 400px;
            overflow: hidden;
        }

        .guide-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .guide-block:hover .guide-image img {
            transform: scale(1.03);
        }

        .guide-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(18, 18, 18, 0.3), transparent 60%);
            pointer-events: none;
        }

        .guide-content {
            padding: 40px 40px 40px 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .guide-content h3 {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 26px;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
            color: var(--text-primary);
        }

        .guide-content p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .guide-steps {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .guide-steps li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 14px;
            color: var(--text-primary);
            font-weight: 600;
            line-height: 1.5;
        }

        .guide-step-num {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            background: var(--green-primary);
            color: var(--asphalt-black);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 14px;
            font-family: var(--font-mono);
        }

        .btn-outline-green {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 12px 24px;
            border: 2px solid var(--green-primary);
            color: var(--green-dark);
            font-weight: 700;
            font-size: 14px;
            border-radius: var(--radius-btn);
            transition: all 0.2s;
            font-family: var(--font-heading);
            letter-spacing: -0.01em;
            align-self: flex-start;
            margin-top: 8px;
        }

        .btn-outline-green:hover {
            background: var(--green-primary);
            color: var(--asphalt-black);
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .guide-block {
                grid-template-columns: 1fr;
                gap: 0;
            }
            .guide-image {
                min-height: 240px;
                order: -1;
            }
            .guide-content {
                padding: 28px;
            }
            .guide-content h3 {
                font-size: 22px;
            }
            .guide-image-overlay {
                background: linear-gradient(to bottom, rgba(18, 18, 18, 0.25), transparent 70%);
            }
        }

        /* ===== FAQ Accordion ===== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
        }

        .faq-item {
            border-bottom: 1px solid var(--border-subtle);
        }

        .faq-item:first-child {
            border-top: 1px solid var(--border-subtle);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 0;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 16px;
            color: var(--text-primary);
            text-align: left;
            transition: color 0.2s;
            gap: 16px;
            letter-spacing: -0.01em;
            cursor: pointer;
        }

        .faq-question:hover {
            color: var(--green-dark);
        }

        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 2px solid var(--text-muted);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-muted);
            transition: all 0.25s;
            font-family: var(--font-mono);
            line-height: 1;
        }

        .faq-item.open .faq-icon {
            border-color: var(--green-primary);
            color: var(--green-primary);
            background: rgba(31, 223, 75, 0.06);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 0;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 0 20px 0;
        }

        .faq-answer p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            padding-right: 40px;
        }

        @media (max-width: 768px) {
            .faq-question {
                font-size: 15px;
                padding: 16px 0;
            }
            .faq-answer p {
                padding-right: 0;
            }
        }

        /* ===== CTA Section ===== */
        .cta-section {
            background: var(--asphalt-black);
            color: var(--lime-white);
            text-align: center;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(31, 223, 75, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-section .container {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 34px;
            letter-spacing: -0.02em;
            margin-bottom: 14px;
        }

        .cta-section p {
            font-size: 16px;
            color: rgba(250, 250, 245, 0.7);
            margin-bottom: 32px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-cta-large {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--green-primary);
            color: var(--asphalt-black);
            font-weight: 800;
            font-size: 16px;
            padding: 14px 32px;
            border-radius: var(--radius-full);
            transition: all 0.2s;
            font-family: var(--font-heading);
            letter-spacing: -0.01em;
        }

        .btn-cta-large:hover {
            background: var(--green-hover);
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(31, 223, 75, 0.25);
        }

        .btn-cta-large:active {
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 60px 0;
            }
            .cta-section h2 {
                font-size: 26px;
            }
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--asphalt-black);
            color: rgba(250, 250, 245, 0.7);
            padding: 60px 0 36px;
            font-size: 14px;
            line-height: 1.8;
            margin-top: auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 16px;
            color: var(--lime-white);
            margin-bottom: 16px;
            letter-spacing: -0.01em;
        }

        .footer-col p {
            font-size: 13px;
            color: rgba(250, 250, 245, 0.55);
            line-height: 1.7;
        }

        .footer-col a,
        .footer-col span {
            display: block;
            font-size: 13px;
            color: rgba(250, 250, 245, 0.6);
            transition: color 0.2s;
            cursor: default;
        }

        .footer-col a:hover {
            color: var(--green-primary);
            cursor: pointer;
        }

        .footer-bottom {
            border-top: 1px solid rgba(250, 250, 245, 0.1);
            padding-top: 24px;
            text-align: center;
            font-size: 12px;
            color: rgba(250, 250, 245, 0.4);
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        .footer-links a,
        .footer-links span {
            font-size: 12px;
            color: rgba(250, 250, 245, 0.5);
            cursor: default;
        }

        .footer-links a:hover {
            color: var(--green-primary);
            cursor: pointer;
        }

        .footer-friendly {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-bottom: 8px;
        }

        .footer-friendly span {
            font-size: 12px;
            color: rgba(250, 250, 245, 0.35);
            cursor: default;
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
            .site-footer {
                padding: 40px 0 28px;
            }
        }

        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-links {
                flex-direction: column;
                align-items: center;
                gap: 4px;
            }
        }

/* roulang page: category4 */
:root {
            --brand-green: #1FDF4B;
            --brand-green-hover: #18C93E;
            --brand-green-dark: #14A832;
            --brand-green-glow: rgba(31, 223, 75, 0.25);
            --brand-green-subtle: rgba(31, 223, 75, 0.08);
            --asphalt-black: #121212;
            --asphalt-black-light: #1A1A1A;
            --asphalt-card: #1E1E1E;
            --lime-white: #FAFAF5;
            --lime-white-dark: #F0F0E8;
            --pure-white: #FFFFFF;
            --alert-red: #FF3B3B;
            --alert-red-subtle: rgba(255, 59, 59, 0.10);
            --referee-yellow: #FFD026;
            --referee-yellow-subtle: rgba(255, 208, 38, 0.12);
            --data-blue-gray: #6B7B8D;
            --data-blue-gray-light: #8A9AAB;
            --text-primary: #1A1A1A;
            --text-secondary: #5A6670;
            --text-weak: #8A929A;
            --text-on-dark: #E8E8E0;
            --text-on-dark-weak: rgba(232, 232, 224, 0.6);
            --border-light: #E5E5DF;
            --border-medium: #D5D5CF;
            --border-on-dark: rgba(255, 255, 255, 0.08);
            --radius-xs: 4px;
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-full: 24px;
            --shadow-card: 0px 8px 24px rgba(0, 0, 0, 0.04), 0px 2px 4px rgba(0, 0, 0, 0.02);
            --shadow-card-hover: 0px 16px 32px rgba(0, 0, 0, 0.12), 0px 4px 8px rgba(0, 0, 0, 0.04);
            --shadow-hero: 0px 20px 48px rgba(0, 0, 0, 0.18);
            --shadow-nav: 0px 1px 3px rgba(0, 0, 0, 0.04);
            --space-xs: 8px;
            --space-sm: 12px;
            --space-md: 20px;
            --space-lg: 28px;
            --space-xl: 40px;
            --space-2xl: 60px;
            --space-3xl: 80px;
            --space-4xl: 120px;
            --container-max: 1320px;
            --container-narrow: 960px;
            --nav-height: 72px;
            --font-heading: 'Inter', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --font-body: 'Roboto', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --font-mono: 'SF Mono', 'JetBrains Mono', 'Consolas', 'Monaco', monospace;
            --transition-fast: 0.15s ease;
            --transition-normal: 0.25s ease;
            --transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            font-weight: 400;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--lime-white);
            min-height: 100vh;
            overflow-x: hidden;
            letter-spacing: 0.01em;
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
            outline: none;
        }
        button:focus-visible,
        a:focus-visible,
        input:focus-visible,
        select:focus-visible {
            outline: 2px solid var(--brand-green);
            outline-offset: 3px;
            border-radius: var(--radius-xs);
        }

        input,
        select {
            font-family: inherit;
            font-size: inherit;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--space-lg);
        }
        .container-narrow {
            max-width: var(--container-narrow);
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 var(--space-md);
            }
            :root {
                --space-4xl: 80px;
                --space-3xl: 60px;
                --space-2xl: 40px;
                --space-xl: 28px;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding: 0 var(--space-sm);
            }
            :root {
                --space-4xl: 60px;
                --space-3xl: 44px;
                --space-2xl: 32px;
                --space-xl: 22px;
            }
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--lime-white);
            height: var(--nav-height);
            border-bottom: 1px solid var(--border-light);
            box-shadow: var(--shadow-nav);
            display: flex;
            align-items: center;
        }
        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        .header-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.3rem;
            color: var(--brand-green);
            letter-spacing: -0.02em;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .header-logo .logo-icon {
            width: 34px;
            height: 34px;
            background: var(--brand-green);
            border-radius: var(--radius-xs);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--asphalt-black);
            font-weight: 900;
            font-size: 0.85rem;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }
        .header-logo .logo-icon::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            border: 2.5px solid var(--asphalt-black);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .header-logo .logo-icon::before {
            content: '';
            position: absolute;
            width: 2px;
            height: 10px;
            background: var(--asphalt-black);
            top: 4px;
            left: 50%;
            transform: translateX(-50%) rotate(-30deg);
            border-radius: 1px;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-secondary);
            border-radius: var(--radius-full);
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
            letter-spacing: 0.005em;
        }
        .nav-links a:hover {
            color: var(--text-primary);
            background: var(--brand-green-subtle);
        }
        .nav-links a.active {
            color: var(--brand-green-dark);
            background: var(--brand-green-subtle);
            font-weight: 700;
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 2.5px;
            background: var(--brand-green);
            border-radius: 2px;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .search-box {
            position: relative;
            display: flex;
            align-items: center;
        }
        .search-box input {
            width: 180px;
            height: 40px;
            border-radius: var(--radius-full);
            border: 1px solid var(--border-light);
            background: var(--pure-white);
            padding: 0 16px 0 38px;
            font-size: 0.875rem;
            color: var(--text-primary);
            transition: all var(--transition-fast);
        }
        .search-box input:focus {
            width: 220px;
            border-color: var(--brand-green);
            box-shadow: 0 0 0 3px var(--brand-green-glow);
            outline: none;
        }
        .search-box .search-icon {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-weak);
            pointer-events: none;
            font-size: 0.9rem;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 22px;
            background: var(--brand-green);
            color: #0D0D0D;
            font-weight: 700;
            font-size: 0.875rem;
            border-radius: var(--radius-full);
            border: none;
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.005em;
            font-family: var(--font-heading);
        }
        .btn-primary:hover {
            background: var(--brand-green-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(31, 223, 75, 0.3);
        }
        .btn-primary:active {
            transform: translateY(0);
            background: var(--brand-green-dark);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 9px 20px;
            background: transparent;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 0.875rem;
            border-radius: var(--radius-full);
            border: 1.5px solid var(--border-medium);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
            font-family: var(--font-heading);
        }
        .btn-outline:hover {
            border-color: var(--brand-green);
            color: var(--brand-green-dark);
            background: var(--brand-green-subtle);
        }
        .btn-lg {
            padding: 14px 32px;
            font-size: 1rem;
            border-radius: var(--radius-full);
        }
        .mobile-menu-toggle {
            display: none;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-light);
            background: var(--pure-white);
            cursor: pointer;
            flex-shrink: 0;
        }
        .mobile-menu-toggle span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--text-primary);
            position: relative;
            transition: all var(--transition-fast);
        }
        .mobile-menu-toggle span::before,
        .mobile-menu-toggle span::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 2px;
            background: var(--text-primary);
            transition: all var(--transition-fast);
            left: 0;
        }
        .mobile-menu-toggle span::before {
            top: -7px;
        }
        .mobile-menu-toggle span::after {
            top: 7px;
        }
        .mobile-menu-toggle.open span {
            background: transparent;
        }
        .mobile-menu-toggle.open span::before {
            top: 0;
            transform: rotate(45deg);
        }
        .mobile-menu-toggle.open span::after {
            top: 0;
            transform: rotate(-45deg);
        }
        .mobile-drawer {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--lime-white);
            z-index: 999;
            padding: var(--space-lg);
            flex-direction: column;
            gap: 4px;
            overflow-y: auto;
            border-top: 1px solid var(--border-light);
        }
        .mobile-drawer.open {
            display: flex;
        }
        .mobile-drawer a {
            display: block;
            padding: 14px 20px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-secondary);
            border-radius: var(--radius-md);
            transition: all var(--transition-fast);
        }
        .mobile-drawer a:hover,
        .mobile-drawer a.active {
            background: var(--brand-green-subtle);
            color: var(--brand-green-dark);
        }
        .mobile-drawer .mobile-search {
            margin-top: var(--space-md);
            position: relative;
        }
        .mobile-drawer .mobile-search input {
            width: 100%;
            height: 44px;
            border-radius: var(--radius-full);
            border: 1px solid var(--border-light);
            background: var(--pure-white);
            padding: 0 16px 0 40px;
            font-size: 0.9rem;
        }
        .mobile-drawer .mobile-search .search-icon {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-weak);
        }

        @media (max-width: 1024px) {
            .nav-links a {
                padding: 6px 10px;
                font-size: 0.8rem;
            }
            .search-box input {
                width: 140px;
            }
            .search-box input:focus {
                width: 160px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .search-box {
                display: none;
            }
            .header-actions .btn-primary {
                display: none;
            }
            .mobile-menu-toggle {
                display: flex;
            }
            .header-logo {
                font-size: 1.1rem;
            }
            .header-logo .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 0.7rem;
            }
        }

        .site-footer {
            background: var(--asphalt-black);
            color: var(--text-on-dark);
            padding: var(--space-4xl) 0 var(--space-xl);
            margin-top: var(--space-4xl);
        }
        .site-footer .container {
            max-width: var(--container-max);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.3fr;
            gap: var(--space-3xl);
            padding-bottom: var(--space-2xl);
            border-bottom: 1px solid var(--border-on-dark);
        }
        .footer-col h4 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1rem;
            color: var(--pure-white);
            margin-bottom: var(--space-md);
            letter-spacing: -0.01em;
        }
        .footer-col p {
            font-size: 0.875rem;
            color: var(--text-on-dark-weak);
            line-height: 1.6;
        }
        .footer-col a,
        .footer-col span {
            display: block;
            font-size: 0.875rem;
            color: var(--text-on-dark-weak);
            padding: 5px 0;
            transition: color var(--transition-fast);
            cursor: default;
        }
        .footer-col a {
            cursor: pointer;
        }
        .footer-col a:hover {
            color: var(--brand-green);
        }
        .footer-bottom {
            text-align: center;
            padding-top: var(--space-xl);
            font-size: 0.8rem;
            color: var(--text-on-dark-weak);
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            justify-content: center;
            align-items: center;
            margin-bottom: var(--space-sm);
        }
        .footer-links a,
        .footer-links span {
            font-size: 0.8rem;
            color: var(--text-on-dark-weak);
            cursor: default;
        }
        .footer-links a {
            cursor: pointer;
        }
        .footer-links a:hover {
            color: var(--brand-green);
        }
        .footer-friendly {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-top: var(--space-sm);
        }
        .footer-friendly span {
            font-size: 0.75rem;
            color: var(--text-on-dark-weak);
            background: rgba(255, 255, 255, 0.04);
            padding: 4px 12px;
            border-radius: var(--radius-full);
            cursor: default;
        }
        .footer-bottom p {
            margin-top: 4px;
            font-size: 0.75rem;
            color: rgba(232, 232, 224, 0.4);
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: var(--space-xl);
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
            }
        }

        .page-hero {
            position: relative;
            background: var(--asphalt-black);
            min-height: 520px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .page-hero .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            z-index: 1;
        }
        .page-hero .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(18, 18, 18, 0.6) 0%, rgba(18, 18, 18, 0.95) 100%);
            z-index: 2;
        }
        .page-hero .hero-content {
            position: relative;
            z-index: 3;
            padding: var(--space-4xl) 0;
            width: 100%;
        }
        .page-hero .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--brand-green-glow);
            color: var(--brand-green);
            font-weight: 700;
            font-size: 0.8rem;
            padding: 6px 14px;
            border-radius: var(--radius-full);
            margin-bottom: var(--space-md);
            letter-spacing: 0.02em;
            font-family: var(--font-heading);
            border: 1px solid rgba(31, 223, 75, 0.3);
        }
        .page-hero h1 {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 3rem;
            color: var(--pure-white);
            letter-spacing: -0.02em;
            line-height: 1.15;
            margin-bottom: var(--space-md);
            max-width: 700px;
        }
        .page-hero .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-on-dark-weak);
            max-width: 520px;
            line-height: 1.6;
            margin-bottom: var(--space-xl);
        }
        .hero-stats-row {
            display: flex;
            gap: var(--space-xl);
            flex-wrap: wrap;
            margin-top: var(--space-lg);
        }
        .hero-stat-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-on-dark);
            border-radius: var(--radius-md);
            padding: var(--space-lg);
            min-width: 140px;
            flex: 1;
            max-width: 200px;
            text-align: center;
        }
        .hero-stat-card .stat-value {
            font-family: var(--font-mono);
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--brand-green);
            letter-spacing: -0.03em;
            line-height: 1;
        }
        .hero-stat-card .stat-label {
            font-size: 0.8rem;
            color: var(--text-on-dark-weak);
            margin-top: 6px;
        }

        @media (max-width: 768px) {
            .page-hero {
                min-height: auto;
            }
            .page-hero h1 {
                font-size: 2rem;
            }
            .page-hero .hero-subtitle {
                font-size: 0.95rem;
            }
            .hero-stats-row {
                gap: var(--space-sm);
            }
            .hero-stat-card {
                min-width: 100px;
                padding: var(--space-md);
                flex: 1 1 calc(50% - 8px);
                max-width: none;
            }
            .hero-stat-card .stat-value {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 520px) {
            .page-hero h1 {
                font-size: 1.5rem;
            }
            .hero-stat-card {
                flex: 1 1 100%;
                max-width: none;
            }
        }

        .section {
            padding: var(--space-4xl) 0;
        }
        .section-sm {
            padding: var(--space-3xl) 0;
        }
        .section-title {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 2rem;
            color: var(--text-primary);
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: var(--space-sm);
        }
        .section-subtitle {
            font-size: 1rem;
            color: var(--text-secondary);
            max-width: 600px;
            line-height: 1.6;
            margin-bottom: var(--space-2xl);
        }
        .section-header {
            margin-bottom: var(--space-2xl);
        }
        .section-header.center {
            text-align: center;
        }
        .section-header.center .section-subtitle {
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 1.5rem;
            }
            .section-subtitle {
                font-size: 0.9rem;
            }
        }

        .value-card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-lg);
        }
        .value-card {
            background: var(--pure-white);
            border-radius: var(--radius-md);
            padding: var(--space-lg);
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-light);
            transition: all var(--transition-slow);
            position: relative;
            overflow: hidden;
        }
        .value-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--brand-green);
            border-radius: 0 3px 3px 0;
            transition: width var(--transition-normal);
        }
        .value-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .value-card:hover::before {
            width: 5px;
        }
        .value-card .card-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: var(--space-md);
            background: var(--brand-green-subtle);
            color: var(--brand-green-dark);
            flex-shrink: 0;
        }
        .value-card h3 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-primary);
            margin-bottom: var(--space-xs);
            letter-spacing: -0.01em;
        }
        .value-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .value-card-grid {
                grid-template-columns: 1fr 1fr;
                gap: var(--space-md);
            }
        }
        @media (max-width: 520px) {
            .value-card-grid {
                grid-template-columns: 1fr;
            }
        }

        .player-rank-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
            background: var(--pure-white);
            border: 1px solid var(--border-light);
        }
        .player-rank-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
        }
        .player-rank-table thead th {
            background: var(--asphalt-black-light);
            color: var(--text-on-dark);
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            padding: 14px 16px;
            text-align: left;
            white-space: nowrap;
            border-bottom: 2px solid var(--brand-green);
        }
        .player-rank-table tbody td {
            padding: 14px 16px;
            font-size: 0.9rem;
            color: var(--text-primary);
            border-bottom: 1px solid var(--border-light);
            white-space: nowrap;
        }
        .player-rank-table tbody tr {
            transition: background var(--transition-fast);
        }
        .player-rank-table tbody tr:hover {
            background: var(--brand-green-subtle);
        }
        .player-rank-table .rank-num {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--brand-green-dark);
        }
        .player-rank-table .rank-num.top {
            color: var(--alert-red);
        }
        .player-rank-table .player-cell {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .player-cell .player-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--border-light);
            flex-shrink: 0;
            overflow: hidden;
        }
        .player-cell .player-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .player-cell .player-name {
            font-weight: 600;
            color: var(--text-primary);
        }
        .player-cell .player-club {
            font-size: 0.75rem;
            color: var(--text-weak);
        }
        .price-tag {
            font-family: var(--font-mono);
            font-weight: 700;
            color: var(--brand-green-dark);
            font-size: 0.95rem;
        }
        .price-change-up {
            color: var(--brand-green-dark);
            font-weight: 600;
            font-size: 0.8rem;
        }
        .price-change-down {
            color: var(--alert-red);
            font-weight: 600;
            font-size: 0.8rem;
        }
        .price-change-stable {
            color: var(--referee-yellow);
            font-weight: 600;
            font-size: 0.8rem;
        }

        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-sm);
            margin-bottom: var(--space-lg);
            align-items: center;
        }
        .filter-bar select {
            height: 40px;
            padding: 0 32px 0 14px;
            border-radius: var(--radius-full);
            border: 1px solid var(--border-light);
            background: var(--pure-white);
            font-size: 0.85rem;
            color: var(--text-primary);
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7B8D' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            transition: all var(--transition-fast);
            font-family: var(--font-body);
            min-width: 130px;
        }
        .filter-bar select:focus {
            border-color: var(--brand-green);
            box-shadow: 0 0 0 3px var(--brand-green-glow);
            outline: none;
        }
        .filter-bar .filter-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 6px 14px;
            border-radius: var(--radius-full);
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition-fast);
            border: 1px solid var(--border-light);
            background: var(--pure-white);
            color: var(--text-secondary);
            white-space: nowrap;
        }
        .filter-bar .filter-tag:hover {
            border-color: var(--brand-green);
            color: var(--brand-green-dark);
        }
        .filter-bar .filter-tag.active-filter {
            background: var(--brand-green-subtle);
            border-color: var(--brand-green);
            color: var(--brand-green-dark);
            font-weight: 700;
        }
        .filter-bar .filter-label {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--text-weak);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            margin-right: 4px;
        }

        @media (max-width: 520px) {
            .filter-bar {
                gap: 8px;
            }
            .filter-bar select {
                min-width: 100px;
                font-size: 0.78rem;
                height: 36px;
            }
            .filter-bar .filter-tag {
                font-size: 0.72rem;
                padding: 5px 10px;
            }
        }

        .rumor-list {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
        }
        .rumor-card {
            display: flex;
            align-items: stretch;
            background: var(--pure-white);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition-slow);
            position: relative;
        }
        .rumor-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--brand-green);
            border-radius: 0 3px 3px 0;
            transition: width var(--transition-normal);
            z-index: 1;
        }
        .rumor-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .rumor-card:hover::before {
            width: 5px;
        }
        .rumor-card .rumor-image {
            width: 200px;
            flex-shrink: 0;
            overflow: hidden;
            background: var(--asphalt-card);
            position: relative;
        }
        .rumor-card .rumor-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .rumor-card .rumor-body {
            padding: var(--space-lg);
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: var(--space-xs);
        }
        .rumor-card .rumor-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.72rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: var(--radius-full);
            width: fit-content;
            letter-spacing: 0.02em;
        }
        .rumor-tag.hot {
            background: var(--alert-red-subtle);
            color: var(--alert-red);
        }
        .rumor-tag.ongoing {
            background: var(--referee-yellow-subtle);
            color: #b89500;
        }
        .rumor-tag.rumored {
            background: var(--brand-green-subtle);
            color: var(--brand-green-dark);
        }
        .rumor-card h3 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--text-primary);
            letter-spacing: -0.01em;
            line-height: 1.35;
        }
        .rumor-card .rumor-meta {
            font-size: 0.8rem;
            color: var(--text-weak);
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .rumor-card .rumor-excerpt {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .rumor-card {
                flex-direction: column;
            }
            .rumor-card .rumor-image {
                width: 100%;
                height: 180px;
            }
            .rumor-card .rumor-body {
                padding: var(--space-md);
            }
            .rumor-card h3 {
                font-size: 0.95rem;
            }
        }

        .player-profile-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-lg);
        }
        .player-profile-card {
            background: var(--pure-white);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition-slow);
            text-align: center;
        }
        .player-profile-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .player-profile-card .profile-img-wrap {
            width: 100%;
            height: 220px;
            background: var(--asphalt-card);
            overflow: hidden;
            position: relative;
        }
        .player-profile-card .profile-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .player-profile-card .profile-body {
            padding: var(--space-lg) var(--space-md);
        }
        .player-profile-card .profile-name {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.15rem;
            color: var(--text-primary);
            letter-spacing: -0.01em;
            margin-bottom: 4px;
        }
        .player-profile-card .profile-club {
            font-size: 0.8rem;
            color: var(--text-weak);
            margin-bottom: var(--space-sm);
        }
        .player-profile-card .profile-stats {
            display: flex;
            justify-content: center;
            gap: var(--space-lg);
            margin-top: var(--space-sm);
            padding-top: var(--space-sm);
            border-top: 1px solid var(--border-light);
        }
        .profile-stat-mini {
            text-align: center;
        }
        .profile-stat-mini .stat-num {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--brand-green-dark);
        }
        .profile-stat-mini .stat-desc {
            font-size: 0.7rem;
            color: var(--text-weak);
        }
        .profile-price-badge {
            display: inline-block;
            background: var(--brand-green-subtle);
            color: var(--brand-green-dark);
            font-weight: 700;
            font-family: var(--font-mono);
            font-size: 0.9rem;
            padding: 6px 16px;
            border-radius: var(--radius-full);
            margin-top: var(--space-sm);
            border: 1px solid rgba(31, 223, 75, 0.2);
        }

        @media (max-width: 768px) {
            .player-profile-grid {
                grid-template-columns: 1fr 1fr;
                gap: var(--space-md);
            }
            .player-profile-card .profile-img-wrap {
                height: 180px;
            }
        }
        @media (max-width: 520px) {
            .player-profile-grid {
                grid-template-columns: 1fr;
            }
            .player-profile-card .profile-img-wrap {
                height: 200px;
            }
        }

        .data-insight-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-2xl);
            align-items: center;
            background: var(--pure-white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-light);
            overflow: hidden;
        }
        .data-insight-block .insight-visual {
            background: var(--asphalt-black-light);
            min-height: 360px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        .data-insight-block .insight-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.75;
        }
        .data-insight-block .insight-visual .chart-placeholder {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: var(--space-sm);
            color: var(--text-on-dark-weak);
        }
        .chart-placeholder .chart-icon {
            font-size: 3rem;
            opacity: 0.4;
        }
        .chart-placeholder .chart-text {
            font-size: 0.85rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            font-weight: 600;
        }
        .data-insight-block .insight-content {
            padding: var(--space-2xl) var(--space-xl);
        }
        .data-insight-block .insight-content h3 {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.5rem;
            letter-spacing: -0.02em;
            margin-bottom: var(--space-md);
            color: var(--text-primary);
        }
        .data-insight-block .insight-content p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: var(--space-md);
        }
        .insight-metrics {
            display: flex;
            gap: var(--space-xl);
            flex-wrap: wrap;
        }
        .insight-metric {
            text-align: center;
            min-width: 80px;
        }
        .insight-metric .metric-value {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--brand-green-dark);
        }
        .insight-metric .metric-label {
            font-size: 0.75rem;
            color: var(--text-weak);
            margin-top: 2px;
        }

        @media (max-width: 768px) {
            .data-insight-block {
                grid-template-columns: 1fr;
            }
            .data-insight-block .insight-visual {
                min-height: 240px;
            }
            .data-insight-block .insight-content {
                padding: var(--space-lg);
            }
            .data-insight-block .insight-content h3 {
                font-size: 1.2rem;
            }
            .insight-metric .metric-value {
                font-size: 1.4rem;
            }
        }

        .faq-section {
            background: var(--pure-white);
            border-radius: var(--radius-lg);
            padding: var(--space-3xl) var(--space-2xl);
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-light);
        }
        .faq-list {
            display: flex;
            flex-direction: column;
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            border-bottom: 1px solid var(--border-light);
            padding: var(--space-md) 0;
            cursor: pointer;
            transition: all var(--transition-fast);
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--space-md);
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-primary);
            letter-spacing: -0.01em;
        }
        .faq-question .faq-toggle {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1.5px solid var(--border-medium);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all var(--transition-fast);
            font-size: 1rem;
            color: var(--text-weak);
            background: transparent;
        }
        .faq-item.open .faq-toggle {
            border-color: var(--brand-green);
            color: var(--brand-green-dark);
            background: var(--brand-green-subtle);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-normal);
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
            padding-right: 40px;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding-top: var(--space-sm);
            padding-bottom: var(--space-xs);
        }

        .cta-section {
            background: var(--asphalt-black);
            border-radius: var(--radius-lg);
            padding: var(--space-3xl) var(--space-2xl);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 0%, rgba(31, 223, 75, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }
        .cta-section .cta-content {
            position: relative;
            z-index: 1;
        }
        .cta-section h3 {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--pure-white);
            letter-spacing: -0.02em;
            margin-bottom: var(--space-sm);
        }
        .cta-section p {
            font-size: 1rem;
            color: var(--text-on-dark-weak);
            max-width: 500px;
            margin: 0 auto var(--space-xl);
            line-height: 1.6;
        }
        .cta-section .btn-primary {
            font-size: 1rem;
            padding: 14px 36px;
        }

        @media (max-width: 768px) {
            .cta-section h3 {
                font-size: 1.4rem;
            }
            .cta-section p {
                font-size: 0.9rem;
            }
        }

        .tag-group {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .tag {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            font-size: 0.75rem;
            font-weight: 600;
            border-radius: var(--radius-full);
            background: transparent;
            border: 1px solid var(--border-light);
            color: var(--text-secondary);
            white-space: nowrap;
            transition: all var(--transition-fast);
        }
        .tag.tag-green {
            border-color: var(--brand-green);
            color: var(--brand-green-dark);
            background: var(--brand-green-subtle);
        }
        .tag.tag-red {
            border-color: var(--alert-red);
            color: var(--alert-red);
            background: var(--alert-red-subtle);
        }
        .tag.tag-yellow {
            border-color: var(--referee-yellow);
            color: #b89500;
            background: var(--referee-yellow-subtle);
        }

        .divider {
            border: none;
            height: 1px;
            background: var(--border-light);
            margin: 0;
        }
        .text-center {
            text-align: center;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .hide-mobile {
                display: none;
            }
        }
