/* roulang page: index */
:root {
            --cpc-primary: #0f1115;
            --cpc-accent: #00e676;
            --cpc-gold: #ffab00;
            --cpc-bg-light: #f7f8f9;
            --cpc-card: #ffffff;
            --cpc-bg-dark: #161a20;
            --cpc-text-dark: #1b1f24;
            --cpc-text-muted: #5b6470;
            --cpc-border: #e2e5ea;
            --cpc-divider: #edeef0;
            --cpc-green: #008b3f;
            --cpc-red: #c62828;
            --cpc-radius-lg: 16px;
            --cpc-radius-md: 10px;
            --cpc-radius-sm: 8px;
            --cpc-shadow-sm: 0 4px 12px rgba(0,0,0,0.06);
            --cpc-shadow-lg: 0 10px 26px rgba(0,0,0,0.12);
            --cpc-shadow-dark: 0 8px 18px rgba(0,0,0,0.35);
            --cpc-font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            --cpc-font-mono: "Roboto Mono", "SF Mono", "Consolas", monospace;
            --cpc-sidebar-width: 240px;
            --cpc-sidebar-narrow: 72px;
            --cpc-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--cpc-font-sans);
            font-size: 16px;
            line-height: 1.85;
            color: var(--cpc-text-dark);
            background: var(--cpc-bg-light);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: var(--cpc-primary);
            text-decoration: none;
            transition: var(--cpc-transition);
        }
        a:hover { color: var(--cpc-accent); }
        a:focus-visible { outline: 2px solid var(--cpc-accent); outline-offset: 2px; border-radius: 4px; }

        img { max-width: 100%; display: block; }
        button:focus-visible { outline: 2px solid var(--cpc-accent); outline-offset: 2px; }
        input:focus-visible { outline: none; border-color: var(--cpc-accent); box-shadow: 0 0 0 3px rgba(0,230,118,0.15); }

        .mono { font-family: var(--cpc-font-mono); }

        /* ========== APP SHELL LAYOUT ========== */
        .app-shell { display: flex; min-height: 100vh; }

        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            width: var(--cpc-sidebar-width);
            height: 100vh;
            background: var(--cpc-primary);
            z-index: 1040;
            display: flex;
            flex-direction: column;
            transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .sidebar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 20px 18px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            min-height: 76px;
            flex-shrink: 0;
        }

        .sidebar-brand .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(0,230,118,0.2), rgba(0,230,118,0.05));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--cpc-accent);
            flex-shrink: 0;
            border: 1px solid rgba(0,230,118,0.3);
        }

        .sidebar-brand .brand-text {
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 1px;
            white-space: nowrap;
            opacity: 1;
            transition: opacity 0.25s;
        }
        .sidebar-brand .brand-text small {
            display: block;
            font-size: 10px;
            font-weight: 400;
            color: rgba(255,255,255,0.5);
            letter-spacing: 0.5px;
            margin-top: -2px;
        }

        .sidebar-nav {
            flex: 1;
            padding: 16px 0;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .sidebar-nav a.nav-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 18px;
            color: rgba(255,255,255,0.65);
            font-size: 14px;
            font-weight: 500;
            border-left: 3px solid transparent;
            transition: var(--cpc-transition);
            white-space: nowrap;
            position: relative;
        }

        .sidebar-nav a.nav-item i {
            font-size: 18px;
            width: 24px;
            text-align: center;
            flex-shrink: 0;
            transition: var(--cpc-transition);
        }

        .sidebar-nav a.nav-item .nav-text {
            opacity: 1;
            transition: opacity 0.25s;
        }

        .sidebar-nav a.nav-item:hover {
            color: #fff;
            background: rgba(0,230,118,0.08);
            border-left-color: rgba(0,230,118,0.4);
        }
        .sidebar-nav a.nav-item:hover i { transform: translateX(3px); }

        .sidebar-nav a.nav-item.active {
            color: #fff;
            background: rgba(0,230,118,0.12);
            border-left-color: var(--cpc-accent);
            font-weight: 600;
        }

        .sidebar-nav a.nav-item.home-link { margin-bottom: 8px; }

        .sidebar-footer {
            padding: 14px 18px;
            border-top: 1px solid rgba(255,255,255,0.08);
            font-size: 11px;
            color: rgba(255,255,255,0.35);
            white-space: nowrap;
            flex-shrink: 0;
        }

        .main-content {
            margin-left: var(--cpc-sidebar-width);
            flex: 1;
            min-height: 100vh;
            transition: margin-left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        /* ========== MOBILE TOP BAR ========== */
        .mobile-topbar {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 56px;
            background: var(--cpc-primary);
            z-index: 1035;
            align-items: center;
            padding: 0 16px;
            gap: 12px;
        }

        .mobile-topbar .hamburger-btn {
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--cpc-transition);
        }
        .mobile-topbar .hamburger-btn:hover { color: var(--cpc-accent); }

        .mobile-topbar .mobile-brand {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            flex: 1;
            text-align: center;
        }

        .mobile-drawer-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 1045;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }
        .mobile-drawer-overlay.show { opacity: 1; pointer-events: auto; }

        .mobile-drawer {
            position: fixed;
            top: 0;
            left: 0;
            width: 300px;
            height: 100vh;
            background: var(--cpc-primary);
            z-index: 1046;
            transform: translateX(-100%);
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }
        .mobile-drawer.open { transform: translateX(0); }
        .mobile-drawer .sidebar-brand { padding: 16px; min-height: 64px; }
        .mobile-drawer .sidebar-nav a.nav-item { padding: 14px 20px; font-size: 15px; }
        .mobile-drawer .sidebar-footer { padding: 12px 20px; }

        /* ========== COMMON SECTION STYLES ========== */
        .section-pad { padding: 96px 0; }
        .section-pad-sm { padding: 64px 0; }

        .section-label {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--cpc-text-muted);
            margin-bottom: 16px;
        }
        .section-label-accent { color: var(--cpc-accent); }

        .section-title {
            font-size: 32px;
            font-weight: 800;
            color: var(--cpc-primary);
            line-height: 1.25;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .section-title.light { color: #fff; }

        .section-desc {
            font-size: 16px;
            color: var(--cpc-text-muted);
            line-height: 1.85;
            max-width: 680px;
            margin-bottom: 40px;
        }
        .section-desc.light { color: rgba(255,255,255,0.65); }

        /* ========== HERO ========== */
        .hero-section {
            background: var(--cpc-primary);
            padding: 80px 0 100px;
            position: relative;
            overflow: hidden;
            min-height: 600px;
            display: flex;
            align-items: center;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(ellipse at 80% 30%, rgba(0,230,118,0.08) 0%, transparent 60%);
            pointer-events: none;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(0,230,118,0.05);
            pointer-events: none;
        }

        .hero-inner { position: relative; z-index: 2; }

        .hero-title {
            font-size: 56px;
            font-weight: 800;
            color: #fff;
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -1px;
            animation: heroFadeUp 0.8s ease-out forwards;
        }
        .hero-title .highlight {
            color: var(--cpc-accent);
            position: relative;
            display: inline-block;
        }
        .hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--cpc-accent);
            border-radius: 2px;
            opacity: 0.5;
        }

        .hero-subtitle {
            font-size: 18px;
            color: rgba(255,255,255,0.7);
            line-height: 1.8;
            max-width: 540px;
            margin-bottom: 32px;
            animation: heroFadeUp 0.8s ease-out 0.1s forwards;
            opacity: 0;
        }

        .hero-cta-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 40px;
            animation: heroFadeUp 0.8s ease-out 0.2s forwards;
            opacity: 0;
        }

        .btn-cpc-primary {
            background: var(--cpc-primary);
            color: #fff;
            padding: 14px 28px;
            border-radius: var(--cpc-radius-sm);
            font-weight: 600;
            font-size: 15px;
            border: 2px solid var(--cpc-primary);
            transition: var(--cpc-transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-cpc-primary:hover {
            background: var(--cpc-accent);
            border-color: var(--cpc-accent);
            color: var(--cpc-primary);
            transform: translateY(-2px);
            box-shadow: 0 10px 26px rgba(0,230,118,0.3);
        }

        .btn-cpc-secondary {
            background: transparent;
            color: #fff;
            padding: 14px 28px;
            border-radius: var(--cpc-radius-sm);
            font-weight: 600;
            font-size: 15px;
            border: 2px solid rgba(255,255,255,0.3);
            transition: var(--cpc-transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-cpc-secondary:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.5);
            color: #fff;
            transform: translateY(-2px);
        }

        .hero-data-row {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
            animation: heroFadeUp 0.8s ease-out 0.3s forwards;
            opacity: 0;
        }
        .hero-data-item .data-num {
            font-family: var(--cpc-font-mono);
            font-size: 28px;
            font-weight: 700;
            color: var(--cpc-accent);
            line-height: 1.2;
        }
        .hero-data-item .data-label {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            margin-top: 4px;
        }

        .hero-feature-card {
            background: var(--cpc-bg-dark);
            border-radius: var(--cpc-radius-lg);
            padding: 28px;
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: var(--cpc-shadow-dark);
            animation: heroFadeUp 0.9s ease-out 0.15s forwards;
            opacity: 0;
        }
        .hero-feature-card .recommend-badge {
            display: inline-block;
            background: var(--cpc-gold);
            color: var(--cpc-primary);
            font-size: 11px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }
        .hero-feature-card .match-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .hero-feature-card .match-row:last-child { border-bottom: none; }
        .hero-feature-card .match-team {
            color: #fff;
            font-weight: 600;
            font-size: 15px;
        }
        .hero-feature-card .match-odds {
            font-family: var(--cpc-font-mono);
            color: var(--cpc-accent);
            font-size: 14px;
            font-weight: 600;
        }
        .hero-feature-card .match-time {
            font-family: var(--cpc-font-mono);
            color: rgba(255,255,255,0.4);
            font-size: 12px;
        }

        .hero-img-wrap {
            position: relative;
            border-radius: var(--cpc-radius-lg);
            overflow: hidden;
            animation: heroFadeUp 0.9s ease-out 0.2s forwards;
            opacity: 0;
            aspect-ratio: 4/3;
        }
        .hero-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        .hero-img-wrap:hover img { transform: scale(1.02); }

        @keyframes heroFadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ========== PAIN SECTION ========== */
        .pain-section { background: var(--cpc-bg-light); }
        .pain-item {
            display: flex;
            gap: 20px;
            padding: 28px 0;
            border-bottom: 1px solid var(--cpc-divider);
            transition: var(--cpc-transition);
        }
        .pain-item:last-child { border-bottom: none; }
        .pain-item:hover { padding-left: 8px; }
        .pain-num {
            font-family: var(--cpc-font-mono);
            font-size: 48px;
            font-weight: 800;
            color: var(--cpc-border);
            line-height: 1;
            min-width: 70px;
            transition: var(--cpc-transition);
        }
        .pain-item:hover .pain-num { color: var(--cpc-accent); }
        .pain-content h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--cpc-primary);
            margin-bottom: 8px;
        }
        .pain-content p {
            font-size: 15px;
            color: var(--cpc-text-muted);
            margin-bottom: 0;
            line-height: 1.8;
        }

        /* ========== SOLUTION SECTION ========== */
        .solution-section { background: #fff; }
        .solution-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }
        .solution-card {
            background: var(--cpc-card);
            border-radius: var(--cpc-radius-lg);
            padding: 32px;
            box-shadow: var(--cpc-shadow-sm);
            border: 1px solid var(--cpc-border);
            transition: var(--cpc-transition);
            position: relative;
            overflow: hidden;
        }
        .solution-card:hover {
            box-shadow: var(--cpc-shadow-lg);
            transform: translateY(-4px);
            border-color: rgba(0,230,118,0.3);
        }
        .solution-card .solution-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(0,230,118,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--cpc-accent);
            margin-bottom: 16px;
            transition: var(--cpc-transition);
        }
        .solution-card:hover .solution-icon { background: var(--cpc-accent); color: var(--cpc-primary); }
        .solution-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--cpc-primary);
            margin-bottom: 10px;
        }
        .solution-card p {
            font-size: 14px;
            color: var(--cpc-text-muted);
            margin-bottom: 0;
            line-height: 1.8;
        }
        .solution-card .solution-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 12px;
            background: rgba(0,230,118,0.08);
            color: #008b3f;
            margin-top: 12px;
            letter-spacing: 0.5px;
        }

        /* ========== STATS SECTION ========== */
        .stats-section {
            background: var(--cpc-bg-dark);
            position: relative;
            overflow: hidden;
        }
        .stats-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0,230,118,0.06) 0%, transparent 70%);
            pointer-events: none;
        }
        .stat-card {
            text-align: center;
            padding: 32px 16px;
            border-radius: var(--cpc-radius-lg);
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            transition: var(--cpc-transition);
        }
        .stat-card:hover {
            background: rgba(0,230,118,0.05);
            border-color: rgba(0,230,118,0.2);
            transform: translateY(-4px);
        }
        .stat-number {
            font-family: var(--cpc-font-mono);
            font-size: 44px;
            font-weight: 800;
            color: var(--cpc-accent);
            line-height: 1.1;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 14px;
            color: rgba(255,255,255,0.55);
            font-weight: 400;
        }

        /* ========== ENTRY MATRIX ========== */
        .entry-matrix-section { background: #fff; }
        .entry-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .entry-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--cpc-bg-light);
            border: 1px solid var(--cpc-border);
            border-radius: var(--cpc-radius-md);
            padding: 20px 16px;
            transition: var(--cpc-transition);
            text-decoration: none;
            color: var(--cpc-primary);
        }
        .entry-item:hover {
            background: var(--cpc-primary);
            color: #fff;
            border-color: var(--cpc-primary);
            transform: translateY(-3px);
            box-shadow: var(--cpc-shadow-lg);
        }
        .entry-item i {
            font-size: 20px;
            color: var(--cpc-accent);
            flex-shrink: 0;
        }
        .entry-item span {
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
        }

        /* ========== DEEP CONTENT ========== */
        .deep-content-section { background: var(--cpc-bg-light); }
        .deep-content-wrapper {
            background: #fff;
            border-radius: var(--cpc-radius-lg);
            padding: 48px;
            box-shadow: var(--cpc-shadow-sm);
            border: 1px solid var(--cpc-border);
        }
        .deep-content-wrapper h2 {
            font-size: 26px;
            font-weight: 700;
            color: var(--cpc-primary);
            margin-bottom: 16px;
            line-height: 1.4;
        }
        .deep-content-wrapper h3 {
            font-size: 19px;
            font-weight: 700;
            color: var(--cpc-primary);
            margin-top: 28px;
            margin-bottom: 10px;
        }
        .deep-content-wrapper p {
            font-size: 15px;
            color: var(--cpc-text-dark);
            line-height: 1.9;
            margin-bottom: 16px;
        }
        .deep-content-wrapper ol {
            padding-left: 20px;
            margin-bottom: 16px;
        }
        .deep-content-wrapper ol li {
            font-size: 15px;
            line-height: 1.9;
            margin-bottom: 8px;
            color: var(--cpc-text-dark);
        }
        .deep-content-wrapper ul {
            padding-left: 20px;
            margin-bottom: 16px;
        }
        .deep-content-wrapper ul li {
            font-size: 15px;
            line-height: 1.9;
            margin-bottom: 8px;
            color: var(--cpc-text-dark);
        }
        .deep-content-wrapper blockquote {
            border-left: 4px solid var(--cpc-accent);
            background: rgba(0,230,118,0.05);
            padding: 16px 24px;
            border-radius: 0 var(--cpc-radius-md) var(--cpc-radius-md) 0;
            margin: 24px 0;
            font-size: 15px;
            color: var(--cpc-text-muted);
            font-style: italic;
        }
        .deep-content-img {
            border-radius: var(--cpc-radius-md);
            overflow: hidden;
            margin: 24px 0;
        }
        .deep-content-img img {
            width: 100%;
            aspect-ratio: 16/10;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .deep-content-img:hover img { transform: scale(1.02); }

        /* ========== TESTIMONIALS ========== */
        .testimonials-section { background: var(--cpc-bg-dark); }
        .testimonial-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--cpc-radius-lg);
            padding: 28px;
            transition: var(--cpc-transition);
            height: 100%;
        }
        .testimonial-card:hover {
            background: rgba(0,230,118,0.05);
            border-color: rgba(0,230,118,0.2);
            transform: translateY(-4px);
        }
        .testimonial-stars {
            color: var(--cpc-gold);
            font-size: 14px;
            margin-bottom: 12px;
            letter-spacing: 2px;
        }
        .testimonial-text {
            font-size: 14px;
            color: rgba(255,255,255,0.75);
            line-height: 1.8;
            margin-bottom: 16px;
            min-height: 80px;
        }
        .testimonial-user {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .testimonial-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--cpc-accent), var(--cpc-gold));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cpc-primary);
            font-weight: 700;
            font-size: 14px;
            flex-shrink: 0;
        }
        .testimonial-name {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
        }
        .testimonial-role {
            font-size: 12px;
            color: rgba(255,255,255,0.4);
        }

        /* ========== GUARANTEE BAR ========== */
        .guarantee-section { background: #fff; }
        .guarantee-bar {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .guarantee-item {
            text-align: center;
            padding: 28px 16px;
            border-radius: var(--cpc-radius-md);
            border: 1px solid var(--cpc-border);
            background: var(--cpc-bg-light);
            transition: var(--cpc-transition);
        }
        .guarantee-item:hover {
            border-color: rgba(0,230,118,0.3);
            background: #fff;
            box-shadow: var(--cpc-shadow-sm);
        }
        .guarantee-item i {
            font-size: 28px;
            color: var(--cpc-accent);
            margin-bottom: 12px;
        }
        .guarantee-item h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--cpc-primary);
            margin-bottom: 4px;
        }
        .guarantee-item p {
            font-size: 13px;
            color: var(--cpc-text-muted);
            margin-bottom: 0;
        }

        /* ========== NEWS SECTION ========== */
        .news-section { background: var(--cpc-bg-light); }
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .news-card {
            background: #fff;
            border-radius: var(--cpc-radius-md);
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: var(--cpc-shadow-sm);
            border: 1px solid var(--cpc-border);
            transition: var(--cpc-transition);
            cursor: pointer;
        }
        .news-card:hover {
            box-shadow: var(--cpc-shadow-lg);
            transform: translateY(-2px);
            border-color: rgba(0,230,118,0.25);
        }
        .news-date {
            font-family: var(--cpc-font-mono);
            font-size: 12px;
            color: var(--cpc-text-muted);
            text-align: center;
            min-width: 50px;
            flex-shrink: 0;
            line-height: 1.4;
        }
        .news-date .day {
            font-size: 22px;
            font-weight: 700;
            color: var(--cpc-primary);
            display: block;
        }
        .news-content {
            flex: 1;
            min-width: 0;
        }
        .news-content h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--cpc-primary);
            margin-bottom: 4px;
            transition: var(--cpc-transition);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .news-card:hover .news-content h3 { color: var(--cpc-accent); }
        .news-content p {
            font-size: 14px;
            color: var(--cpc-text-muted);
            margin-bottom: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .news-btn {
            flex-shrink: 0;
            font-size: 13px;
            font-weight: 600;
            color: var(--cpc-primary);
            border: 1px solid var(--cpc-border);
            padding: 8px 16px;
            border-radius: var(--cpc-radius-sm);
            transition: var(--cpc-transition);
            text-decoration: none;
            background: transparent;
        }
        .news-card:hover .news-btn {
            border-color: var(--cpc-accent);
            color: var(--cpc-accent);
            text-decoration: underline;
        }

        /* ========== BRAND INTRO ========== */
        .brand-intro-section { background: #fff; }
        .brand-intro-wrapper {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .brand-intro-wrapper p {
            font-size: 15px;
            color: var(--cpc-text-dark);
            line-height: 1.9;
            margin-bottom: 16px;
            text-align: justify;
        }
        .brand-intro-img {
            border-radius: var(--cpc-radius-lg);
            overflow: hidden;
            max-width: 600px;
            margin: 32px auto 0;
        }
        .brand-intro-img img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
        }

        /* ========== FAQ ========== */
        .faq-section { background: var(--cpc-bg-light); }
        .accordion-cpc .accordion-item {
            background: #fff;
            border: 1px solid var(--cpc-border);
            border-radius: var(--cpc-radius-md) !important;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: var(--cpc-shadow-sm);
        }
        .accordion-cpc .accordion-button {
            background: #fff;
            color: var(--cpc-primary);
            font-weight: 700;
            font-size: 16px;
            padding: 20px 24px;
            border: none;
            box-shadow: none;
            border-radius: var(--cpc-radius-md) !important;
            transition: var(--cpc-transition);
        }
        .accordion-cpc .accordion-button:not(.collapsed) {
            background: #fff;
            color: var(--cpc-primary);
            box-shadow: none;
        }
        .accordion-cpc .accordion-button:focus {
            box-shadow: none;
            border-color: var(--cpc-accent);
        }
        .accordion-cpc .accordion-button::after {
            transition: transform 0.3s ease;
        }
        .accordion-cpc .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
        }
        .accordion-cpc .accordion-body {
            font-size: 15px;
            color: var(--cpc-text-dark);
            line-height: 1.8;
            padding: 0 24px 20px 24px;
        }

        /* ========== FINAL CTA ========== */
        .final-cta-section {
            background: var(--cpc-primary);
            position: relative;
            overflow: hidden;
            padding: 80px 0;
        }
        .final-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 300px;
            background: radial-gradient(ellipse, rgba(0,230,118,0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .final-cta-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }
        .final-cta-content h2 {
            font-size: 36px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
            line-height: 1.3;
        }
        .final-cta-content h2 .highlight { color: var(--cpc-accent); }
        .final-cta-content p {
            font-size: 16px;
            color: rgba(255,255,255,0.65);
            max-width: 500px;
            margin: 0 auto 32px;
            line-height: 1.8;
        }
        .final-cta-form {
            display: flex;
            gap: 12px;
            max-width: 480px;
            margin: 0 auto 24px;
            flex-wrap: wrap;
        }
        .final-cta-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: var(--cpc-radius-sm);
            border: 1px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.06);
            color: #fff;
            font-size: 15px;
            transition: var(--cpc-transition);
        }
        .final-cta-form input::placeholder { color: rgba(255,255,255,0.35); }
        .final-cta-form input:focus {
            outline: none;
            border-color: var(--cpc-accent);
            box-shadow: 0 0 0 3px rgba(0,230,118,0.15);
            background: rgba(255,255,255,0.08);
        }
        .final-cta-form .btn-cpc-primary { white-space: nowrap; }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--cpc-primary);
            color: rgba(255,255,255,0.6);
            padding: 48px 0 24px;
            border-top: 1px solid rgba(255,255,255,0.06);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-brand h4 {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .footer-brand p {
            font-size: 13px;
            line-height: 1.8;
            color: rgba(255,255,255,0.45);
            margin-bottom: 0;
        }
        .footer-links h5 {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .footer-links a {
            display: block;
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            margin-bottom: 8px;
            transition: var(--cpc-transition);
        }
        .footer-links a:hover { color: var(--cpc-accent); padding-left: 4px; }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            font-size: 13px;
            color: rgba(255,255,255,0.4);
        }
        .footer-bottom a {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            transition: var(--cpc-transition);
        }
        .footer-bottom a:hover { color: var(--cpc-accent); }
        .footer-bottom .sep { color: rgba(255,255,255,0.25); }

        /* ========== BACK TO TOP ========== */
        .back-to-top {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--cpc-primary);
            color: #fff;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            z-index: 1050;
            box-shadow: var(--cpc-shadow-lg);
            transition: var(--cpc-transition);
            opacity: 0;
            pointer-events: none;
            transform: translateY(20px);
        }
        .back-to-top.visible {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }
        .back-to-top:hover {
            background: var(--cpc-accent);
            color: var(--cpc-primary);
            transform: translateY(-4px);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1199.98px) {
            :root {
                --cpc-sidebar-width: 72px;
            }
            .sidebar-brand .brand-text { display: none; }
            .sidebar-nav a.nav-item .nav-text { display: none; }
            .sidebar-nav a.nav-item { justify-content: center; padding: 12px 0; }
            .sidebar-nav a.nav-item i { font-size: 20px; }
            .sidebar-footer { display: none; }
            .hero-title { font-size: 44px; }
        }

        @media (max-width: 991.98px) {
            .sidebar { display: none; }
            .main-content { margin-left: 0; }
            .mobile-topbar { display: flex; }
            .section-pad { padding: 56px 0; }
            .section-pad-sm { padding: 40px 0; }
            .hero-section { padding: 100px 0 60px; min-height: auto; }
            .hero-title { font-size: 36px; }
            .entry-grid { grid-template-columns: repeat(2, 1fr); }
            .guarantee-bar { grid-template-columns: repeat(2, 1fr); }
            .deep-content-wrapper { padding: 28px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 767.98px) {
            .hero-title { font-size: 30px; }
            .hero-subtitle { font-size: 16px; }
            .solution-grid { grid-template-columns: 1fr; }
            .entry-grid { grid-template-columns: 1fr; }
            .guarantee-bar { grid-template-columns: 1fr; }
            .news-card { flex-wrap: wrap; gap: 12px; }
            .news-btn { width: 100%; text-align: center; }
            .stat-number { font-size: 32px; }
            .deep-content-wrapper { padding: 20px; }
            .deep-content-wrapper h2 { font-size: 22px; }
            .final-cta-content h2 { font-size: 26px; }
            .footer-grid { grid-template-columns: 1fr; gap: 20px; }
            .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 16px; }
        }

        @media (max-width: 575.98px) {
            .hero-cta-group { flex-direction: column; }
            .btn-cpc-primary, .btn-cpc-secondary, .final-cta-form .btn-cpc-primary { width: 100%; justify-content: center; }
            .hero-data-row { gap: 20px; }
            .final-cta-form { flex-direction: column; }
            .final-cta-form input { min-width: auto; text-align: center; }
            .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
        }

/* roulang page: category1 */
:root {
            --cpc-primary: #0f1115;
            --cpc-accent: #00e676;
            --cpc-gold: #ffab00;
            --cpc-bg-light: #f7f8f9;
            --cpc-card: #ffffff;
            --cpc-bg-dark: #161a20;
            --cpc-text-dark: #1b1f24;
            --cpc-text-muted: #5b6470;
            --cpc-border: #e2e5ea;
            --cpc-divider: #edeef0;
            --cpc-green: #008b3f;
            --cpc-red: #c62828;
            --cpc-radius-lg: 16px;
            --cpc-radius-md: 10px;
            --cpc-radius-sm: 8px;
            --cpc-shadow-sm: 0 4px 12px rgba(0,0,0,0.06);
            --cpc-shadow-lg: 0 10px 26px rgba(0,0,0,0.12);
            --cpc-shadow-dark: 0 8px 18px rgba(0,0,0,0.35);
            --cpc-font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            --cpc-font-mono: "Roboto Mono", "SF Mono", "Consolas", monospace;
            --cpc-sidebar-width: 240px;
            --cpc-sidebar-narrow: 72px;
            --cpc-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--cpc-font-sans);
            font-size: 16px;
            line-height: 1.85;
            color: var(--cpc-text-dark);
            background: var(--cpc-bg-light);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: var(--cpc-primary);
            text-decoration: none;
            transition: var(--cpc-transition);
        }
        a:hover {
            color: var(--cpc-accent);
        }
        a:focus-visible {
            outline: 2px solid var(--cpc-accent);
            outline-offset: 2px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            display: block;
        }
        button:focus-visible {
            outline: 2px solid var(--cpc-accent);
            outline-offset: 2px;
        }
        input:focus-visible {
            outline: none;
            border-color: var(--cpc-accent);
            box-shadow: 0 0 0 3px rgba(0,230,118,0.15);
        }
        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            width: var(--cpc-sidebar-width);
            background: var(--cpc-primary);
            z-index: 1040;
            display: flex;
            flex-direction: column;
            transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }
        .sidebar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 20px 18px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            min-height: 76px;
            flex-shrink: 0;
        }
        .sidebar-brand .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(0,230,118,0.2), rgba(0,230,118,0.05));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--cpc-accent);
            flex-shrink: 0;
            border: 1px solid rgba(0,230,118,0.3);
        }
        .sidebar-brand .brand-text {
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 1px;
            white-space: nowrap;
            opacity: 1;
            transition: opacity 0.25s;
        }
        .sidebar-brand .brand-text small {
            display: block;
            font-size: 10px;
            font-weight: 400;
            color: rgba(255,255,255,0.5);
            letter-spacing: 0.5px;
            margin-top: -2px;
        }
        .sidebar-nav {
            flex: 1;
            padding: 16px 0;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .sidebar-nav a.nav-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 18px;
            color: rgba(255,255,255,0.65);
            font-size: 14px;
            font-weight: 500;
            border-left: 3px solid transparent;
            transition: var(--cpc-transition);
            white-space: nowrap;
            position: relative;
        }
        .sidebar-nav a.nav-item i {
            font-size: 18px;
            width: 24px;
            text-align: center;
            flex-shrink: 0;
            transition: var(--cpc-transition);
        }
        .sidebar-nav a.nav-item .nav-text {
            opacity: 1;
            transition: opacity 0.25s;
        }
        .sidebar-nav a.nav-item:hover {
            color: #fff;
            background: rgba(0,230,118,0.08);
            border-left-color: rgba(0,230,118,0.4);
        }
        .sidebar-nav a.nav-item:hover i {
            transform: translateX(3px);
        }
        .sidebar-nav a.nav-item.active {
            color: #fff;
            background: rgba(0,230,118,0.12);
            border-left-color: var(--cpc-accent);
            font-weight: 600;
        }
        .sidebar-nav a.nav-item.home-link {
            margin-bottom: 8px;
        }
        .sidebar-footer {
            padding: 14px 18px;
            border-top: 1px solid rgba(255,255,255,0.08);
            font-size: 11px;
            color: rgba(255,255,255,0.35);
            white-space: nowrap;
            flex-shrink: 0;
        }
        .main-content {
            margin-left: var(--cpc-sidebar-width);
            flex: 1;
            min-height: 100vh;
            transition: margin-left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }
        .mobile-topbar {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 56px;
            background: var(--cpc-primary);
            z-index: 1035;
            align-items: center;
            padding: 0 16px;
            gap: 12px;
        }
        .mobile-topbar .hamburger-btn {
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .mobile-topbar .brand-short {
            color: #fff;
            font-size: 18px;
            font-weight: 800;
            letter-spacing: 1px;
        }
        .drawer-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.55);
            z-index: 1045;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .drawer-overlay.show {
            display: block;
            opacity: 1;
        }
        .page-banner {
            background: var(--cpc-primary);
            color: #fff;
            padding: 56px 48px 48px;
            position: relative;
            overflow: hidden;
        }
        .page-banner::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(135deg, transparent 60%, rgba(0,230,118,0.08) 100%);
            pointer-events: none;
        }
        .page-banner h1 {
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }
        .page-banner .banner-desc {
            font-size: 16px;
            color: rgba(255,255,255,0.7);
            max-width: 650px;
            position: relative;
            z-index: 1;
        }
        .section {
            padding: 64px 48px;
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--cpc-primary);
            margin-bottom: 8px;
        }
        .section-subtitle {
            font-size: 15px;
            color: var(--cpc-text-muted);
            margin-bottom: 36px;
            max-width: 720px;
        }
        .focus-match-card {
            background: var(--cpc-card);
            border-radius: var(--cpc-radius-lg);
            box-shadow: var(--cpc-shadow-sm);
            overflow: hidden;
            transition: var(--cpc-transition);
        }
        .focus-match-card:hover {
            box-shadow: var(--cpc-shadow-lg);
            transform: translateY(-4px);
        }
        .focus-match-card .match-header {
            background: var(--cpc-primary);
            color: #fff;
            padding: 16px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .focus-match-card .match-header .league-tag {
            background: var(--cpc-accent);
            color: var(--cpc-primary);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }
        .focus-match-card .match-header .match-time {
            font-family: var(--cpc-font-mono);
            font-size: 14px;
            color: rgba(255,255,255,0.7);
        }
        .focus-match-card .match-body {
            padding: 32px 24px;
            display: flex;
            align-items: center;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
        }
        .focus-match-card .team {
            text-align: center;
            min-width: 120px;
        }
        .focus-match-card .team .team-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--cpc-primary);
        }
        .focus-match-card .team .team-meta {
            font-size: 13px;
            color: var(--cpc-text-muted);
        }
        .focus-match-card .match-center {
            text-align: center;
        }
        .focus-match-card .match-center .vs {
            font-size: 32px;
            font-weight: 800;
            color: var(--cpc-accent);
            font-family: var(--cpc-font-mono);
        }
        .focus-match-card .match-center .match-status {
            font-size: 13px;
            color: var(--cpc-text-muted);
        }
        .match-odds-row {
            display: flex;
            gap: 16px;
            justify-content: center;
            padding: 16px 24px 24px;
            border-top: 1px solid var(--cpc-divider);
            flex-wrap: wrap;
        }
        .odds-item {
            text-align: center;
            background: var(--cpc-bg-light);
            border-radius: var(--cpc-radius-sm);
            padding: 12px 20px;
            min-width: 80px;
        }
        .odds-item .odds-label {
            font-size: 12px;
            color: var(--cpc-text-muted);
            margin-bottom: 4px;
        }
        .odds-item .odds-value {
            font-family: var(--cpc-font-mono);
            font-size: 20px;
            font-weight: 700;
            color: var(--cpc-primary);
        }
        .scroll-card-row {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding-bottom: 12px;
            scroll-snap-type: x mandatory;
        }
        .scroll-card-row::-webkit-scrollbar {
            height: 6px;
        }
        .scroll-card-row::-webkit-scrollbar-track {
            background: var(--cpc-divider);
            border-radius: 3px;
        }
        .scroll-card-row::-webkit-scrollbar-thumb {
            background: var(--cpc-border);
            border-radius: 3px;
        }
        .mini-match-card {
            flex: 0 0 280px;
            background: var(--cpc-card);
            border-radius: var(--cpc-radius-md);
            box-shadow: var(--cpc-shadow-sm);
            padding: 20px;
            scroll-snap-align: start;
            transition: var(--cpc-transition);
            border: 1px solid var(--cpc-divider);
        }
        .mini-match-card:hover {
            box-shadow: var(--cpc-shadow-lg);
            transform: translateY(-3px);
            border-color: rgba(0,230,118,0.3);
        }
        .mini-match-card .mini-league {
            font-size: 12px;
            color: var(--cpc-text-muted);
            margin-bottom: 8px;
        }
        .mini-match-card .mini-teams {
            font-size: 16px;
            font-weight: 700;
            color: var(--cpc-primary);
            margin-bottom: 8px;
        }
        .mini-match-card .mini-time {
            font-family: var(--cpc-font-mono);
            font-size: 13px;
            color: var(--cpc-text-muted);
        }
        .deep-analysis {
            background: var(--cpc-card);
            border-radius: var(--cpc-radius-lg);
            box-shadow: var(--cpc-shadow-sm);
            padding: 40px;
        }
        .deep-analysis h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--cpc-primary);
            margin-bottom: 12px;
        }
        .deep-analysis h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--cpc-primary);
            margin: 24px 0 10px;
        }
        .deep-analysis p {
            color: var(--cpc-text-dark);
            line-height: 1.9;
            margin-bottom: 16px;
        }
        .deep-analysis img {
            border-radius: var(--cpc-radius-md);
            margin: 20px 0;
        }
        .faq-section {
            background: var(--cpc-bg-light);
        }
        .accordion-item {
            border: 1px solid var(--cpc-divider);
            border-radius: var(--cpc-radius-md) !important;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: var(--cpc-shadow-sm);
            background: var(--cpc-card);
        }
        .accordion-button {
            font-size: 16px;
            font-weight: 600;
            color: var(--cpc-primary);
            background: var(--cpc-card);
            padding: 18px 20px;
        }
        .accordion-button:not(.collapsed) {
            color: var(--cpc-primary);
            background: #f0fdf7;
            box-shadow: none;
        }
        .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(0,230,118,0.15);
            border-color: transparent;
        }
        .accordion-button::after {
            transition: transform 0.3s;
        }
        .accordion-body {
            font-size: 15px;
            line-height: 1.8;
            color: var(--cpc-text-muted);
            padding: 16px 20px 20px;
        }
        .cta-section {
            background: var(--cpc-primary);
            color: #fff;
            padding: 64px 48px;
            text-align: center;
        }
        .cta-section h2 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 12px;
        }
        .cta-section p {
            font-size: 16px;
            color: rgba(255,255,255,0.7);
            max-width: 600px;
            margin: 0 auto 32px;
        }
        .btn-cpc-primary {
            background: var(--cpc-accent);
            color: var(--cpc-primary);
            border: none;
            padding: 12px 28px;
            border-radius: var(--cpc-radius-sm);
            font-weight: 600;
            font-size: 15px;
            transition: var(--cpc-transition);
            display: inline-block;
        }
        .btn-cpc-primary:hover {
            background: #00c853;
            color: var(--cpc-primary);
            transform: translateY(-2px);
        }
        .btn-cpc-outline {
            background: transparent;
            color: var(--cpc-primary);
            border: 1px solid var(--cpc-primary);
            padding: 12px 28px;
            border-radius: var(--cpc-radius-sm);
            font-weight: 600;
            font-size: 15px;
            transition: var(--cpc-transition);
            display: inline-block;
        }
        .btn-cpc-outline:hover {
            background: var(--cpc-bg-light);
            color: var(--cpc-primary);
        }
        .btn-cpc-outline-light {
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255,255,255,0.5);
            padding: 12px 28px;
            border-radius: var(--cpc-radius-sm);
            font-weight: 600;
            font-size: 15px;
            transition: var(--cpc-transition);
            display: inline-block;
        }
        .btn-cpc-outline-light:hover {
            background: rgba(255,255,255,0.1);
            color: #fff;
        }
        .site-footer {
            background: var(--cpc-primary);
            color: #fff;
            padding: 48px 48px 32px;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-brand h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .footer-brand p {
            font-size: 13px;
            color: rgba(255,255,255,0.55);
            line-height: 1.7;
        }
        .footer-links h5 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 12px;
            color: rgba(255,255,255,0.85);
        }
        .footer-links a {
            display: block;
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            margin-bottom: 8px;
            transition: var(--cpc-transition);
        }
        .footer-links a:hover {
            color: var(--cpc-accent);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            font-size: 13px;
            color: rgba(255,255,255,0.4);
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-bottom .sep {
            color: rgba(255,255,255,0.2);
        }
        .back-to-top {
            position: fixed;
            right: 24px;
            bottom: 24px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--cpc-primary);
            color: #fff;
            border: none;
            font-size: 20px;
            cursor: pointer;
            z-index: 1030;
            transition: var(--cpc-transition);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .back-to-top:hover {
            background: var(--cpc-accent);
            color: var(--cpc-primary);
            transform: translateY(-3px);
        }
        @media (max-width: 1199px) {
            :root {
                --cpc-sidebar-width: 72px;
            }
            .sidebar-brand {
                justify-content: center;
                padding: 20px 10px;
            }
            .sidebar-brand .brand-text {
                opacity: 0;
                width: 0;
                overflow: hidden;
            }
            .sidebar-nav a.nav-item {
                justify-content: center;
                padding: 12px 10px;
            }
            .sidebar-nav a.nav-item .nav-text {
                opacity: 0;
                width: 0;
                overflow: hidden;
            }
            .sidebar-nav a.nav-item i {
                width: auto;
            }
            .sidebar-footer {
                font-size: 0;
                text-align: center;
                padding: 10px;
            }
            .sidebar-footer::after {
                content: 'v2.6.0';
                font-size: 10px;
            }
            .section {
                padding: 48px 32px;
            }
            .page-banner {
                padding: 40px 32px;
            }
            .site-footer {
                padding: 40px 32px 24px;
            }
        }
        @media (max-width: 991px) {
            .sidebar {
                display: none;
            }
            .main-content {
                margin-left: 0;
                padding-top: 56px;
            }
            .mobile-topbar {
                display: flex;
            }
            .drawer-overlay.show {
                display: block;
            }
            .mobile-drawer {
                position: fixed;
                top: 0;
                left: -300px;
                bottom: 0;
                width: 300px;
                background: var(--cpc-primary);
                z-index: 1050;
                transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                display: flex;
                flex-direction: column;
            }
            .mobile-drawer.open {
                left: 0;
            }
            .mobile-drawer .sidebar-brand {
                display: flex;
            }
            .mobile-drawer .sidebar-nav a.nav-item {
                justify-content: flex-start;
                padding: 12px 18px;
            }
            .mobile-drawer .sidebar-nav a.nav-item .nav-text {
                opacity: 1;
                width: auto;
            }
            .mobile-drawer .sidebar-footer {
                font-size: 11px;
                text-align: left;
                padding: 14px 18px;
            }
            .mobile-drawer .sidebar-footer::after {
                content: '';
                font-size: 11px;
            }
            .section {
                padding: 40px 24px;
            }
            .page-banner {
                padding: 32px 24px;
            }
            .page-banner h1 {
                font-size: 30px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .site-footer {
                padding: 32px 24px 20px;
            }
        }
        @media (max-width: 767px) {
            .section {
                padding: 32px 16px;
            }
            .page-banner {
                padding: 24px 16px;
            }
            .page-banner h1 {
                font-size: 26px;
            }
            .section-title {
                font-size: 22px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .site-footer {
                padding: 24px 16px 16px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .focus-match-card .match-body {
                flex-direction: column;
                text-align: center;
            }
            .deep-analysis {
                padding: 24px 20px;
            }
            .cta-section {
                padding: 40px 16px;
            }
            .cta-section h2 {
                font-size: 24px;
            }
            .back-to-top {
                right: 12px;
                bottom: 12px;
                width: 42px;
                height: 42px;
                font-size: 16px;
            }
        }
        @media (max-width: 575px) {
            .btn-cpc-primary,
            .btn-cpc-outline,
            .btn-cpc-outline-light {
                width: 100%;
                display: block;
                text-align: center;
                margin-bottom: 8px;
            }
            .match-odds-row {
                gap: 8px;
            }
            .odds-item {
                padding: 8px 12px;
                min-width: 60px;
            }
            .odds-item .odds-value {
                font-size: 16px;
            }
            .mini-match-card {
                flex: 0 0 240px;
            }
            .scroll-card-row {
                gap: 12px;
            }
        }

/* roulang page: category2 */
:root {
            --cpc-primary: #0f1115;
            --cpc-accent: #00e676;
            --cpc-gold: #ffab00;
            --cpc-bg-light: #f7f8f9;
            --cpc-card: #ffffff;
            --cpc-bg-dark: #161a20;
            --cpc-text-dark: #1b1f24;
            --cpc-text-muted: #5b6470;
            --cpc-border: #e2e5ea;
            --cpc-divider: #edeef0;
            --cpc-green: #008b3f;
            --cpc-red: #c62828;
            --cpc-radius-lg: 16px;
            --cpc-radius-md: 10px;
            --cpc-radius-sm: 8px;
            --cpc-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
            --cpc-shadow-lg: 0 10px 26px rgba(0, 0, 0, 0.12);
            --cpc-shadow-dark: 0 8px 18px rgba(0, 0, 0, 0.35);
            --cpc-font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            --cpc-font-mono: "Roboto Mono", "SF Mono", "Consolas", monospace;
            --cpc-sidebar-width: 240px;
            --cpc-sidebar-narrow: 72px;
            --cpc-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        html {
            scroll-behavior: smooth;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        body {
            font-family: var(--cpc-font-sans);
            font-size: 16px;
            line-height: 1.85;
            color: var(--cpc-text-dark);
            background: var(--cpc-bg-light);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            margin: 0;
            padding: 0;
        }
        a {
            color: var(--cpc-primary);
            text-decoration: none;
            transition: var(--cpc-transition);
        }
        a:hover {
            color: var(--cpc-accent);
        }
        a:focus-visible {
            outline: 2px solid var(--cpc-accent);
            outline-offset: 2px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            display: block;
        }
        button:focus-visible {
            outline: 2px solid var(--cpc-accent);
            outline-offset: 2px;
        }
        input:focus-visible {
            outline: none;
            border-color: var(--cpc-accent);
            box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.15);
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: var(--cpc-primary);
            font-weight: 700;
            line-height: 1.3;
            margin: 0 0 0.5em;
        }
        p {
            margin: 0 0 1em;
        }
        ul,
        ol {
            padding-left: 1.4em;
            margin-bottom: 1em;
        }
        .container {
            max-width: 1200px;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* ==================== SIDEBAR ==================== */
        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            width: var(--cpc-sidebar-width);
            background: var(--cpc-primary);
            display: flex;
            flex-direction: column;
            z-index: 1030;
            transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 2px 0 16px rgba(0, 0, 0, 0.18);
            border-right: 1px solid rgba(255, 255, 255, 0.06);
        }
        .sidebar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 20px 18px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            min-height: 76px;
            flex-shrink: 0;
        }
        .sidebar-brand .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(0, 230, 118, 0.2), rgba(0, 230, 118, 0.05));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--cpc-accent);
            flex-shrink: 0;
            border: 1px solid rgba(0, 230, 118, 0.3);
        }
        .sidebar-brand .brand-text {
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 1px;
            white-space: nowrap;
            opacity: 1;
            transition: opacity 0.25s;
        }
        .sidebar-brand .brand-text small {
            display: block;
            font-size: 10px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.5);
            letter-spacing: 0.5px;
            margin-top: -2px;
        }
        .sidebar-nav {
            flex: 1;
            padding: 16px 0;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .sidebar-nav a.nav-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 18px;
            color: rgba(255, 255, 255, 0.65);
            font-size: 14px;
            font-weight: 500;
            border-left: 3px solid transparent;
            transition: var(--cpc-transition);
            white-space: nowrap;
            position: relative;
        }
        .sidebar-nav a.nav-item i {
            font-size: 18px;
            width: 24px;
            text-align: center;
            flex-shrink: 0;
            transition: var(--cpc-transition);
        }
        .sidebar-nav a.nav-item .nav-text {
            opacity: 1;
            transition: opacity 0.25s;
        }
        .sidebar-nav a.nav-item:hover {
            color: #fff;
            background: rgba(0, 230, 118, 0.08);
            border-left-color: rgba(0, 230, 118, 0.4);
        }
        .sidebar-nav a.nav-item:hover i {
            transform: translateX(3px);
        }
        .sidebar-nav a.nav-item.active {
            color: #fff;
            background: rgba(0, 230, 118, 0.12);
            border-left-color: var(--cpc-accent);
            font-weight: 600;
        }
        .sidebar-nav a.nav-item.home-link {
            margin-bottom: 8px;
        }
        .sidebar-footer {
            padding: 14px 18px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 11px;
            color: rgba(255, 255, 255, 0.35);
            white-space: nowrap;
            flex-shrink: 0;
        }
        .main-content {
            margin-left: var(--cpc-sidebar-width);
            flex: 1;
            min-height: 100vh;
            transition: margin-left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        /* ==================== MOBILE TOP BAR ==================== */
        .mobile-topbar {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 56px;
            background: var(--cpc-primary);
            z-index: 1035;
            align-items: center;
            padding: 0 16px;
            gap: 12px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
        }
        .mobile-topbar .hamburger-btn {
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--cpc-transition);
        }
        .mobile-topbar .hamburger-btn:hover {
            color: var(--cpc-accent);
        }
        .mobile-topbar .mobile-logo {
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 0.5px;
        }
        .mobile-topbar .mobile-logo small {
            display: block;
            font-size: 9px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.5);
            letter-spacing: 0.3px;
            line-height: 1.2;
            margin-top: -2px;
        }
        .drawer-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.55);
            z-index: 1032;
            opacity: 0;
            transition: opacity 0.35s;
        }
        .drawer-overlay.show {
            opacity: 1;
        }
        .drawer-menu {
            position: fixed;
            top: 0;
            left: -300px;
            bottom: 0;
            width: 300px;
            background: var(--cpc-primary);
            z-index: 1034;
            transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            box-shadow: 2px 0 24px rgba(0, 0, 0, 0.3);
        }
        .drawer-menu.open {
            left: 0;
        }
        .drawer-menu .drawer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 18px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            flex-shrink: 0;
        }
        .drawer-menu .drawer-brand .logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(0, 230, 118, 0.2), rgba(0, 230, 118, 0.05));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--cpc-accent);
            border: 1px solid rgba(0, 230, 118, 0.3);
        }
        .drawer-menu .drawer-brand span {
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 0.5px;
        }
        .drawer-menu .drawer-nav {
            flex: 1;
            padding: 12px 0;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .drawer-menu .drawer-nav a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            color: rgba(255, 255, 255, 0.65);
            font-size: 14px;
            font-weight: 500;
            border-left: 3px solid transparent;
            transition: var(--cpc-transition);
        }
        .drawer-menu .drawer-nav a:hover {
            color: #fff;
            background: rgba(0, 230, 118, 0.08);
            border-left-color: rgba(0, 230, 118, 0.4);
        }
        .drawer-menu .drawer-nav a.active {
            color: #fff;
            background: rgba(0, 230, 118, 0.12);
            border-left-color: var(--cpc-accent);
            font-weight: 600;
        }
        .drawer-menu .drawer-nav a i {
            width: 24px;
            text-align: center;
            font-size: 18px;
        }
        .drawer-menu .drawer-footer {
            padding: 12px 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 11px;
            color: rgba(255, 255, 255, 0.35);
            flex-shrink: 0;
        }
        .drawer-close-btn {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.7);
            font-size: 20px;
            cursor: pointer;
            padding: 4px 6px;
            margin-left: auto;
            transition: var(--cpc-transition);
        }
        .drawer-close-btn:hover {
            color: #fff;
        }

        /* ==================== BANNER ==================== */
        .page-banner {
            background: var(--cpc-primary);
            background-image: linear-gradient(135deg, rgba(22, 26, 32, 0.92) 35%, rgba(15, 17, 21, 0.98)), url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            padding: 72px 0 64px;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .page-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--cpc-accent), rgba(0, 230, 118, 0.2), transparent);
        }
        .page-banner .banner-label {
            display: inline-block;
            background: rgba(0, 230, 118, 0.15);
            color: var(--cpc-accent);
            font-size: 13px;
            font-weight: 600;
            padding: 4px 16px;
            border-radius: 20px;
            letter-spacing: 1px;
            border: 1px solid rgba(0, 230, 118, 0.3);
            margin-bottom: 16px;
        }
        .page-banner h1 {
            color: #fff;
            font-size: 40px;
            font-weight: 800;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }
        .page-banner h1 .highlight {
            color: var(--cpc-accent);
        }
        .page-banner .banner-desc {
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            max-width: 680px;
            line-height: 1.75;
            margin-bottom: 20px;
        }
        .page-banner .banner-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 13px;
            font-family: var(--cpc-font-mono);
        }
        .page-banner .banner-meta i {
            color: var(--cpc-accent);
            margin-right: 6px;
        }

        /* ==================== MAIN SECTION ==================== */
        .section-padding {
            padding: 56px 0;
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--cpc-primary);
        }
        .section-subtitle {
            color: var(--cpc-text-muted);
            font-size: 15px;
            margin-bottom: 32px;
            max-width: 700px;
        }
        .text-accent {
            color: var(--cpc-accent);
        }
        .text-gold {
            color: var(--cpc-gold);
        }

        /* ==================== SPLIT LAYOUT ==================== */
        .split-layout {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 28px;
            align-items: start;
        }
        .split-main-col {
            min-width: 0;
        }
        .split-side-col {
            min-width: 0;
        }
        .side-card {
            background: var(--cpc-card);
            border-radius: var(--cpc-radius-lg);
            box-shadow: var(--cpc-shadow-sm);
            border: 1px solid var(--cpc-border);
            padding: 24px;
            margin-bottom: 20px;
            transition: var(--cpc-transition);
        }
        .side-card:hover {
            box-shadow: var(--cpc-shadow-lg);
            transform: translateY(-2px);
        }
        .side-card h5 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .side-card h5 i {
            color: var(--cpc-accent);
            font-size: 18px;
        }
        .side-card .card-section-label {
            font-size: 12px;
            color: var(--cpc-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .player-stat-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid var(--cpc-divider);
        }
        .player-stat-row:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .player-avatar-placeholder {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0, 230, 118, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cpc-accent);
            font-size: 16px;
            flex-shrink: 0;
            border: 1px solid rgba(0, 230, 118, 0.25);
        }
        .player-info {
            flex: 1;
        }
        .player-info .name {
            font-size: 14px;
            font-weight: 600;
            color: var(--cpc-text-dark);
        }
        .player-info .team {
            font-size: 12px;
            color: var(--cpc-text-muted);
        }
        .player-stat-value {
            font-family: var(--cpc-font-mono);
            font-size: 14px;
            font-weight: 600;
            color: var(--cpc-primary);
            text-align: right;
        }
        .player-stat-value .stat-label {
            font-size: 11px;
            color: var(--cpc-text-muted);
            font-weight: 400;
            display: block;
        }
        .over-under-indicator {
            display: flex;
            gap: 8px;
            margin-top: 10px;
            flex-wrap: wrap;
        }
        .over-under-indicator .indicator-pill {
            font-family: var(--cpc-font-mono);
            font-size: 13px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 6px;
            background: rgba(0, 230, 118, 0.1);
            color: var(--cpc-accent);
            border: 1px solid rgba(0, 230, 118, 0.3);
        }
        .over-under-indicator .indicator-pill.gold {
            background: rgba(255, 171, 0, 0.12);
            color: var(--cpc-gold);
            border-color: rgba(255, 171, 0, 0.35);
        }
        .over-under-indicator .indicator-pill.dark {
            background: rgba(15, 17, 21, 0.06);
            color: var(--cpc-text-muted);
            border-color: rgba(15, 17, 21, 0.15);
        }

        /* ==================== MATCH LIST ==================== */
        .match-list-card {
            background: var(--cpc-card);
            border-radius: var(--cpc-radius-lg);
            box-shadow: var(--cpc-shadow-sm);
            border: 1px solid var(--cpc-border);
            padding: 20px 24px;
            margin-bottom: 16px;
            transition: var(--cpc-transition);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .match-list-card:hover {
            box-shadow: var(--cpc-shadow-lg);
            transform: translateY(-3px);
            border-color: rgba(0, 230, 118, 0.4);
        }
        .match-date-block {
            font-family: var(--cpc-font-mono);
            text-align: center;
            min-width: 54px;
            flex-shrink: 0;
        }
        .match-date-block .day {
            font-size: 26px;
            font-weight: 700;
            color: var(--cpc-primary);
            line-height: 1.1;
        }
        .match-date-block .month {
            font-size: 12px;
            color: var(--cpc-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .match-teams {
            flex: 1;
            min-width: 180px;
        }
        .match-teams .teams-row {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 16px;
            color: var(--cpc-text-dark);
        }
        .match-teams .teams-row .vs {
            font-size: 12px;
            color: var(--cpc-text-muted);
            font-weight: 400;
            flex-shrink: 0;
        }
        .match-teams .league-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 4px;
            background: rgba(0, 230, 118, 0.1);
            color: var(--cpc-accent);
            margin-top: 4px;
            border: 1px solid rgba(0, 230, 118, 0.2);
        }
        .match-odds-row {
            display: flex;
            gap: 18px;
            flex-shrink: 0;
            flex-wrap: wrap;
        }
        .match-odds-item {
            text-align: center;
            min-width: 48px;
        }
        .match-odds-item .odds-label {
            font-size: 11px;
            color: var(--cpc-text-muted);
            display: block;
            margin-bottom: 2px;
        }
        .match-odds-item .odds-value {
            font-family: var(--cpc-font-mono);
            font-size: 15px;
            font-weight: 600;
            color: var(--cpc-primary);
            background: rgba(15, 17, 21, 0.04);
            padding: 2px 8px;
            border-radius: 4px;
        }
        .match-odds-item .odds-value.green {
            color: var(--cpc-green);
        }
        .match-odds-item .odds-value.red {
            color: var(--cpc-red);
        }
        .match-btn {
            padding: 6px 16px;
            font-size: 13px;
            font-weight: 600;
            border-radius: 6px;
            background: transparent;
            border: 1.5px solid var(--cpc-primary);
            color: var(--cpc-primary);
            cursor: pointer;
            transition: var(--cpc-transition);
            white-space: nowrap;
        }
        .match-btn:hover {
            background: var(--cpc-primary);
            color: #fff;
            border-color: var(--cpc-primary);
        }

        /* ==================== DEEP CONTENT ==================== */
        .deep-content {
            background: var(--cpc-card);
            border-radius: var(--cpc-radius-lg);
            box-shadow: var(--cpc-shadow-sm);
            border: 1px solid var(--cpc-border);
            padding: 36px 40px;
        }
        .deep-content h2 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--cpc-primary);
        }
        .deep-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 24px 0 12px;
            color: var(--cpc-primary);
        }
        .deep-content p {
            color: var(--cpc-text-dark);
            line-height: 1.9;
        }
        .deep-content .content-image-wrapper {
            border-radius: var(--cpc-radius-md);
            overflow: hidden;
            margin: 20px 0;
            box-shadow: var(--cpc-shadow-sm);
        }
        .deep-content .content-image-wrapper img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .deep-content .content-image-wrapper:hover img {
            transform: scale(1.02);
        }

        /* ==================== QUOTE BLOCK ==================== */
        .quote-block {
            background: rgba(0, 230, 118, 0.06);
            border-left: 4px solid var(--cpc-accent);
            padding: 18px 24px;
            border-radius: 0 var(--cpc-radius-md) var(--cpc-radius-md) 0;
            margin: 20px 0;
            font-style: italic;
            color: var(--cpc-text-dark);
            font-size: 15px;
        }
        .quote-block .quote-author {
            display: block;
            font-size: 13px;
            color: var(--cpc-text-muted);
            font-style: normal;
            margin-top: 6px;
        }

        /* ==================== HIGHLIGHT STRIP ==================== */
        .highlight-strip {
            background: var(--cpc-bg-dark);
            border-radius: var(--cpc-radius-lg);
            padding: 28px 32px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin: 24px 0;
        }
        .highlight-strip .stat-item {
            text-align: center;
        }
        .highlight-strip .stat-number {
            font-family: var(--cpc-font-mono);
            font-size: 32px;
            font-weight: 700;
            color: var(--cpc-accent);
            line-height: 1.2;
        }
        .highlight-strip .stat-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 4px;
        }

        /* ==================== FAQ ==================== */
        .accordion-custom .accordion-item {
            border: 1px solid var(--cpc-border);
            border-radius: var(--cpc-radius-md) !important;
            margin-bottom: 10px;
            overflow: hidden;
            background: var(--cpc-card);
            box-shadow: var(--cpc-shadow-sm);
        }
        .accordion-custom .accordion-button {
            background: var(--cpc-card);
            color: var(--cpc-primary);
            font-weight: 600;
            font-size: 15px;
            padding: 16px 20px;
            border-radius: var(--cpc-radius-md) !important;
            box-shadow: none;
            transition: var(--cpc-transition);
        }
        .accordion-custom .accordion-button:not(.collapsed) {
            background: rgba(0, 230, 118, 0.05);
            color: var(--cpc-primary);
            box-shadow: none;
        }
        .accordion-custom .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.15);
            border-color: var(--cpc-accent);
        }
        .accordion-custom .accordion-button::after {
            filter: brightness(0.3);
            transition: transform 0.3s ease;
        }
        .accordion-custom .accordion-body {
            padding: 14px 20px 20px;
            color: var(--cpc-text-muted);
            font-size: 15px;
            line-height: 1.8;
        }

        /* ==================== CTA SECTION ==================== */
        .cta-section {
            background: var(--cpc-primary);
            background-image: linear-gradient(135deg, rgba(22, 26, 32, 0.95), rgba(15, 17, 21, 0.99)), url('/assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center;
            border-radius: var(--cpc-radius-lg);
            padding: 40px 44px;
            color: #fff;
            margin-top: 40px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .cta-section h3 {
            color: #fff;
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .cta-section h3 .highlight {
            color: var(--cpc-accent);
        }
        .cta-section p {
            color: rgba(255, 255, 255, 0.6);
            max-width: 560px;
            margin: 0 auto 20px;
            font-size: 15px;
        }
        .cta-btn-group {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta-btn-primary {
            background: #fff;
            color: var(--cpc-primary);
            padding: 10px 28px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            transition: var(--cpc-transition);
        }
        .cta-btn-primary:hover {
            background: var(--cpc-accent);
            color: var(--cpc-primary);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 230, 118, 0.35);
        }
        .cta-btn-secondary {
            background: transparent;
            color: #fff;
            padding: 10px 28px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 8px;
            border: 1.5px solid rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--cpc-transition);
        }
        .cta-btn-secondary:hover {
            border-color: var(--cpc-accent);
            color: var(--cpc-accent);
            background: rgba(0, 230, 118, 0.08);
        }

        /* ==================== FOOTER ==================== */
        .site-footer {
            background: var(--cpc-primary);
            color: rgba(255, 255, 255, 0.6);
            padding: 48px 0 28px;
            margin-top: auto;
            font-size: 14px;
        }
        .site-footer h4 {
            color: #fff;
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }
        .site-footer h5 {
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }
        .site-footer p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 13px;
            line-height: 1.7;
            margin-bottom: 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 0.8fr 0.9fr 1.2fr;
            gap: 32px;
            margin-bottom: 28px;
        }
        .footer-links a {
            display: block;
            color: rgba(255, 255, 255, 0.55);
            font-size: 13px;
            padding: 3px 0;
            transition: var(--cpc-transition);
        }
        .footer-links a:hover {
            color: var(--cpc-accent);
            padding-left: 4px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 18px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 14px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
            align-items: center;
        }
        .footer-bottom .sep {
            color: rgba(255, 255, 255, 0.2);
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.5);
            font-size: 12px;
        }
        .footer-bottom a:hover {
            color: var(--cpc-accent);
        }

        /* ==================== BACK TO TOP ==================== */
        .back-to-top {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--cpc-primary);
            color: #fff;
            border: none;
            font-size: 18px;
            cursor: pointer;
            z-index: 1020;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--cpc-shadow-lg);
            transition: var(--cpc-transition);
            opacity: 0;
            pointer-events: none;
        }
        .back-to-top.visible {
            opacity: 1;
            pointer-events: auto;
        }
        .back-to-top:hover {
            background: var(--cpc-accent);
            color: var(--cpc-primary);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 230, 118, 0.4);
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1199.98px) {
            :root {
                --cpc-sidebar-width: 72px;
            }
            .sidebar {
                width: 72px;
            }
            .sidebar-brand {
                padding: 16px 10px;
                justify-content: center;
                gap: 0;
            }
            .sidebar-brand .brand-text {
                opacity: 0;
                width: 0;
                overflow: hidden;
                margin-left: 0;
            }
            .sidebar-brand .logo-icon {
                width: 36px;
                height: 36px;
                font-size: 18px;
            }
            .sidebar-nav a.nav-item {
                padding: 12px 10px;
                justify-content: center;
                gap: 0;
                border-left: 3px solid transparent;
            }
            .sidebar-nav a.nav-item .nav-text {
                opacity: 0;
                width: 0;
                overflow: hidden;
                margin-left: 0;
            }
            .sidebar-nav a.nav-item i {
                font-size: 20px;
                width: auto;
            }
            .sidebar-nav a.nav-item:hover {
                border-left-color: var(--cpc-accent);
            }
            .sidebar-nav a.nav-item.active {
                border-left-color: var(--cpc-accent);
            }
            .sidebar-footer {
                padding: 10px 8px;
                text-align: center;
                font-size: 9px;
                overflow: hidden;
                white-space: nowrap;
                opacity: 0;
                pointer-events: none;
            }
        }
        @media (max-width: 991.98px) {
            .sidebar {
                display: none;
            }
            .main-content {
                margin-left: 0;
                padding-top: 56px;
            }
            .mobile-topbar {
                display: flex;
            }
            .drawer-overlay.show {
                display: block;
            }
            .page-banner {
                padding: 48px 0 44px;
            }
            .page-banner h1 {
                font-size: 30px;
            }
            .split-layout {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .cta-section {
                padding: 28px 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .deep-content {
                padding: 24px 20px;
            }
        }
        @media (max-width: 767.98px) {
            .page-banner h1 {
                font-size: 26px;
            }
            .page-banner .banner-desc {
                font-size: 14px;
            }
            .match-list-card {
                padding: 14px 16px;
                gap: 12px;
                flex-direction: column;
                align-items: flex-start;
            }
            .match-date-block {
                display: flex;
                align-items: baseline;
                gap: 6px;
            }
            .match-date-block .day {
                font-size: 20px;
            }
            .match-odds-row {
                gap: 12px;
                flex-wrap: wrap;
            }
            .highlight-strip {
                grid-template-columns: repeat(2, 1fr);
                padding: 20px 16px;
                gap: 16px;
            }
            .highlight-strip .stat-number {
                font-size: 24px;
            }
            .cta-btn-group {
                flex-direction: column;
                align-items: center;
            }
            .cta-btn-primary,
            .cta-btn-secondary {
                width: 100%;
                text-align: center;
            }
            .back-to-top {
                bottom: 16px;
                right: 16px;
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .section-padding {
                padding: 36px 0;
            }
            .section-title {
                font-size: 22px;
            }
            .deep-content h2 {
                font-size: 20px;
            }
        }
        @media (max-width: 575.98px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .page-banner {
                padding: 36px 0 32px;
            }
            .page-banner h1 {
                font-size: 22px;
            }
            .page-banner .banner-desc {
                font-size: 13px;
                line-height: 1.65;
            }
            .match-odds-item .odds-value {
                font-size: 13px;
                padding: 2px 6px;
            }
            .side-card {
                padding: 18px 16px;
            }
            .deep-content {
                padding: 20px 16px;
            }
            .cta-section h3 {
                font-size: 20px;
            }
            .cta-section p {
                font-size: 13px;
            }
            .accordion-custom .accordion-button {
                font-size: 14px;
                padding: 14px 16px;
            }
            .accordion-custom .accordion-body {
                padding: 12px 16px 16px;
                font-size: 14px;
            }
            .drawer-menu {
                width: 280px;
                left: -280px;
            }
        }

/* roulang page: category3 */
:root {
            --cpc-primary: #0f1115;
            --cpc-accent: #00e676;
            --cpc-gold: #ffab00;
            --cpc-bg-light: #f7f8f9;
            --cpc-card: #ffffff;
            --cpc-bg-dark: #161a20;
            --cpc-text-dark: #1b1f24;
            --cpc-text-muted: #5b6470;
            --cpc-border: #e2e5ea;
            --cpc-divider: #edeef0;
            --cpc-green: #008b3f;
            --cpc-red: #c62828;
            --cpc-radius-lg: 16px;
            --cpc-radius-md: 10px;
            --cpc-radius-sm: 8px;
            --cpc-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
            --cpc-shadow-lg: 0 10px 26px rgba(0, 0, 0, 0.12);
            --cpc-shadow-dark: 0 8px 18px rgba(0, 0, 0, 0.35);
            --cpc-font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            --cpc-font-mono: "Roboto Mono", "SF Mono", "Consolas", monospace;
            --cpc-sidebar-width: 240px;
            --cpc-sidebar-narrow: 72px;
            --cpc-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--cpc-font-sans);
            font-size: 16px;
            line-height: 1.85;
            color: var(--cpc-text-dark);
            background: var(--cpc-bg-light);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a { color: var(--cpc-primary); text-decoration: none; transition: var(--cpc-transition); }
        a:hover { color: var(--cpc-accent); }
        a:focus-visible { outline: 2px solid var(--cpc-accent); outline-offset: 2px; border-radius: 4px; }
        img { max-width: 100%; display: block; }
        button:focus-visible { outline: 2px solid var(--cpc-accent); outline-offset: 2px; }
        input:focus-visible { outline: none; border-color: var(--cpc-accent); box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.15); }

        /* ========== SIDEBAR ========== */
        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            width: var(--cpc-sidebar-width);
            background: var(--cpc-primary);
            z-index: 1040;
            display: flex;
            flex-direction: column;
            transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
        }
        .sidebar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 20px 18px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            min-height: 76px;
            flex-shrink: 0;
        }
        .sidebar-brand .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(0, 230, 118, 0.2), rgba(0, 230, 118, 0.05));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--cpc-accent);
            flex-shrink: 0;
            border: 1px solid rgba(0, 230, 118, 0.3);
        }
        .sidebar-brand .brand-text {
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 1px;
            white-space: nowrap;
            opacity: 1;
            transition: opacity 0.25s;
        }
        .sidebar-brand .brand-text small {
            display: block;
            font-size: 10px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.5);
            letter-spacing: 0.5px;
            margin-top: -2px;
        }
        .sidebar-nav {
            flex: 1;
            padding: 16px 0;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .sidebar-nav a.nav-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 18px;
            color: rgba(255, 255, 255, 0.65);
            font-size: 14px;
            font-weight: 500;
            border-left: 3px solid transparent;
            transition: var(--cpc-transition);
            white-space: nowrap;
            position: relative;
        }
        .sidebar-nav a.nav-item i {
            font-size: 18px;
            width: 24px;
            text-align: center;
            flex-shrink: 0;
            transition: var(--cpc-transition);
        }
        .sidebar-nav a.nav-item .nav-text {
            opacity: 1;
            transition: opacity 0.25s;
        }
        .sidebar-nav a.nav-item:hover {
            color: #fff;
            background: rgba(0, 230, 118, 0.08);
            border-left-color: rgba(0, 230, 118, 0.4);
        }
        .sidebar-nav a.nav-item:hover i { transform: translateX(3px); }
        .sidebar-nav a.nav-item.active {
            color: #fff;
            background: rgba(0, 230, 118, 0.12);
            border-left-color: var(--cpc-accent);
            font-weight: 600;
        }
        .sidebar-nav a.nav-item.home-link { margin-bottom: 8px; }
        .sidebar-footer {
            padding: 14px 18px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 11px;
            color: rgba(255, 255, 255, 0.35);
            white-space: nowrap;
            flex-shrink: 0;
        }

        .main-content {
            margin-left: var(--cpc-sidebar-width);
            flex: 1;
            min-height: 100vh;
            transition: margin-left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        /* ========== MOBILE TOPBAR ========== */
        .mobile-topbar {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 56px;
            background: var(--cpc-primary);
            z-index: 1035;
            align-items: center;
            padding: 0 16px;
            gap: 12px;
        }
        .mobile-topbar .hamburger-btn {
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .mobile-topbar .topbar-brand {
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 1px;
            white-space: nowrap;
        }
        .mobile-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1030;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .mobile-overlay.show { opacity: 1; }

        /* ========== PAGE HEADER BANNER ========== */
        .page-banner {
            background: linear-gradient(135deg, #0f1115 30%, #1a2028 70%, #16201c 100%);
            padding: 56px 48px 44px;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(0, 230, 118, 0.15);
        }
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            pointer-events: none;
        }
        .page-banner .banner-content {
            position: relative;
            z-index: 2;
        }
        .page-banner .banner-tag {
            display: inline-block;
            background: rgba(0, 230, 118, 0.16);
            color: var(--cpc-accent);
            font-size: 13px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 20px;
            border: 1px solid rgba(0, 230, 118, 0.3);
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }
        .page-banner h1 {
            font-size: clamp(32px, 4vw, 46px);
            font-weight: 800;
            color: #fff;
            margin-bottom: 14px;
            line-height: 1.3;
            letter-spacing: 0.5px;
        }
        .page-banner h1 .highlight {
            color: var(--cpc-accent);
        }
        .page-banner p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 17px;
            max-width: 680px;
            margin-bottom: 0;
            line-height: 1.8;
        }

        /* ========== CARD BASE ========== */
        .data-card {
            background: var(--cpc-card);
            border-radius: var(--cpc-radius-lg);
            box-shadow: var(--cpc-shadow-sm);
            border: 1px solid var(--cpc-divider);
            transition: var(--cpc-transition);
            overflow: hidden;
        }
        .data-card:hover {
            box-shadow: var(--cpc-shadow-lg);
            transform: translateY(-4px);
        }
        .section-title {
            font-size: clamp(22px, 2.5vw, 30px);
            font-weight: 800;
            color: var(--cpc-primary);
            margin-bottom: 8px;
            letter-spacing: 0.3px;
        }
        .section-subtitle {
            color: var(--cpc-text-muted);
            font-size: 15px;
            margin-bottom: 36px;
            line-height: 1.7;
        }
        .section-tag {
            display: inline-block;
            background: rgba(15, 17, 21, 0.06);
            color: var(--cpc-text-muted);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 16px;
            letter-spacing: 0.8px;
            margin-bottom: 12px;
            text-transform: uppercase;
        }
        .accent-tag {
            background: rgba(0, 230, 118, 0.1);
            color: #008b3f;
            border: 1px solid rgba(0, 230, 118, 0.3);
        }

        /* ========== STAT NUMBER CARDS ========== */
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }
        .stat-card {
            background: #fff;
            border-radius: var(--cpc-radius-lg);
            padding: 24px 20px;
            text-align: center;
            border: 1px solid var(--cpc-divider);
            box-shadow: var(--cpc-shadow-sm);
            transition: var(--cpc-transition);
            position: relative;
            overflow: hidden;
            cursor: default;
        }
        .stat-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--cpc-accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .stat-card:hover::after { transform: scaleX(1); }
        .stat-card:hover { box-shadow: var(--cpc-shadow-lg); transform: translateY(-4px); }
        .stat-card .stat-number {
            font-family: var(--cpc-font-mono);
            font-size: 38px;
            font-weight: 800;
            color: var(--cpc-primary);
            line-height: 1.2;
            letter-spacing: -1px;
        }
        .stat-card .stat-number .unit {
            font-size: 18px;
            font-weight: 600;
            color: var(--cpc-text-muted);
            margin-left: 4px;
        }
        .stat-card .stat-label {
            font-size: 14px;
            color: var(--cpc-text-muted);
            margin-top: 8px;
            font-weight: 500;
        }
        .stat-card .stat-icon {
            font-size: 22px;
            color: var(--cpc-accent);
            margin-bottom: 10px;
        }

        /* ========== DATA TABLE ========== */
        .table-wrapper {
            border-radius: var(--cpc-radius-lg);
            overflow: hidden;
            border: 1px solid var(--cpc-divider);
            box-shadow: var(--cpc-shadow-sm);
            background: #fff;
        }
        .table-header-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 24px;
            background: #fff;
            border-bottom: 2px solid var(--cpc-primary);
            flex-wrap: wrap;
            gap: 8px;
        }
        .table-header-bar h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--cpc-primary);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .table-header-bar h3 i {
            color: var(--cpc-accent);
        }
        .table-header-bar .update-badge {
            font-size: 12px;
            color: var(--cpc-text-muted);
            background: #f7f8f9;
            padding: 4px 12px;
            border-radius: 14px;
            font-family: var(--cpc-font-mono);
        }
        .cpc-table {
            width: 100%;
            margin: 0;
            border-collapse: separate;
            border-spacing: 0;
            font-size: 14px;
        }
        .cpc-table thead th {
            background: #f7f8f9;
            color: #1b1f24;
            font-weight: 700;
            font-size: 13px;
            padding: 14px 16px;
            text-align: left;
            border-bottom: 2px solid #e2e5ea;
            white-space: nowrap;
            letter-spacing: 0.3px;
        }
        .cpc-table tbody td {
            padding: 13px 16px;
            border-bottom: 1px solid #edeef0;
            color: #1b1f24;
            vertical-align: middle;
            white-space: nowrap;
        }
        .cpc-table tbody tr {
            transition: background 0.2s;
        }
        .cpc-table tbody tr:hover { background: rgba(0, 230, 118, 0.04); }
        .cpc-table tbody tr:last-child td { border-bottom: none; }
        .cpc-table .team-cell {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            white-space: nowrap;
        }
        .cpc-table .team-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--cpc-accent);
            flex-shrink: 0;
        }
        .cpc-table .badge-win {
            background: rgba(0, 139, 63, 0.1);
            color: #008b3f;
            padding: 4px 12px;
            border-radius: 14px;
            font-weight: 600;
            font-size: 12px;
        }
        .cpc-table .badge-draw {
            background: rgba(255, 171, 0, 0.12);
            color: #b07800;
            padding: 4px 12px;
            border-radius: 14px;
            font-weight: 600;
            font-size: 12px;
        }
        .cpc-table .badge-loss {
            background: rgba(198, 40, 40, 0.1);
            color: #c62828;
            padding: 4px 12px;
            border-radius: 14px;
            font-weight: 600;
            font-size: 12px;
        }
        .cpc-table .mono {
            font-family: var(--cpc-font-mono);
            font-size: 13px;
            letter-spacing: 0.3px;
        }
        .table-scroll {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .table-scroll::-webkit-scrollbar { height: 6px; }
        .table-scroll::-webkit-scrollbar-track { background: #f7f8f9; }
        .table-scroll::-webkit-scrollbar-thumb { background: #d0d3d8; border-radius: 3px; }

        /* ========== GOAL DISTRIBUTION ========== */
        .goal-bars {
            display: flex;
            flex-direction: column;
            gap: 14px;
            padding: 12px 0;
        }
        .goal-bar-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .goal-bar-item .goal-label {
            width: 80px;
            font-size: 13px;
            font-weight: 600;
            color: var(--cpc-text-muted);
            flex-shrink: 0;
            text-align: right;
        }
        .goal-bar-item .goal-track {
            flex: 1;
            height: 22px;
            background: #f7f8f9;
            border-radius: 11px;
            overflow: hidden;
            position: relative;
        }
        .goal-bar-item .goal-fill {
            height: 100%;
            border-radius: 11px;
            background: linear-gradient(90deg, #00e676, #00c853);
            transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding-right: 10px;
            font-size: 12px;
            font-weight: 700;
            color: #0f1115;
            font-family: var(--cpc-font-mono);
            min-width: 24px;
        }
        .goal-bar-item .goal-fill.gold-fill {
            background: linear-gradient(90deg, #ffab00, #ffd54f);
        }
        .goal-bar-item .goal-fill.red-fill {
            background: linear-gradient(90deg, #c62828, #ef5350);
            color: #fff;
        }
        .goal-bar-item .goal-percent {
            width: 50px;
            font-family: var(--cpc-font-mono);
            font-size: 13px;
            font-weight: 700;
            color: var(--cpc-primary);
            flex-shrink: 0;
        }

        /* ========== INFO PANEL ========== */
        .info-panel {
            background: #fff;
            border-radius: var(--cpc-radius-lg);
            border: 1px solid var(--cpc-divider);
            box-shadow: var(--cpc-shadow-sm);
            padding: 28px 30px;
        }
        .info-panel h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--cpc-primary);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .info-panel h4 i { color: var(--cpc-accent); }
        .info-panel p {
            color: var(--cpc-text-muted);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 10px;
        }
        .info-panel .info-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .info-panel .info-list li {
            padding: 10px 0;
            border-bottom: 1px solid var(--cpc-divider);
            font-size: 14px;
            color: var(--cpc-text-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .info-panel .info-list li:last-child { border-bottom: none; }
        .info-panel .info-list li i {
            color: var(--cpc-accent);
            font-size: 14px;
            flex-shrink: 0;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            background: linear-gradient(135deg, #0f1115 0%, #1a2028 60%, #16201c 100%);
            padding: 72px 48px;
            border-radius: var(--cpc-radius-lg);
            position: relative;
            overflow: hidden;
            margin-bottom: 20px;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 230, 118, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-section h2 {
            color: #fff;
            font-size: clamp(24px, 3vw, 34px);
            font-weight: 800;
            margin-bottom: 12px;
            position: relative;
            z-index: 2;
        }
        .cta-section p {
            color: rgba(255, 255, 255, 0.65);
            font-size: 16px;
            max-width: 560px;
            margin-bottom: 28px;
            position: relative;
            z-index: 2;
            line-height: 1.8;
        }
        .btn-cpc-primary {
            background: var(--cpc-primary);
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: var(--cpc-radius-sm);
            font-weight: 600;
            font-size: 15px;
            transition: var(--cpc-transition);
            display: inline-block;
            cursor: pointer;
            position: relative;
            z-index: 2;
        }
        .btn-cpc-primary:hover {
            background: var(--cpc-accent);
            color: var(--cpc-primary);
        }
        .btn-cpc-secondary {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.4);
            padding: 12px 28px;
            border-radius: var(--cpc-radius-sm);
            font-weight: 600;
            font-size: 15px;
            transition: var(--cpc-transition);
            display: inline-block;
            cursor: pointer;
            position: relative;
            z-index: 2;
        }
        .btn-cpc-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--cpc-accent);
            color: var(--cpc-accent);
        }

        /* ========== FAQ ========== */
        .faq-item {
            background: #fff;
            border-radius: var(--cpc-radius-md);
            border: 1px solid var(--cpc-divider);
            box-shadow: var(--cpc-shadow-sm);
            margin-bottom: 12px;
            overflow: hidden;
            transition: var(--cpc-transition);
        }
        .faq-item:hover { box-shadow: var(--cpc-shadow-lg); }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 24px;
            cursor: pointer;
            font-weight: 700;
            font-size: 16px;
            color: var(--cpc-primary);
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            gap: 16px;
            transition: var(--cpc-transition);
        }
        .faq-question:hover { color: #008b3f; }
        .faq-question .faq-icon {
            color: var(--cpc-accent);
            transition: transform 0.3s;
            flex-shrink: 0;
        }
        .faq-item.open .faq-icon { transform: rotate(180deg); }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0 24px;
            color: var(--cpc-text-muted);
            font-size: 15px;
            line-height: 1.8;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 24px 20px;
        }
        .faq-answer p { margin: 0; }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--cpc-primary);
            color: rgba(255, 255, 255, 0.65);
            padding: 56px 0 0;
            margin-top: 48px;
        }
        .site-footer h5 {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 18px;
        }
        .site-footer h4 {
            color: #fff;
            font-size: 22px;
            font-weight: 800;
            letter-spacing: 1px;
        }
        .site-footer p {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.5);
        }
        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
            gap: 36px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .site-footer .footer-links a {
            display: block;
            color: rgba(255, 255, 255, 0.55);
            font-size: 14px;
            padding: 5px 0;
            transition: var(--cpc-transition);
        }
        .site-footer .footer-links a:hover {
            color: var(--cpc-accent);
            transform: translateX(3px);
        }
        .site-footer .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 8px;
            padding: 20px 0 24px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }
        .site-footer .footer-bottom .sep { opacity: 0.3; }
        .site-footer .footer-bottom a {
            color: rgba(255, 255, 255, 0.5);
            font-size: 13px;
        }
        .site-footer .footer-bottom a:hover { color: var(--cpc-accent); }

        /* ========== BACK TO TOP ========== */
        .back-to-top {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--cpc-primary);
            color: #fff;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            z-index: 1025;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
            transition: var(--cpc-transition);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
        }
        .back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
        .back-to-top:hover {
            background: var(--cpc-accent);
            color: var(--cpc-primary);
        }

        /* ========== RESPONSIVE ========== */
        @media (min-width: 1200px) {
            :root { --cpc-sidebar-width: 240px; }
            .sidebar { width: 240px; }
            .main-content { margin-left: 240px; }
            .page-banner { padding: 56px 48px 44px; }
            .cta-section { padding: 72px 48px; }
        }
        @media (max-width: 1199.98px) {
            :root { --cpc-sidebar-width: 72px; }
            .sidebar { width: 72px; }
            .sidebar-brand { justify-content: center; padding: 20px 0; }
            .sidebar-brand .brand-text { opacity: 0; position: absolute; }
            .sidebar-nav a.nav-item { justify-content: center; padding: 14px 0; }
            .sidebar-nav a.nav-item .nav-text { opacity: 0; position: absolute; }
            .sidebar-footer { text-align: center; font-size: 9px; white-space: normal; }
            .main-content { margin-left: 72px; }
            .page-banner { padding: 44px 32px 36px; }
            .section-title { font-size: 24px; }
            .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
            .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
        }
        @media (max-width: 991.98px) {
            .sidebar { display: none; }
            .mobile-topbar { display: flex; }
            .main-content { margin-left: 0; padding-top: 56px; }
            .page-banner { padding: 36px 20px 32px; }
            .page-banner h1 { font-size: 26px; }
            .page-banner p { font-size: 15px; }
            .section-title { font-size: 22px; }
            .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .stat-card .stat-number { font-size: 30px; }
            .cta-section { padding: 48px 24px; }
            .site-footer .footer-grid { grid-template-columns: 1fr; gap: 20px; }
            .site-footer { padding: 40px 0 0; }
            .site-footer .footer-bottom { flex-direction: column; text-align: center; gap: 4px; }
            .site-footer .footer-bottom .sep { display: none; }
        }
        @media (max-width: 767.98px) {
            body { font-size: 14px; }
            .page-banner { padding: 28px 16px 24px; }
            .page-banner h1 { font-size: 22px; }
            .page-banner p { font-size: 14px; }
            .stat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
            .stat-card { padding: 16px 12px; }
            .stat-card .stat-number { font-size: 24px; }
            .stat-card .stat-number .unit { font-size: 14px; }
            .stat-card .stat-label { font-size: 12px; }
            .table-header-bar { padding: 14px 16px; flex-direction: column; align-items: flex-start; }
            .cpc-table thead th { padding: 10px 12px; font-size: 12px; }
            .cpc-table tbody td { padding: 10px 12px; font-size: 12px; }
            .info-panel { padding: 18px 16px; }
            .goal-bar-item .goal-label { width: 56px; font-size: 12px; }
            .goal-bar-item .goal-percent { width: 40px; font-size: 12px; }
            .cta-section { padding: 36px 20px; }
            .cta-section h2 { font-size: 22px; }
            .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; font-size: 18px; }
        }
        @media (max-width: 575.98px) {
            .stat-grid { grid-template-columns: 1fr; gap: 10px; }
            .page-banner h1 { font-size: 20px; }
            .page-banner .banner-tag { font-size: 11px; padding: 4px 12px; }
            .cpc-table { font-size: 11px; }
            .cpc-table .team-cell { gap: 6px; }
            .goal-bar-item .goal-label { width: 48px; font-size: 11px; }
            .btn-cpc-primary, .btn-cpc-secondary { width: 100%; text-align: center; padding: 12px 20px; }
            .cta-section h2 { font-size: 20px; }
            .site-footer .footer-bottom { font-size: 11px; }
        }

/* roulang page: category4 */
:root {
            --cpc-primary: #0f1115;
            --cpc-accent: #00e676;
            --cpc-gold: #ffab00;
            --cpc-bg-light: #f7f8f9;
            --cpc-card: #ffffff;
            --cpc-bg-dark: #161a20;
            --cpc-text-dark: #1b1f24;
            --cpc-text-muted: #5b6470;
            --cpc-border: #e2e5ea;
            --cpc-divider: #edeef0;
            --cpc-green: #008b3f;
            --cpc-red: #c62828;
            --cpc-radius-lg: 16px;
            --cpc-radius-md: 10px;
            --cpc-radius-sm: 8px;
            --cpc-shadow-sm: 0 4px 12px rgba(0,0,0,0.06);
            --cpc-shadow-lg: 0 10px 26px rgba(0,0,0,0.12);
            --cpc-shadow-dark: 0 8px 18px rgba(0,0,0,0.35);
            --cpc-font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            --cpc-font-mono: "Roboto Mono", "SF Mono", "Consolas", monospace;
            --cpc-sidebar-width: 240px;
            --cpc-sidebar-narrow: 72px;
            --cpc-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        :root {
            --cpc-sidebar-width: 240px;
        }
        html {
            scroll-behavior: smooth;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        body {
            font-family: var(--cpc-font-sans);
            font-size: 16px;
            line-height: 1.85;
            color: var(--cpc-text-dark);
            background: var(--cpc-bg-light);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: var(--cpc-primary);
            text-decoration: none;
            transition: var(--cpc-transition);
        }
        a:hover {
            color: var(--cpc-accent);
        }
        a:focus-visible {
            outline: 2px solid var(--cpc-accent);
            outline-offset: 2px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            display: block;
        }
        button:focus-visible {
            outline: 2px solid var(--cpc-accent);
            outline-offset: 2px;
        }
        input:focus-visible {
            outline: none;
            border-color: var(--cpc-accent);
            box-shadow: 0 0 0 3px rgba(0,230,118,0.15);
        }
        .container {
            max-width: 1200px;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* ========== SIDEBAR NAV ========== */
        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            width: var(--cpc-sidebar-width);
            background: var(--cpc-primary);
            z-index: 1030;
            display: flex;
            flex-direction: column;
            transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }
        .sidebar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 20px 18px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            min-height: 76px;
            flex-shrink: 0;
        }
        .sidebar-brand .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(0,230,118,0.2), rgba(0,230,118,0.05));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--cpc-accent);
            flex-shrink: 0;
            border: 1px solid rgba(0,230,118,0.3);
        }
        .sidebar-brand .brand-text {
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 1px;
            white-space: nowrap;
            opacity: 1;
            transition: opacity 0.25s;
        }
        .sidebar-brand .brand-text small {
            display: block;
            font-size: 10px;
            font-weight: 400;
            color: rgba(255,255,255,0.5);
            letter-spacing: 0.5px;
            margin-top: -2px;
        }
        .sidebar-nav {
            flex: 1;
            padding: 16px 0;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .sidebar-nav a.nav-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 18px;
            color: rgba(255,255,255,0.65);
            font-size: 14px;
            font-weight: 500;
            border-left: 3px solid transparent;
            transition: var(--cpc-transition);
            white-space: nowrap;
            position: relative;
        }
        .sidebar-nav a.nav-item i {
            font-size: 18px;
            width: 24px;
            text-align: center;
            flex-shrink: 0;
            transition: var(--cpc-transition);
        }
        .sidebar-nav a.nav-item .nav-text {
            opacity: 1;
            transition: opacity 0.25s;
        }
        .sidebar-nav a.nav-item:hover {
            color: #fff;
            background: rgba(0,230,118,0.08);
            border-left-color: rgba(0,230,118,0.4);
        }
        .sidebar-nav a.nav-item:hover i {
            transform: translateX(3px);
        }
        .sidebar-nav a.nav-item.active {
            color: #fff;
            background: rgba(0,230,118,0.12);
            border-left-color: var(--cpc-accent);
            font-weight: 600;
        }
        .sidebar-nav a.nav-item.home-link {
            margin-bottom: 8px;
        }
        .sidebar-footer {
            padding: 14px 18px;
            border-top: 1px solid rgba(255,255,255,0.08);
            font-size: 11px;
            color: rgba(255,255,255,0.35);
            white-space: nowrap;
            flex-shrink: 0;
        }

        /* ========== MAIN CONTENT ========== */
        .main-content {
            margin-left: var(--cpc-sidebar-width);
            flex: 1;
            min-height: 100vh;
            transition: margin-left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        /* ========== MOBILE TOPBAR ========== */
        .mobile-topbar {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 56px;
            background: var(--cpc-primary);
            z-index: 1035;
            align-items: center;
            padding: 0 16px;
            gap: 12px;
        }
        .mobile-topbar .hamburger-btn {
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--cpc-transition);
        }
        .mobile-topbar .hamburger-btn:hover {
            color: var(--cpc-accent);
        }
        .mobile-topbar .mobile-brand {
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 1px;
        }
        .mobile-topbar .mobile-brand span {
            color: var(--cpc-accent);
        }

        /* ========== DRAWER OVERLAY ========== */
        .drawer-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.55);
            z-index: 1040;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .drawer-overlay.show {
            display: block;
            opacity: 1;
        }

        /* ========== PAGE BANNER ========== */
        .page-banner {
            background: var(--cpc-primary);
            padding: 72px 0 56px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .page-banner::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 500px;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(0,230,118,0.15), transparent 70%);
            pointer-events: none;
        }
        .page-banner .banner-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0,230,118,0.15);
            color: var(--cpc-accent);
            padding: 6px 16px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
            border: 1px solid rgba(0,230,118,0.3);
        }
        .page-banner h1 {
            font-size: 44px;
            font-weight: 800;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
            color: #fff;
        }
        .page-banner h1 .highlight {
            color: var(--cpc-accent);
            border-bottom: 3px solid var(--cpc-accent);
            padding-bottom: 4px;
        }
        .page-banner .banner-desc {
            font-size: 17px;
            color: rgba(255,255,255,0.75);
            max-width: 720px;
            line-height: 1.8;
            margin-bottom: 0;
        }

        /* ========== SECTION COMMON ========== */
        .section-block {
            padding: 72px 0;
        }
        @media (max-width: 768px) {
            .section-block {
                padding: 48px 0;
            }
        }
        .section-title {
            font-size: 32px;
            font-weight: 700;
            letter-spacing: 0.3px;
            color: var(--cpc-primary);
            margin-bottom: 12px;
        }
        .section-subtitle {
            font-size: 16px;
            color: var(--cpc-text-muted);
            line-height: 1.8;
            margin-bottom: 32px;
        }
        .accent-line {
            display: inline-block;
            width: 44px;
            height: 3px;
            background: var(--cpc-accent);
            border-radius: 2px;
            margin-bottom: 16px;
        }

        /* ========== LONG READ CARD ========== */
        .long-read-card {
            background: var(--cpc-card);
            border-radius: var(--cpc-radius-lg);
            box-shadow: var(--cpc-shadow-sm);
            padding: 40px 48px;
            border: 1px solid var(--cpc-divider);
            transition: var(--cpc-transition);
        }
        @media (max-width: 768px) {
            .long-read-card {
                padding: 24px 20px;
            }
        }
        .long-read-card:hover {
            box-shadow: var(--cpc-shadow-lg);
        }
        .long-read-card h2 {
            font-size: 26px;
            font-weight: 700;
            color: var(--cpc-primary);
            margin: 32px 0 16px;
            scroll-margin-top: 80px;
        }
        .long-read-card h2:first-child {
            margin-top: 0;
        }
        .long-read-card h3 {
            font-size: 19px;
            font-weight: 600;
            color: var(--cpc-primary);
            margin: 24px 0 12px;
            scroll-margin-top: 80px;
        }
        .long-read-card p {
            font-size: 16px;
            line-height: 1.9;
            color: var(--cpc-text-dark);
            margin-bottom: 16px;
        }
        .long-read-card ul,
        .long-read-card ol {
            padding-left: 24px;
            margin-bottom: 16px;
        }
        .long-read-card li {
            font-size: 15px;
            line-height: 1.9;
            color: var(--cpc-text-dark);
            margin-bottom: 8px;
        }
        .long-read-card .mono-num {
            font-family: var(--cpc-font-mono);
            font-size: 14px;
            background: #f0f1f3;
            padding: 2px 8px;
            border-radius: 4px;
            letter-spacing: 0.5px;
        }

        /* chart placeholder */
        .chart-placeholder {
            background: var(--cpc-bg-dark);
            border-radius: var(--cpc-radius-md);
            overflow: hidden;
            margin: 28px 0;
            position: relative;
            aspect-ratio: 16/7;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 20px;
            border: 1px solid rgba(255,255,255,0.08);
        }
        .chart-placeholder .chart-label {
            background: rgba(0,0,0,0.65);
            color: #fff;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 13px;
            letter-spacing: 0.5px;
            backdrop-filter: blur(6px);
        }
        .chart-placeholder .chart-label i {
            color: var(--cpc-accent);
            margin-right: 6px;
        }

        /* ========== INFO CARDS ROW ========== */
        .info-card-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 28px;
        }
        .info-mini-card {
            background: var(--cpc-bg-light);
            border-radius: var(--cpc-radius-md);
            padding: 20px 24px;
            border: 1px solid var(--cpc-divider);
            transition: var(--cpc-transition);
        }
        .info-mini-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--cpc-shadow-sm);
            background: #fff;
            border-color: var(--cpc-border);
        }
        .info-mini-card .info-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: rgba(0,230,118,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--cpc-accent);
            margin-bottom: 12px;
            flex-shrink: 0;
        }
        .info-mini-card .info-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--cpc-primary);
            margin-bottom: 6px;
        }
        .info-mini-card .info-desc {
            font-size: 14px;
            color: var(--cpc-text-muted);
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* ========== DATA TABLE WRAPPER ========== */
        .table-wrapper {
            background: var(--cpc-card);
            border-radius: var(--cpc-radius-md);
            box-shadow: var(--cpc-shadow-sm);
            overflow: hidden;
            border: 1px solid var(--cpc-divider);
            margin-top: 24px;
        }
        .table-wrapper .table-header {
            background: var(--cpc-primary);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .table-wrapper .table-header h3 {
            color: #fff;
            font-size: 17px;
            font-weight: 700;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .table-wrapper .table-header h3 i {
            color: var(--cpc-accent);
        }
        .table-wrapper .table-header .badge-live {
            background: rgba(0,230,118,0.2);
            color: var(--cpc-accent);
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            border: 1px solid rgba(0,230,118,0.3);
        }
        .odds-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }
        .odds-table thead th {
            background: #f0f1f3;
            color: var(--cpc-text-muted);
            font-weight: 600;
            text-align: left;
            padding: 12px 16px;
            font-size: 12px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            border-bottom: 1px solid var(--cpc-border);
        }
        .odds-table tbody td {
            padding: 14px 16px;
            border-bottom: 1px solid var(--cpc-divider);
            color: var(--cpc-text-dark);
            font-weight: 500;
        }
        .odds-table tbody tr:last-child td {
            border-bottom: none;
        }
        .odds-table .mono-cell {
            font-family: var(--cpc-font-mono);
            font-size: 13px;
            letter-spacing: 0.3px;
        }
        .odds-table .trend-up {
            color: var(--cpc-green);
            font-weight: 700;
        }
        .odds-table .trend-down {
            color: var(--cpc-red);
            font-weight: 700;
        }
        .odds-table .trend-flat {
            color: var(--cpc-text-muted);
        }

        /* ========== FAQ ACCORDION ========== */
        .faq-accordion .accordion-item {
            border: 1px solid var(--cpc-divider);
            border-radius: var(--cpc-radius-md) !important;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: var(--cpc-shadow-sm);
            background: var(--cpc-card);
        }
        .faq-accordion .accordion-button {
            font-size: 16px;
            font-weight: 700;
            color: var(--cpc-primary);
            padding: 18px 20px;
            background: var(--cpc-card);
            box-shadow: none;
            border-radius: var(--cpc-radius-md) !important;
        }
        .faq-accordion .accordion-button:not(.collapsed) {
            background: var(--cpc-card);
            color: var(--cpc-primary);
            box-shadow: none;
        }
        .faq-accordion .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(0,230,118,0.15);
            border-color: var(--cpc-accent);
        }
        .faq-accordion .accordion-button::after {
            filter: brightness(0.3);
            background-size: 16px;
        }
        .faq-accordion .accordion-button:not(.collapsed)::after {
            filter: brightness(0.3);
            transform: rotate(180deg);
        }
        .faq-accordion .accordion-body {
            font-size: 15px;
            line-height: 1.85;
            color: var(--cpc-text-muted);
            padding: 16px 20px 20px 20px;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            background: var(--cpc-bg-dark);
            padding: 72px 0;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at top right, rgba(0,230,118,0.12), transparent 55%);
            pointer-events: none;
        }
        .cta-section h2 {
            font-size: 36px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .cta-section h2 .highlight {
            color: var(--cpc-accent);
        }
        .cta-section p {
            font-size: 17px;
            color: rgba(255,255,255,0.7);
            max-width: 700px;
            line-height: 1.8;
            margin-bottom: 32px;
        }
        .cta-section .btn-primary-cpc {
            background: var(--cpc-accent);
            color: var(--cpc-primary);
            font-weight: 700;
            padding: 14px 28px;
            border-radius: 8px;
            border: none;
            transition: var(--cpc-transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            letter-spacing: 0.3px;
        }
        .cta-section .btn-primary-cpc:hover {
            background: #00c853;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,230,118,0.3);
            color: var(--cpc-primary);
        }
        .cta-section .btn-outline-cpc {
            background: transparent;
            color: #fff;
            font-weight: 600;
            padding: 13px 24px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.4);
            transition: var(--cpc-transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            letter-spacing: 0.3px;
        }
        .cta-section .btn-outline-cpc:hover {
            border-color: var(--cpc-accent);
            color: var(--cpc-accent);
            background: rgba(0,230,118,0.08);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--cpc-primary);
            color: rgba(255,255,255,0.7);
            padding: 56px 0 24px;
            margin-top: auto;
        }
        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        @media (max-width: 992px) {
            .site-footer .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 576px) {
            .site-footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .site-footer .footer-brand h4 {
            color: #fff;
            font-size: 22px;
            font-weight: 800;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }
        .site-footer .footer-brand h4 span {
            color: var(--cpc-accent);
        }
        .site-footer .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255,255,255,0.55);
            max-width: 320px;
        }
        .site-footer .footer-links h5 {
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: 0.3px;
        }
        .site-footer .footer-links a {
            display: block;
            color: rgba(255,255,255,0.55);
            font-size: 14px;
            line-height: 2.2;
            transition: var(--cpc-transition);
        }
        .site-footer .footer-links a:hover {
            color: var(--cpc-accent);
            padding-left: 4px;
        }
        .site-footer .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px 16px;
            font-size: 13px;
            color: rgba(255,255,255,0.4);
        }
        .site-footer .footer-bottom .sep {
            color: rgba(255,255,255,0.2);
        }
        .site-footer .footer-bottom a {
            color: rgba(255,255,255,0.5);
            font-size: 13px;
            transition: var(--cpc-transition);
        }
        .site-footer .footer-bottom a:hover {
            color: var(--cpc-accent);
        }

        /* ========== BACK TO TOP ========== */
        .back-to-top {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--cpc-primary);
            color: #fff;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: var(--cpc-transition);
            z-index: 1025;
            box-shadow: var(--cpc-shadow-lg);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
        }
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .back-to-top:hover {
            background: var(--cpc-accent);
            color: var(--cpc-primary);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1199px) {
            :root {
                --cpc-sidebar-width: 72px;
            }
            .sidebar-brand .brand-text {
                opacity: 0;
                width: 0;
                overflow: hidden;
            }
            .sidebar-brand {
                justify-content: center;
                padding: 16px 12px;
            }
            .sidebar-brand .logo-icon {
                width: 36px;
                height: 36px;
                font-size: 18px;
            }
            .sidebar-nav a.nav-item {
                padding: 12px 14px;
                justify-content: center;
            }
            .sidebar-nav a.nav-item .nav-text {
                opacity: 0;
                width: 0;
                overflow: hidden;
            }
            .sidebar-nav a.nav-item i {
                font-size: 20px;
                width: auto;
            }
            .sidebar-footer {
                padding: 12px 10px;
                text-align: center;
                font-size: 0;
            }
            .sidebar-footer br {
                display: none;
            }
            .main-content {
                margin-left: var(--cpc-sidebar-width);
            }
        }
        @media (max-width: 991px) {
            .sidebar {
                transform: translateX(-100%);
                transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                width: 280px;
            }
            .sidebar.mobile-open {
                transform: translateX(0);
            }
            .sidebar-brand .brand-text {
                opacity: 1;
                width: auto;
                overflow: visible;
            }
            .sidebar-brand {
                justify-content: flex-start;
                padding: 20px 18px;
            }
            .sidebar-brand .logo-icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
            .sidebar-nav a.nav-item {
                padding: 12px 18px;
                justify-content: flex-start;
            }
            .sidebar-nav a.nav-item .nav-text {
                opacity: 1;
                width: auto;
                overflow: visible;
            }
            .sidebar-nav a.nav-item i {
                font-size: 18px;
                width: 24px;
            }
            .sidebar-footer {
                padding: 14px 18px;
                text-align: left;
                font-size: 11px;
            }
            .sidebar-footer br {
                display: block;
            }
            .main-content {
                margin-left: 0;
            }
            .mobile-topbar {
                display: flex;
            }
            .page-banner {
                padding-top: 88px;
            }
        }
        @media (max-width: 576px) {
            .page-banner h1 {
                font-size: 30px;
            }
            .page-banner .banner-desc {
                font-size: 15px;
            }
            .section-title {
                font-size: 26px;
            }
            .long-read-card {
                padding: 20px 16px;
            }
            .long-read-card h2 {
                font-size: 22px;
            }
            .chart-placeholder {
                aspect-ratio: 16/9;
            }
            .info-card-row {
                grid-template-columns: 1fr;
            }
            .cta-section h2 {
                font-size: 28px;
            }
            .cta-section .btn-primary-cpc,
            .cta-section .btn-outline-cpc {
                width: 100%;
                justify-content: center;
            }
            .odds-table {
                font-size: 12px;
            }
            .odds-table thead th,
            .odds-table tbody td {
                padding: 10px 8px;
            }
            .site-footer .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
            .site-footer .footer-bottom .sep {
                display: none;
            }
        }

/* roulang page: category6 */
:root {
            --cpc-primary: #0f1115;
            --cpc-accent: #00e676;
            --cpc-gold: #ffab00;
            --cpc-bg-light: #f7f8f9;
            --cpc-card: #ffffff;
            --cpc-bg-dark: #161a20;
            --cpc-text-dark: #1b1f24;
            --cpc-text-muted: #5b6470;
            --cpc-border: #e2e5ea;
            --cpc-divider: #edeef0;
            --cpc-green: #008b3f;
            --cpc-red: #c62828;
            --cpc-radius-lg: 16px;
            --cpc-radius-md: 10px;
            --cpc-radius-sm: 8px;
            --cpc-shadow-sm: 0 4px 12px rgba(0,0,0,0.06);
            --cpc-shadow-lg: 0 10px 26px rgba(0,0,0,0.12);
            --cpc-shadow-dark: 0 8px 18px rgba(0,0,0,0.35);
            --cpc-font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            --cpc-font-mono: "Roboto Mono", "SF Mono", "Consolas", monospace;
            --cpc-sidebar-width: 240px;
            --cpc-sidebar-narrow: 72px;
            --cpc-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--cpc-font-sans);
            font-size: 16px;
            line-height: 1.85;
            color: var(--cpc-text-dark);
            background: var(--cpc-bg-light);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: var(--cpc-primary);
            text-decoration: none;
            transition: var(--cpc-transition);
        }
        a:hover { color: var(--cpc-accent); }
        a:focus-visible { outline: 2px solid var(--cpc-accent); outline-offset: 2px; border-radius: 4px; }
        img { max-width: 100%; display: block; }
        button:focus-visible { outline: 2px solid var(--cpc-accent); outline-offset: 2px; }
        input:focus-visible { outline: none; border-color: var(--cpc-accent); box-shadow: 0 0 0 3px rgba(0,230,118,0.15); }

        .sidebar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 20px 18px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            min-height: 76px;
            flex-shrink: 0;
        }
        .sidebar-brand .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(0,230,118,0.2), rgba(0,230,118,0.05));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--cpc-accent);
            flex-shrink: 0;
            border: 1px solid rgba(0,230,118,0.3);
        }
        .sidebar-brand .brand-text {
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 1px;
            white-space: nowrap;
            opacity: 1;
            transition: opacity 0.25s;
        }
        .sidebar-brand .brand-text small {
            display: block;
            font-size: 10px;
            font-weight: 400;
            color: rgba(255,255,255,0.5);
            letter-spacing: 0.5px;
            margin-top: -2px;
        }
        .sidebar-nav {
            flex: 1;
            padding: 16px 0;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .sidebar-nav a.nav-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 18px;
            color: rgba(255,255,255,0.65);
            font-size: 14px;
            font-weight: 500;
            border-left: 3px solid transparent;
            transition: var(--cpc-transition);
            white-space: nowrap;
            position: relative;
        }
        .sidebar-nav a.nav-item i {
            font-size: 18px;
            width: 24px;
            text-align: center;
            flex-shrink: 0;
            transition: var(--cpc-transition);
        }
        .sidebar-nav a.nav-item .nav-text {
            opacity: 1;
            transition: opacity 0.25s;
        }
        .sidebar-nav a.nav-item:hover {
            color: #fff;
            background: rgba(0,230,118,0.08);
            border-left-color: rgba(0,230,118,0.4);
        }
        .sidebar-nav a.nav-item:hover i { transform: translateX(3px); }
        .sidebar-nav a.nav-item.active {
            color: #fff;
            background: rgba(0,230,118,0.12);
            border-left-color: var(--cpc-accent);
            font-weight: 600;
        }
        .sidebar-nav a.nav-item.home-link { margin-bottom: 8px; }
        .sidebar-footer {
            padding: 14px 18px;
            border-top: 1px solid rgba(255,255,255,0.08);
            font-size: 11px;
            color: rgba(255,255,255,0.35);
            white-space: nowrap;
            flex-shrink: 0;
        }

        .main-content {
            margin-left: var(--cpc-sidebar-width);
            flex: 1;
            min-height: 100vh;
            transition: margin-left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        /* Mobile topbar */
        .mobile-topbar {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 56px;
            background: var(--cpc-primary);
            z-index: 1035;
            align-items: center;
            padding: 0 16px;
            gap: 12px;
        }
        .mobile-topbar .hamburger-btn {
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--cpc-transition);
        }
        .mobile-topbar .hamburger-btn:hover { color: var(--cpc-accent); }
        .mobile-topbar .mobile-logo {
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 1px;
        }

        .mobile-drawer-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.55);
            z-index: 1036;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .mobile-drawer-overlay.show { opacity: 1; }

        .mobile-drawer {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100vh;
            background: var(--cpc-primary);
            z-index: 1037;
            transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }
        .mobile-drawer.show { left: 0; }
        .mobile-drawer .sidebar-brand { flex-shrink: 0; }
        .mobile-drawer .sidebar-nav { flex: 1; }
        .mobile-drawer .sidebar-footer { flex-shrink: 0; }

        /* Page banner */
        .page-banner {
            background: linear-gradient(135deg, rgba(15,17,21,0.92) 0%, rgba(22,26,32,0.85) 100%),
                        url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            color: #fff;
            padding: 72px 0 56px;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .page-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(0,230,118,0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .page-banner h1 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            letter-spacing: 1px;
            color: #fff;
            position: relative;
            z-index: 1;
        }
        .page-banner h1 .highlight {
            color: var(--cpc-accent);
            border-bottom: 3px solid rgba(0,230,118,0.5);
            padding-bottom: 2px;
        }
        .page-banner p {
            font-size: 17px;
            color: rgba(255,255,255,0.75);
            max-width: 680px;
            position: relative;
            z-index: 1;
            margin-top: 12px;
        }
        .page-banner .banner-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 24px;
            position: relative;
            z-index: 1;
        }
        .page-banner .banner-meta span {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: var(--cpc-font-mono);
        }
        .page-banner .banner-meta i { color: var(--cpc-accent); }

        /* Stats overview */
        .stats-section {
            padding: 48px 0 32px;
            background: var(--cpc-card);
            border-bottom: 1px solid var(--cpc-divider);
        }
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 12px;
            border-radius: var(--cpc-radius-md);
            background: var(--cpc-bg-light);
            transition: var(--cpc-transition);
        }
        .stat-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--cpc-shadow-sm);
            background: #fff;
        }
        .stat-number {
            font-size: 36px;
            font-weight: 800;
            color: var(--cpc-primary);
            font-family: var(--cpc-font-mono);
            line-height: 1.2;
        }
        .stat-number.green { color: var(--cpc-green); }
        .stat-number.gold { color: var(--cpc-gold); }
        .stat-number.accent { color: var(--cpc-accent); }
        .stat-label {
            font-size: 13px;
            color: var(--cpc-text-muted);
            margin-top: 6px;
        }

        /* Timeline section */
        .timeline-section {
            padding: 64px 0 80px;
            background: var(--cpc-bg-light);
        }
        .section-header {
            margin-bottom: 40px;
        }
        .section-header h2 {
            font-size: clamp(26px, 3vw, 34px);
            font-weight: 800;
            color: var(--cpc-primary);
            letter-spacing: 0.5px;
        }
        .section-header p {
            color: var(--cpc-text-muted);
            font-size: 15px;
            max-width: 640px;
            margin-top: 8px;
        }

        .timeline {
            position: relative;
            padding-left: 60px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 24px;
            top: 8px;
            bottom: 8px;
            width: 2px;
            background: linear-gradient(to bottom, var(--cpc-accent), var(--cpc-border));
        }
        .timeline-date-anchor {
            position: relative;
            margin-bottom: 28px;
        }
        .timeline-date-anchor::before {
            content: '';
            position: absolute;
            left: -44px;
            top: 6px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--cpc-primary);
            border: 3px solid var(--cpc-accent);
            box-shadow: 0 0 0 4px rgba(0,230,118,0.15);
        }
        .timeline-date-label {
            display: inline-block;
            font-family: var(--cpc-font-mono);
            font-size: 14px;
            font-weight: 700;
            color: var(--cpc-primary);
            background: var(--cpc-card);
            padding: 6px 16px;
            border-radius: 20px;
            border: 1px solid var(--cpc-border);
            letter-spacing: 0.5px;
        }
        .timeline-results-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .result-card {
            background: var(--cpc-card);
            border-radius: var(--cpc-radius-md);
            padding: 18px 20px;
            box-shadow: var(--cpc-shadow-sm);
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            transition: var(--cpc-transition);
            border: 1px solid var(--cpc-divider);
        }
        .result-card:hover {
            box-shadow: var(--cpc-shadow-lg);
            transform: translateY(-2px);
            border-color: rgba(0,230,118,0.25);
        }
        .result-type-badge {
            flex-shrink: 0;
            width: 52px;
            text-align: center;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 0;
            border-radius: 6px;
            letter-spacing: 0.5px;
        }
        .result-type-badge.football {
            background: rgba(0,139,63,0.1);
            color: var(--cpc-green);
        }
        .result-type-badge.basketball {
            background: rgba(255,171,0,0.12);
            color: #c47d00;
        }
        .result-teams {
            flex: 1;
            min-width: 200px;
        }
        .result-teams .team-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--cpc-text-dark);
        }
        .result-teams .team-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            padding: 2px 0;
        }
        .result-teams .team-row .score {
            font-family: var(--cpc-font-mono);
            font-weight: 800;
            font-size: 18px;
            color: var(--cpc-primary);
        }
        .result-score-center {
            flex-shrink: 0;
            text-align: center;
            min-width: 70px;
        }
        .result-score-center .full-score {
            font-size: 28px;
            font-weight: 800;
            font-family: var(--cpc-font-mono);
            color: var(--cpc-primary);
            line-height: 1.1;
        }
        .result-score-center .half-score {
            font-size: 12px;
            color: var(--cpc-text-muted);
            font-family: var(--cpc-font-mono);
        }
        .result-tag {
            flex-shrink: 0;
            padding: 4px 14px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            font-family: var(--cpc-font-mono);
        }
        .result-tag.win {
            background: var(--cpc-green);
            color: #fff;
        }
        .result-tag.draw {
            background: #6b7280;
            color: #fff;
        }
        .result-tag.lose {
            background: var(--cpc-red);
            color: #fff;
        }
        .result-time {
            flex-shrink: 0;
            font-size: 12px;
            color: var(--cpc-text-muted);
            font-family: var(--cpc-font-mono);
            text-align: right;
            min-width: 70px;
        }

        /* Deep content section */
        .deep-content {
            padding: 64px 0;
            background: var(--cpc-card);
        }
        .deep-content h2 {
            font-size: 26px;
            font-weight: 800;
            color: var(--cpc-primary);
            margin-bottom: 20px;
        }
        .deep-content h3 {
            font-size: 19px;
            font-weight: 700;
            color: var(--cpc-primary);
            margin-top: 28px;
            margin-bottom: 12px;
        }
        .deep-content p {
            color: var(--cpc-text-dark);
            margin-bottom: 16px;
            line-height: 1.9;
        }
        .deep-content .content-image {
            border-radius: var(--cpc-radius-lg);
            overflow: hidden;
            margin: 28px 0;
            box-shadow: var(--cpc-shadow-sm);
        }
        .deep-content .content-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        /* FAQ */
        .faq-section {
            padding: 64px 0 80px;
            background: var(--cpc-bg-light);
        }
        .faq-section .section-header h2 {
            font-size: clamp(26px, 3vw, 32px);
            font-weight: 800;
            color: var(--cpc-primary);
        }
        .accordion-item {
            border: 1px solid var(--cpc-divider);
            border-radius: var(--cpc-radius-md) !important;
            margin-bottom: 12px;
            overflow: hidden;
            background: var(--cpc-card);
            box-shadow: var(--cpc-shadow-sm);
        }
        .accordion-button {
            background: var(--cpc-card);
            color: var(--cpc-primary);
            font-weight: 700;
            font-size: 16px;
            padding: 18px 20px;
            border: none;
            box-shadow: none;
        }
        .accordion-button:not(.collapsed) {
            background: var(--cpc-card);
            color: var(--cpc-primary);
            box-shadow: none;
        }
        .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(0,230,118,0.15);
            border-color: transparent;
        }
        .accordion-button::after {
            background-image: none;
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--cpc-text-muted);
            font-size: 14px;
            transition: transform 0.3s;
        }
        .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
            color: var(--cpc-accent);
        }
        .accordion-body {
            background: var(--cpc-card);
            color: var(--cpc-text-dark);
            font-size: 15px;
            line-height: 1.8;
            padding: 16px 20px 20px;
            border-left: 3px solid var(--cpc-accent);
            margin-left: 20px;
            margin-bottom: 16px;
            border-radius: 0 6px 6px 0;
        }

        /* CTA */
        .cta-section {
            padding: 72px 0;
            background: linear-gradient(135deg, var(--cpc-primary) 0%, var(--cpc-bg-dark) 100%);
            color: #fff;
            text-align: center;
        }
        .cta-section h2 {
            font-size: clamp(28px, 3.5vw, 38px);
            font-weight: 800;
            color: #fff;
            letter-spacing: 0.5px;
        }
        .cta-section h2 span { color: var(--cpc-accent); }
        .cta-section p {
            color: rgba(255,255,255,0.7);
            max-width: 560px;
            margin: 16px auto 32px;
            font-size: 16px;
        }
        .btn-cpc-primary {
            background: var(--cpc-accent);
            color: var(--cpc-primary);
            font-weight: 700;
            padding: 14px 36px;
            border-radius: var(--cpc-radius-sm);
            border: none;
            font-size: 16px;
            transition: var(--cpc-transition);
            display: inline-block;
        }
        .btn-cpc-primary:hover {
            background: #00c864;
            color: var(--cpc-primary);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,230,118,0.25);
        }
        .btn-cpc-outline {
            background: transparent;
            color: #fff;
            font-weight: 600;
            padding: 14px 32px;
            border-radius: var(--cpc-radius-sm);
            border: 2px solid rgba(255,255,255,0.4);
            font-size: 16px;
            transition: var(--cpc-transition);
            display: inline-block;
        }
        .btn-cpc-outline:hover {
            border-color: var(--cpc-accent);
            color: var(--cpc-accent);
            background: rgba(0,230,118,0.05);
        }

        /* Footer */
        .site-footer {
            background: var(--cpc-primary);
            color: rgba(255,255,255,0.7);
            padding: 56px 0 0;
            flex-shrink: 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 40px;
            padding-bottom: 40px;
        }
        .footer-brand h4 {
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }
        .footer-brand p {
            font-size: 13px;
            line-height: 1.8;
            color: rgba(255,255,255,0.5);
            max-width: 320px;
        }
        .footer-links h5 {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }
        .footer-links a {
            display: block;
            color: rgba(255,255,255,0.5);
            font-size: 13px;
            padding: 4px 0;
            transition: var(--cpc-transition);
        }
        .footer-links a:hover {
            color: var(--cpc-accent);
            padding-left: 4px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 20px 0;
            font-size: 13px;
            color: rgba(255,255,255,0.4);
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            align-items: center;
            justify-content: center;
        }
        .footer-bottom a {
            color: rgba(255,255,255,0.5);
        }
        .footer-bottom a:hover { color: var(--cpc-accent); }
        .footer-bottom .sep {
            color: rgba(255,255,255,0.2);
        }

        /* Back to top */
        .back-to-top {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: var(--cpc-primary);
            color: #fff;
            border: none;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--cpc-transition);
            z-index: 1040;
            box-shadow: var(--cpc-shadow-dark);
        }
        .back-to-top:hover {
            background: var(--cpc-accent);
            color: var(--cpc-primary);
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 1199px) {
            :root { --cpc-sidebar-width: 72px; }
            .sidebar-brand .brand-text { opacity: 0; width: 0; overflow: hidden; }
            .sidebar-nav a.nav-item .nav-text { opacity: 0; width: 0; overflow: hidden; }
            .sidebar-nav a.nav-item { padding: 12px 24px; justify-content: center; }
            .sidebar-nav a.nav-item i { width: auto; }
            .sidebar-footer { opacity: 0; height: 0; padding: 0; overflow: hidden; }
        }
        @media (max-width: 991px) {
            .sidebar {
                display: none;
            }
            .main-content {
                margin-left: 0;
                padding-top: 56px;
            }
            .mobile-topbar {
                display: flex;
            }
            .mobile-drawer-overlay.show { display: block; }
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .page-banner {
                padding: 48px 0 40px;
            }
            .timeline {
                padding-left: 48px;
            }
            .timeline::before { left: 18px; }
            .timeline-date-anchor::before { left: -38px; }
        }
        @media (max-width: 767px) {
            .page-banner h1 {
                font-size: 30px;
            }
            .page-banner p {
                font-size: 15px;
            }
            .timeline-section {
                padding: 48px 0 56px;
            }
            .result-card {
                padding: 14px 16px;
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .result-score-center {
                min-width: auto;
                text-align: left;
            }
            .result-score-center .full-score {
                font-size: 24px;
                display: inline;
            }
            .result-time {
                text-align: left;
                min-width: auto;
            }
            .stats-row {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .stat-number {
                font-size: 28px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .deep-content {
                padding: 48px 0;
            }
            .cta-section {
                padding: 56px 0;
            }
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }
        @media (max-width: 575px) {
            .stats-row {
                grid-template-columns: 1fr 1fr;
            }
            .stat-number { font-size: 24px; }
            .stat-label { font-size: 12px; }
            .page-banner .banner-meta span {
                font-size: 12px;
            }
            .btn-cpc-primary,
            .btn-cpc-outline {
                display: block;
                width: 100%;
                text-align: center;
                margin-bottom: 12px;
            }
            .cta-section {
                text-align: center;
            }
        }

/* roulang page: category5 */
:root {
            --cpc-primary: #0f1115;
            --cpc-accent: #00e676;
            --cpc-gold: #ffab00;
            --cpc-bg-light: #f7f8f9;
            --cpc-card: #ffffff;
            --cpc-bg-dark: #161a20;
            --cpc-text-dark: #1b1f24;
            --cpc-text-muted: #5b6470;
            --cpc-border: #e2e5ea;
            --cpc-divider: #edeef0;
            --cpc-green: #008b3f;
            --cpc-red: #c62828;
            --cpc-radius-lg: 16px;
            --cpc-radius-md: 10px;
            --cpc-radius-sm: 8px;
            --cpc-shadow-sm: 0 4px 12px rgba(0,0,0,0.06);
            --cpc-shadow-lg: 0 10px 26px rgba(0,0,0,0.12);
            --cpc-shadow-dark: 0 8px 18px rgba(0,0,0,0.35);
            --cpc-font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            --cpc-font-mono: "Roboto Mono", "SF Mono", "Consolas", monospace;
            --cpc-sidebar-width: 240px;
            --cpc-sidebar-narrow: 72px;
            --cpc-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--cpc-font-sans);
            font-size: 16px;
            line-height: 1.85;
            color: var(--cpc-text-dark);
            background: var(--cpc-bg-light);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: var(--cpc-primary);
            text-decoration: none;
            transition: var(--cpc-transition);
        }
        a:hover { color: var(--cpc-accent); }
        a:focus-visible { outline: 2px solid var(--cpc-accent); outline-offset: 2px; border-radius: 4px; }
        img { max-width: 100%; display: block; }
        button:focus-visible { outline: 2px solid var(--cpc-accent); outline-offset: 2px; }
        input:focus-visible { outline: none; border-color: var(--cpc-accent); box-shadow: 0 0 0 3px rgba(0,230,118,0.15); }

        /* ========== SIDEBAR ========== */
        .sidebar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 20px 18px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            min-height: 76px;
            flex-shrink: 0;
        }
        .sidebar-brand .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(0,230,118,0.2), rgba(0,230,118,0.05));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--cpc-accent);
            flex-shrink: 0;
            border: 1px solid rgba(0,230,118,0.3);
        }
        .sidebar-brand .brand-text {
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 1px;
            white-space: nowrap;
            opacity: 1;
            transition: opacity 0.25s;
        }
        .sidebar-brand .brand-text small {
            display: block;
            font-size: 10px;
            font-weight: 400;
            color: rgba(255,255,255,0.5);
            letter-spacing: 0.5px;
            margin-top: -2px;
        }
        .sidebar-nav {
            flex: 1;
            padding: 16px 0;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .sidebar-nav a.nav-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 18px;
            color: rgba(255,255,255,0.65);
            font-size: 14px;
            font-weight: 500;
            border-left: 3px solid transparent;
            transition: var(--cpc-transition);
            white-space: nowrap;
            position: relative;
        }
        .sidebar-nav a.nav-item i {
            font-size: 18px;
            width: 24px;
            text-align: center;
            flex-shrink: 0;
            transition: var(--cpc-transition);
        }
        .sidebar-nav a.nav-item .nav-text {
            opacity: 1;
            transition: opacity 0.25s;
        }
        .sidebar-nav a.nav-item:hover {
            color: #fff;
            background: rgba(0,230,118,0.08);
            border-left-color: rgba(0,230,118,0.4);
        }
        .sidebar-nav a.nav-item:hover i { transform: translateX(3px); }
        .sidebar-nav a.nav-item.active {
            color: #fff;
            background: rgba(0,230,118,0.12);
            border-left-color: var(--cpc-accent);
            font-weight: 600;
        }
        .sidebar-nav a.nav-item.home-link { margin-bottom: 8px; }
        .sidebar-footer {
            padding: 14px 18px;
            border-top: 1px solid rgba(255,255,255,0.08);
            font-size: 11px;
            color: rgba(255,255,255,0.35);
            white-space: nowrap;
            flex-shrink: 0;
        }

        /* ========== MOBILE TOP BAR ========== */
        .mobile-topbar {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 56px;
            background: var(--cpc-primary);
            z-index: 1035;
            align-items: center;
            padding: 0 16px;
            gap: 12px;
        }
        .mobile-topbar .hamburger-btn {
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--cpc-transition);
        }
        .mobile-topbar .hamburger-btn:hover { color: var(--cpc-accent); }
        .mobile-topbar .mobile-logo {
            flex: 1;
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 1px;
        }
        .mobile-topbar .mobile-logo span { color: var(--cpc-accent); }

        /* Mobile drawer */
        .drawer-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 1040;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .drawer-overlay.show { opacity: 1; }
        .mobile-drawer {
            position: fixed;
            top: 0;
            left: -300px;
            width: 280px;
            height: 100%;
            background: var(--cpc-primary);
            z-index: 1045;
            transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }
        .mobile-drawer.open { left: 0; }
        .mobile-drawer .drawer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 16px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .mobile-drawer .drawer-header .drawer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            font-weight: 800;
            color: #fff;
        }
        .mobile-drawer .drawer-header .drawer-close {
            background: none;
            border: none;
            color: #fff;
            font-size: 20px;
            cursor: pointer;
            transition: var(--cpc-transition);
        }
        .mobile-drawer .drawer-header .drawer-close:hover { color: var(--cpc-accent); }
        .mobile-drawer .sidebar-nav a.nav-item { padding: 14px 20px; font-size: 15px; }
        .mobile-drawer .sidebar-footer { padding: 16px 20px; }

        /* ========== MAIN CONTENT ========== */
        .main-content {
            margin-left: var(--cpc-sidebar-width);
            flex: 1;
            min-height: 100vh;
            transition: margin-left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        /* ========== PAGE BANNER ========== */
        .page-banner {
            background: linear-gradient(135deg, #0f1115 0%, #161a20 55%, #1a2a1f 100%);
            padding: 80px 0 64px;
            position: relative;
            overflow: hidden;
            color: #fff;
        }
        .page-banner::after {
            content: '';
            position: absolute;
            top: -40%;
            right: -15%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0,230,118,0.15) 0%, transparent 70%);
            pointer-events: none;
        }
        .page-banner .banner-content {
            position: relative;
            z-index: 1;
        }
        .page-banner .badge-tag {
            display: inline-block;
            background: rgba(0,230,118,0.15);
            border: 1px solid rgba(0,230,118,0.35);
            color: var(--cpc-accent);
            font-size: 13px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 30px;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }
        .page-banner h1 {
            font-size: 48px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
            line-height: 1.2;
            animation: fadeInUp 0.6s ease-out;
        }
        .page-banner h1 .highlight {
            color: var(--cpc-accent);
        }
        .page-banner p.banner-desc {
            font-size: 18px;
            color: rgba(255,255,255,0.75);
            max-width: 650px;
            line-height: 1.8;
            animation: fadeInUp 0.6s ease-out 0.1s both;
        }
        .page-banner .banner-meta {
            display: flex;
            gap: 24px;
            margin-top: 24px;
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            animation: fadeInUp 0.6s ease-out 0.2s both;
        }
        .page-banner .banner-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .page-banner .banner-meta i { color: var(--cpc-accent); font-size: 14px; }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ========== SECTION COMMON ========== */
        .section-block {
            padding: 72px 0;
        }
        .section-block.section-alt {
            background: var(--cpc-card);
        }
        .section-block.section-dark {
            background: var(--cpc-bg-dark);
            color: #fff;
        }
        .section-title {
            font-size: 32px;
            font-weight: 800;
            color: var(--cpc-primary);
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .section-dark .section-title { color: #fff; }
        .section-subtitle {
            font-size: 16px;
            color: var(--cpc-text-muted);
            max-width: 620px;
            line-height: 1.8;
            margin-bottom: 40px;
        }
        .section-dark .section-subtitle { color: rgba(255,255,255,0.6); }
        .section-divider {
            width: 60px;
            height: 4px;
            background: var(--cpc-accent);
            border-radius: 4px;
            margin-bottom: 20px;
        }

        /* ========== STRATEGY GRID ========== */
        .strategy-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin-top: 16px;
        }
        .strategy-card {
            background: var(--cpc-card);
            border-radius: var(--cpc-radius-lg);
            overflow: hidden;
            box-shadow: var(--cpc-shadow-sm);
            transition: var(--cpc-transition);
            display: flex;
            flex-direction: column;
            border: 1px solid var(--cpc-border);
            position: relative;
        }
        .strategy-card:hover {
            box-shadow: var(--cpc-shadow-lg);
            transform: translateY(-4px);
        }
        .strategy-card .card-image {
            position: relative;
            height: 200px;
            overflow: hidden;
            background: #d4d8dd;
        }
        .strategy-card .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .strategy-card:hover .card-image img { transform: scale(1.02); }
        .strategy-card .card-tag {
            position: absolute;
            top: 14px;
            left: 14px;
            background: var(--cpc-accent);
            color: var(--cpc-primary);
            font-size: 12px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.5px;
            z-index: 1;
        }
        .strategy-card .card-body {
            padding: 22px 22px 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .strategy-card .card-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--cpc-primary);
            line-height: 1.4;
            margin-bottom: 10px;
            transition: var(--cpc-transition);
        }
        .strategy-card:hover .card-title { color: var(--cpc-accent); }
        .strategy-card .card-excerpt {
            font-size: 14px;
            color: var(--cpc-text-muted);
            line-height: 1.7;
            flex: 1;
            margin-bottom: 16px;
        }
        .strategy-card .card-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 12px;
            color: var(--cpc-text-muted);
            font-family: var(--cpc-font-mono);
            border-top: 1px solid var(--cpc-divider);
            padding-top: 14px;
        }
        .strategy-card .card-meta i {
            font-size: 13px;
            color: var(--cpc-accent);
        }
        .strategy-card .card-meta .read-count {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* ========== DEEP CONTENT ========== */
        .deep-content {
            background: var(--cpc-card);
            border-radius: var(--cpc-radius-lg);
            padding: 48px 52px;
            box-shadow: var(--cpc-shadow-sm);
            border: 1px solid var(--cpc-border);
        }
        .deep-content h2 {
            font-size: 26px;
            font-weight: 800;
            color: var(--cpc-primary);
            margin-bottom: 20px;
            line-height: 1.4;
        }
        .deep-content h3 {
            font-size: 19px;
            font-weight: 700;
            color: var(--cpc-primary);
            margin-top: 32px;
            margin-bottom: 14px;
            line-height: 1.4;
        }
        .deep-content p {
            font-size: 15px;
            color: var(--cpc-text-dark);
            line-height: 2;
            margin-bottom: 18px;
        }
        .deep-content ol, .deep-content ul {
            padding-left: 24px;
            margin-bottom: 18px;
        }
        .deep-content li {
            font-size: 15px;
            color: var(--cpc-text-dark);
            line-height: 1.9;
            margin-bottom: 8px;
        }
        .deep-content blockquote {
            border-left: 4px solid var(--cpc-accent);
            background: rgba(0,230,118,0.05);
            padding: 18px 24px;
            border-radius: 0 10px 10px 0;
            font-size: 15px;
            color: var(--cpc-text-muted);
            line-height: 1.8;
            margin: 24px 0;
        }
        .deep-content blockquote strong { color: var(--cpc-primary); }

        /* ========== STRATEGY PILLARS ========== */
        .pillar-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 8px;
        }
        .pillar-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--cpc-radius-md);
            padding: 28px 22px;
            text-align: center;
            transition: var(--cpc-transition);
        }
        .pillar-card:hover {
            background: rgba(0,230,118,0.06);
            border-color: rgba(0,230,118,0.3);
            transform: translateY(-3px);
        }
        .pillar-card .pillar-icon {
            font-size: 32px;
            color: var(--cpc-accent);
            margin-bottom: 14px;
        }
        .pillar-card h4 {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .pillar-card p {
            font-size: 13px;
            color: rgba(255,255,255,0.55);
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* ========== FAQ ========== */
        .accordion .accordion-item {
            border: 1px solid var(--cpc-border);
            border-radius: var(--cpc-radius-md) !important;
            overflow: hidden;
            margin-bottom: 12px;
            background: var(--cpc-card);
            box-shadow: var(--cpc-shadow-sm);
            transition: var(--cpc-transition);
        }
        .accordion .accordion-item:hover {
            box-shadow: var(--cpc-shadow-lg);
        }
        .accordion .accordion-header .accordion-button {
            font-size: 16px;
            font-weight: 700;
            color: var(--cpc-primary);
            padding: 18px 22px;
            background: transparent;
            border: none;
            box-shadow: none !important;
            transition: var(--cpc-transition);
            line-height: 1.5;
        }
        .accordion .accordion-button:not(.collapsed) {
            color: var(--cpc-primary);
            background: rgba(0,230,118,0.04);
        }
        .accordion .accordion-button::after {
            filter: invert(1);
            opacity: 0.4;
            transition: transform 0.3s;
        }
        .accordion .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
        }
        .accordion .accordion-body {
            font-size: 15px;
            line-height: 1.8;
            color: var(--cpc-text-muted);
            padding: 0 22px 20px 42px;
            background: rgba(0,230,118,0.02);
        }

        /* ========== CTA ========== */
        .cta-section {
            background: linear-gradient(135deg, #0f1115 0%, #161a20 60%, #1a2a1f 100%);
            padding: 72px 0;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -30%;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0,230,118,0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-section h2 {
            font-size: 36px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
            line-height: 1.3;
            position: relative;
            z-index: 1;
        }
        .cta-section h2 .highlight {
            color: var(--cpc-accent);
        }
        .cta-section p {
            font-size: 16px;
            color: rgba(255,255,255,0.7);
            max-width: 580px;
            margin: 0 auto 32px;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }
        .cta-section .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .btn-cpc {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 30px;
            border-radius: var(--cpc-radius-sm);
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: var(--cpc-transition);
            border: none;
            cursor: pointer;
            text-decoration: none;
            line-height: 1.4;
        }
        .btn-cpc-primary {
            background: var(--cpc-primary);
            color: #fff;
            border: 2px solid var(--cpc-primary);
        }
        .btn-cpc-primary:hover {
            background: var(--cpc-accent);
            color: var(--cpc-primary);
            border-color: var(--cpc-accent);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,230,118,0.3);
        }
        .btn-cpc-secondary {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255,255,255,0.4);
        }
        .btn-cpc-secondary:hover {
            background: rgba(255,255,255,0.08);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }
        .btn-cpc-outline {
            background: transparent;
            color: var(--cpc-primary);
            border: 2px solid var(--cpc-primary);
        }
        .btn-cpc-outline:hover {
            background: var(--cpc-primary);
            color: #fff;
            transform: translateY(-2px);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--cpc-primary);
            color: #fff;
            padding: 64px 0 32px;
            font-size: 14px;
        }
        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.4fr 1.4fr;
            gap: 36px;
            margin-bottom: 40px;
        }
        .site-footer .footer-brand h4 {
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 1px;
        }
        .site-footer .footer-brand p {
            font-size: 13px;
            color: rgba(255,255,255,0.55);
            line-height: 1.8;
            max-width: 300px;
        }
        .site-footer .footer-links h5 {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }
        .site-footer .footer-links a {
            display: block;
            color: rgba(255,255,255,0.55);
            font-size: 13px;
            padding: 4px 0;
            transition: var(--cpc-transition);
            line-height: 1.7;
        }
        .site-footer .footer-links a:hover {
            color: var(--cpc-accent);
            transform: translateX(4px);
        }
        .site-footer .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            align-items: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.08);
            font-size: 12px;
            color: rgba(255,255,255,0.45);
        }
        .site-footer .footer-bottom .sep {
            color: rgba(255,255,255,0.25);
        }
        .site-footer .footer-bottom a {
            color: rgba(255,255,255,0.45);
            font-size: 12px;
            transition: var(--cpc-transition);
        }
        .site-footer .footer-bottom a:hover {
            color: var(--cpc-accent);
        }

        /* ========== BACK TO TOP ========== */
        .back-to-top {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--cpc-primary);
            color: #fff;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            transition: var(--cpc-transition);
            z-index: 1050;
            box-shadow: 0 4px 16px rgba(0,0,0,0.25);
            opacity: 0;
            pointer-events: none;
        }
        .back-to-top.visible {
            opacity: 1;
            pointer-events: auto;
        }
        .back-to-top:hover {
            background: var(--cpc-accent);
            color: var(--cpc-primary);
            transform: translateY(-3px);
        }

        /* ========== RESPONSIVE ========== */
        @media (min-width: 1200px) {
            :root { --cpc-sidebar-width: 240px; }
        }
        @media (max-width: 1199px) and (min-width: 992px) {
            :root { --cpc-sidebar-width: 72px; }
            .sidebar-brand .brand-text { opacity: 0; width: 0; overflow: hidden; }
            .sidebar-nav a.nav-item .nav-text { opacity: 0; width: 0; overflow: hidden; }
            .sidebar-nav a.nav-item { justify-content: center; padding: 12px; }
            .sidebar-footer { font-size: 8px; text-align: center; padding: 10px 6px; }
            .pillar-row { grid-template-columns: repeat(2, 1fr); }
            .strategy-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 991px) {
            .main-content { margin-left: 0; }
            .mobile-topbar { display: flex; }
            .strategy-grid { grid-template-columns: 1fr; }
            .page-banner { padding: 80px 0 48px; }
            .page-banner h1 { font-size: 36px; }
            .pillar-row { grid-template-columns: repeat(2, 1fr); }
            .deep-content { padding: 32px 24px; }
            .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
        }
        @media (max-width: 767px) {
            .section-block { padding: 56px 0; }
            .page-banner h1 { font-size: 30px; }
            .page-banner p.banner-desc { font-size: 15px; }
            .page-banner .banner-meta { flex-wrap: wrap; gap: 12px; }
            .pillar-row { grid-template-columns: 1fr; }
            .deep-content { padding: 24px 18px; }
            .deep-content h2 { font-size: 22px; }
            .site-footer .footer-grid { grid-template-columns: 1fr; gap: 24px; }
            .cta-section h2 { font-size: 28px; }
            .strategy-card .card-image { height: 160px; }
        }
        @media (max-width: 575px) {
            .btn-cpc { width: 100%; justify-content: center; }
            .cta-buttons { flex-direction: column; }
            .page-banner h1 { font-size: 26px; }
            .section-title { font-size: 26px; }
            .site-footer .footer-bottom { flex-direction: column; align-items: flex-start; }
        }
