/* roulang page: index */
:root {
            --primary: #0B3D2E;
            --primary-dark: #082E21;
            --primary-deeper: #061F17;
            --accent: #C8FF00;
            --accent-dim: rgba(200, 255, 0, 0.16);
            --cta: #FF4E2A;
            --cta-dark: #D63F1F;
            --bg-warm: #F7F8F4;
            --bg-dark: #0E1210;
            --bg-dark-grad: linear-gradient(145deg, #0E1210 0%, #12352B 100%);
            --card-bg: #FFFFFF;
            --text-primary: #1A1F1B;
            --text-on-dark: #F7F8F4;
            --text-secondary: #5B635B;
            --text-muted: #87908A;
            --border: #E1E7DC;
            --border-dark: rgba(255, 255, 255, 0.12);
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-sm: 0 2px 12px rgba(11, 61, 46, 0.06);
            --shadow-md: 0 4px 16px rgba(11, 61, 46, 0.10);
            --shadow-lg: 0 8px 24px rgba(11, 61, 46, 0.14);
            --shadow-hover: 0 12px 32px rgba(11, 61, 46, 0.18);
            --font-sans: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
            --font-display: 'Oswald', 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --max-width: 1200px;
            --nav-height: 60px;
            --fixed-bar-height: 64px;
            --transition-fast: 0.2s ease;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.75;
            color: var(--text-primary);
            background-color: var(--bg-warm);
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            border: 0;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        a:hover,
        a:focus {
            color: var(--cta);
            text-decoration: none;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-sans);
            font-weight: 700;
            line-height: 1.3;
            color: inherit;
            margin: 0 0 0.5rem;
        }

        .container-custom {
            max-width: var(--max-width);
            margin: 0 auto;
            padding-left: 40px;
            padding-right: 40px;
        }

        .section-padding {
            padding-top: 72px;
            padding-bottom: 72px;
        }

        .section-padding-sm {
            padding-top: 48px;
            padding-bottom: 48px;
        }

        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: var(--cta);
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .section-title {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .section-title.light {
            color: var(--text-on-dark);
        }

        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 640px;
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .section-desc.light {
            color: rgba(247, 248, 244, 0.75);
        }

        /* ============ HEADER / NAV ============ */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            height: var(--nav-height);
            background: rgba(11, 61, 46, 0.97);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            border-bottom: 1px solid rgba(200, 255, 0, 0.22);
            transition: background var(--transition), box-shadow var(--transition);
        }

        .site-header.scrolled {
            background: rgba(11, 61, 46, 0.99);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height);
            gap: 20px;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 28px;
            flex-shrink: 0;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 800;
            color: var(--text-on-dark);
            letter-spacing: -0.3px;
            white-space: nowrap;
        }

        .nav-logo .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--accent);
            color: var(--primary);
            font-size: 15px;
            flex-shrink: 0;
        }

        .nav-logo:hover {
            color: var(--accent);
        }

        .nav-logo:hover .logo-icon {
            background: var(--text-on-dark);
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
        }

        .nav-links li {
            margin: 0;
        }

        .nav-links a {
            display: block;
            padding: 6px 12px;
            font-size: 14px;
            font-weight: 600;
            color: rgba(247, 248, 244, 0.82);
            border-radius: var(--radius-sm);
            border-bottom: 2px solid transparent;
            transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
        }

        .nav-links a:hover,
        .nav-links a:focus {
            color: var(--accent);
            background: rgba(200, 255, 0, 0.06);
        }

        .nav-links a.active {
            color: var(--accent);
            border-bottom-color: var(--accent);
            background: rgba(200, 255, 0, 0.06);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        .nav-search {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-sm);
            padding: 0 12px;
            height: 36px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: border-color var(--transition-fast), background var(--transition-fast);
        }

        .nav-search:focus-within {
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.15);
        }

        .nav-search input {
            background: transparent;
            border: none;
            outline: none;
            color: var(--text-on-dark);
            font-size: 13px;
            width: 140px;
            font-family: var(--font-sans);
        }

        .nav-search input::placeholder {
            color: rgba(247, 248, 244, 0.5);
        }

        .nav-search .search-icon {
            color: rgba(247, 248, 244, 0.6);
            font-size: 13px;
            margin-right: 8px;
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 18px;
            height: 36px;
            border-radius: var(--radius-sm);
            background: var(--cta);
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.3px;
            border: none;
            cursor: pointer;
            transition: background var(--transition-fast), transform var(--transition-fast);
            white-space: nowrap;
        }

        .nav-cta:hover,
        .nav-cta:focus {
            background: var(--cta-dark);
            color: #fff;
            transform: translateY(-1px);
        }

        .nav-login {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: rgba(247, 248, 244, 0.7);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            background: none;
            transition: color var(--transition-fast);
            white-space: nowrap;
        }

        .nav-login:hover {
            color: var(--accent);
        }

        .nav-hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.15);
            cursor: pointer;
            padding: 8px;
            transition: background var(--transition-fast);
        }

        .nav-hamburger:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .nav-hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--text-on-dark);
            border-radius: 2px;
            transition: all var(--transition);
        }

        .nav-hamburger.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-hamburger.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Mobile drawer */
        .nav-drawer {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--primary-deeper);
            z-index: 99;
            padding: 24px 20px;
            overflow-y: auto;
            flex-direction: column;
            gap: 8px;
        }

        .nav-drawer.open {
            display: flex;
        }

        .nav-drawer a {
            display: block;
            padding: 14px 16px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-on-dark);
            border-radius: var(--radius-sm);
            transition: background var(--transition-fast), color var(--transition-fast);
        }

        .nav-drawer a:hover,
        .nav-drawer a.active {
            background: rgba(200, 255, 0, 0.08);
            color: var(--accent);
        }

        .nav-drawer .drawer-search {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-sm);
            padding: 0 14px;
            height: 44px;
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .nav-drawer .drawer-search input {
            background: transparent;
            border: none;
            outline: none;
            color: var(--text-on-dark);
            font-size: 15px;
            width: 100%;
            font-family: var(--font-sans);
        }

        .nav-drawer .drawer-search input::placeholder {
            color: rgba(247, 248, 244, 0.4);
        }

        .nav-drawer .drawer-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 14px;
            border-radius: var(--radius-sm);
            background: var(--cta);
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            margin-top: 8px;
            border: none;
            cursor: pointer;
        }

        /* ============ HERO ============ */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: stretch;
            padding-top: var(--nav-height);
            background: var(--primary);
        }

        .hero-left {
            flex: 0 0 55%;
            padding: 80px 60px 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #0E3F2E 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-left::after {
            content: '';
            position: absolute;
            bottom: -120px;
            right: -80px;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: rgba(200, 255, 0, 0.05);
            pointer-events: none;
        }

        .hero-left::before {
            content: '';
            position: absolute;
            top: 80px;
            right: 40px;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 2px dashed rgba(200, 255, 0, 0.15);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 580px;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            background: rgba(200, 255, 0, 0.1);
            border: 1px solid rgba(200, 255, 0, 0.25);
            padding: 6px 14px;
            border-radius: 20px;
            margin-bottom: 20px;
        }

        .hero-tag .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--cta);
            animation: pulse-dot 1.8s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.4); }
        }

        .hero-title {
            font-size: 50px;
            font-weight: 800;
            color: var(--text-on-dark);
            line-height: 1.2;
            letter-spacing: -1.5px;
            margin-bottom: 18px;
        }

        .hero-title .highlight {
            color: var(--accent);
            position: relative;
        }

        .hero-subtitle {
            font-size: 17px;
            color: rgba(247, 248, 244, 0.78);
            line-height: 1.8;
            margin-bottom: 28px;
            max-width: 520px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 28px;
        }

        .btn-primary-lg {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            background: var(--cta);
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0.3px;
            border: none;
            cursor: pointer;
            transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
        }

        .btn-primary-lg:hover,
        .btn-primary-lg:focus {
            background: var(--cta-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 78, 42, 0.35);
        }

        .btn-secondary-lg {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 24px;
            border-radius: var(--radius-sm);
            background: transparent;
            color: var(--text-on-dark);
            font-size: 16px;
            font-weight: 600;
            border: 2px solid rgba(247, 248, 244, 0.35);
            cursor: pointer;
            transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
        }

        .btn-secondary-lg:hover,
        .btn-secondary-lg:focus {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(200, 255, 0, 0.05);
        }

        .hero-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: rgba(247, 248, 244, 0.7);
        }

        .trust-item .trust-icon {
            color: var(--accent);
            font-size: 14px;
        }

        .hero-right {
            flex: 0 0 45%;
            position: relative;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            min-height: 500px;
            overflow: hidden;
        }

        .hero-right::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(11, 61, 46, 0.55) 0%, rgba(11, 61, 46, 0.25) 40%, rgba(14, 18, 16, 0.5) 100%);
            z-index: 1;
        }

        .hero-live-card {
            position: absolute;
            right: 24px;
            bottom: 32px;
            z-index: 2;
            background: rgba(14, 18, 16, 0.85);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: var(--radius-lg);
            padding: 16px 18px;
            min-width: 200px;
            border: 1px solid rgba(200, 255, 0, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }

        .hero-live-card .live-label {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .hero-live-card .live-label .live-dot-small {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--cta);
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        .hero-score-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-family: var(--font-display);
            font-weight: 700;
            color: var(--text-on-dark);
            font-size: 22px;
            letter-spacing: 0.5px;
        }

        .hero-score-row .team-abbr {
            font-size: 14px;
            font-weight: 600;
            color: rgba(247, 248, 244, 0.7);
        }

        .hero-score-row .score {
            color: var(--cta);
            font-size: 26px;
        }

        /* ============ SELLING POINTS ============ */
        .selling-points {
            background: var(--bg-warm);
        }

        .selling-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 32px;
        }

        .selling-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
            position: relative;
            overflow: hidden;
        }

        .selling-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary);
            opacity: 0;
            transition: opacity var(--transition);
        }

        .selling-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
            border-color: rgba(11, 61, 46, 0.2);
        }

        .selling-card:hover::before {
            opacity: 1;
        }

        .selling-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(11, 61, 46, 0.08);
            color: var(--primary);
            font-size: 20px;
            margin-bottom: 16px;
        }

        .selling-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .selling-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin: 0;
        }

        /* ============ SCENARIO DEMO ============ */
        .scenario-section {
            background: var(--bg-dark-grad);
            color: var(--text-on-dark);
        }

        .scenario-item {
            display: flex;
            align-items: center;
            gap: 40px;
            padding: 32px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .scenario-item:last-child {
            border-bottom: none;
        }

        .scenario-item.reverse {
            flex-direction: row-reverse;
        }

        .scenario-text {
            flex: 1;
            min-width: 0;
        }

        .scenario-text h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-on-dark);
            margin-bottom: 12px;
        }

        .scenario-text p {
            font-size: 15px;
            color: rgba(247, 248, 244, 0.72);
            line-height: 1.85;
            margin: 0;
        }

        .scenario-image {
            flex: 0 0 40%;
            max-width: 40%;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            position: relative;
        }

        .scenario-image img {
            width: 100%;
            height: 240px;
            object-fit: cover;
        }

        .scenario-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(14,18,16,0.45) 100%);
            pointer-events: none;
        }

        /* ============ NEWS ============ */
        .news-section {
            background: var(--card-bg);
        }

        .news-list {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin-top: 24px;
        }

        .news-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px 16px;
            border-bottom: 1px solid var(--border);
            transition: background var(--transition-fast), padding-left var(--transition-fast);
            border-radius: var(--radius-sm);
        }

        .news-item:hover {
            background: rgba(11, 61, 46, 0.03);
            padding-left: 20px;
        }

        .news-date-badge {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            border-radius: 12px;
            background: var(--primary);
            color: var(--accent);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            line-height: 1.1;
        }

        .news-date-badge .day {
            font-size: 20px;
            font-weight: 800;
        }

        .news-date-badge .month {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .news-content {
            flex: 1;
            min-width: 0;
        }

        .news-content h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .news-content p {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.6;
        }

        .news-readmore {
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--cta);
            white-space: nowrap;
            transition: color var(--transition-fast), gap var(--transition-fast);
        }

        .news-readmore:hover {
            color: var(--cta-dark);
            gap: 10px;
        }

        .news-readmore .arrow {
            font-size: 12px;
        }

        /* ============ DEEP CONTENT ============ */
        .deep-content-section {
            background: var(--bg-warm);
        }

        .deep-content-section.alt-bg {
            background: var(--card-bg);
        }

        .deep-content-section.dark-bg {
            background: var(--bg-dark-grad);
        }

        .deep-article {
            max-width: 850px;
            margin: 0 auto;
        }

        .deep-article h2 {
            font-size: 30px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 16px;
            position: relative;
            padding-bottom: 14px;
        }

        .deep-article h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 64px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .dark-bg .deep-article h2 {
            color: var(--text-on-dark);
        }

        .dark-bg .deep-article h2::after {
            background: var(--accent);
        }

        .deep-article h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
            margin-top: 24px;
        }

        .dark-bg .deep-article h3 {
            color: var(--accent);
        }

        .deep-article p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.9;
            margin-bottom: 18px;
        }

        .dark-bg .deep-article p {
            color: rgba(247, 248, 244, 0.72);
        }

        .deep-article .article-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
            margin: 24px 0;
            box-shadow: var(--shadow-md);
        }

        .deep-article .article-image img {
            width: 100%;
            max-height: 380px;
            object-fit: cover;
        }

        .deep-layout {
            display: flex;
            gap: 40px;
            align-items: flex-start;
        }

        .deep-main {
            flex: 1;
            min-width: 0;
        }

        .deep-sidebar {
            flex: 0 0 280px;
            position: sticky;
            top: 80px;
        }

        .sidebar-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 20px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            margin-bottom: 16px;
        }

        .dark-bg .sidebar-card {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .sidebar-card h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .dark-bg .sidebar-card h4 {
            color: var(--accent);
        }

        .sidebar-card ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .sidebar-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid var(--border);
            font-size: 13px;
        }

        .sidebar-card ul li:last-child {
            border-bottom: none;
        }

        .sidebar-card ul li a {
            color: var(--text-secondary);
            font-weight: 500;
        }

        .sidebar-card ul li a:hover {
            color: var(--primary);
        }

        .dark-bg .sidebar-card ul li {
            border-color: rgba(255, 255, 255, 0.08);
        }

        .dark-bg .sidebar-card ul li a {
            color: rgba(247, 248, 244, 0.65);
        }

        .dark-bg .sidebar-card ul li a:hover {
            color: var(--accent);
        }

        /* ============ SOCIAL PROOF ============ */
        .social-proof {
            background: var(--bg-warm);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .stat-block {
            text-align: center;
            padding: 28px 16px;
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 40px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 8px;
            letter-spacing: -1px;
        }

        .stat-number .accent {
            color: var(--cta);
        }

        .stat-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .testimonial-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 24px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
        }

        .testimonial-stars {
            color: #F5A623;
            font-size: 14px;
            margin-bottom: 12px;
            letter-spacing: 2px;
        }

        .testimonial-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.75;
            margin-bottom: 14px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .testimonial-author .avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
        }

        /* ============ BRAND INTRO ============ */
        .brand-intro {
            background: rgba(11, 61, 46, 0.04);
            text-align: center;
        }

        .brand-intro .brand-name-large {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .brand-intro .brand-name-large .accent-text {
            color: var(--cta);
        }

        .brand-intro p {
            max-width: 720px;
            margin: 0 auto;
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.9;
        }

        /* ============ FAQ ============ */
        .faq-section {
            background: var(--card-bg);
        }

        .faq-list {
            max-width: 760px;
            margin: 24px auto 0;
        }

        .faq-list .accordion {
            border: none;
            border-radius: var(--radius-sm);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            background: transparent;
        }

        .faq-list .accordion-item {
            border: 1px solid var(--border);
            border-radius: var(--radius-sm) !important;
            margin-bottom: 10px;
            overflow: hidden;
            background: var(--card-bg);
        }

        .faq-list .accordion-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--primary);
            padding: 16px 20px;
            background: var(--card-bg);
            border: none;
            cursor: pointer;
            display: block;
            position: relative;
            transition: background var(--transition-fast);
            border-left: 4px solid transparent;
        }

        .faq-list .accordion-title:hover {
            background: rgba(11, 61, 46, 0.04);
        }

        .faq-list .accordion-item.is-active .accordion-title {
            border-left-color: var(--accent);
            background: rgba(200, 255, 0, 0.06);
        }

        .faq-list .accordion-title::before {
            content: '+';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 22px;
            font-weight: 400;
            color: var(--text-secondary);
        }

        .faq-list .accordion-item.is-active .accordion-title::before {
            content: '\2212';
            color: var(--primary);
        }

        .faq-list .accordion-content {
            padding: 0 20px 16px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.75;
            background: var(--card-bg);
            border: none;
        }

        /* ============ FIXED BOTTOM BAR ============ */
        .fixed-cta-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 98;
            height: var(--fixed-bar-height);
            background: var(--primary-deeper);
            border-top: 2px solid var(--accent);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 24px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
        }

        .fixed-cta-bar .bar-text {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-on-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .fixed-cta-bar .bar-text .bar-live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--cta);
            animation: pulse-dot 1.6s ease-in-out infinite;
            flex-shrink: 0;
        }

        .fixed-cta-bar .bar-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            border-radius: var(--radius-sm);
            background: var(--cta);
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: background var(--transition-fast), transform var(--transition-fast);
            white-space: nowrap;
            flex-shrink: 0;
        }

        .fixed-cta-bar .bar-btn:hover {
            background: var(--cta-dark);
            transform: translateY(-1px);
        }

        /* ============ FOOTER ============ */
        .site-footer {
            background: var(--primary-deeper);
            color: rgba(247, 248, 244, 0.7);
            padding: 56px 0 100px;
            min-height: 280px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 32px;
            margin-bottom: 40px;
        }

        .footer-brand .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 800;
            color: var(--text-on-dark);
            margin-bottom: 14px;
        }

        .footer-brand .footer-logo .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border-radius: 8px;
            background: var(--accent);
            color: var(--primary);
            font-size: 14px;
        }

        .footer-brand p {
            font-size: 13px;
            color: rgba(247, 248, 244, 0.55);
            line-height: 1.75;
            margin-bottom: 16px;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-on-dark);
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }

        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            font-size: 13px;
            color: rgba(247, 248, 244, 0.6);
            transition: color var(--transition-fast);
        }

        .footer-col ul li a:hover {
            color: var(--accent);
        }

        .footer-subscribe {
            display: flex;
            gap: 8px;
            margin-top: 12px;
        }

        .footer-subscribe input {
            flex: 1;
            padding: 10px 14px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-on-dark);
            font-size: 13px;
            font-family: var(--font-sans);
            outline: none;
            transition: border-color var(--transition-fast);
        }

        .footer-subscribe input:focus {
            border-color: var(--accent);
        }

        .footer-subscribe input::placeholder {
            color: rgba(247, 248, 244, 0.4);
        }

        .footer-subscribe button {
            padding: 10px 18px;
            border-radius: var(--radius-sm);
            background: var(--cta);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            white-space: nowrap;
            transition: background var(--transition-fast);
        }

        .footer-subscribe button:hover {
            background: var(--cta-dark);
        }

        .footer-bottom {
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: rgba(247, 248, 244, 0.45);
        }

        .footer-bottom a {
            color: rgba(247, 248, 244, 0.5);
            font-size: 12px;
        }

        .footer-bottom a:hover {
            color: var(--accent);
        }

        .footer-bottom .footer-meta-links {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .container-custom {
                padding-left: 24px;
                padding-right: 24px;
            }

            .hero-title {
                font-size: 40px;
            }

            .hero-left {
                padding: 60px 40px 50px 24px;
                flex-basis: 55%;
            }

            .hero-right {
                flex-basis: 45%;
            }

            .selling-grid {
                gap: 16px;
            }

            .scenario-image {
                flex-basis: 38%;
                max-width: 38%;
            }

            .deep-layout {
                flex-direction: column;
            }

            .deep-sidebar {
                flex-basis: auto;
                position: static;
                width: 100%;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }

            .section-padding {
                padding-top: 48px;
                padding-bottom: 48px;
            }

            .section-title {
                font-size: 26px;
            }

            .nav-links {
                display: none;
            }

            .nav-search {
                display: none;
            }

            .nav-login {
                display: none;
            }

            .nav-hamburger {
                display: flex;
            }

            .hero-section {
                flex-direction: column;
                min-height: auto;
            }

            .hero-left {
                flex-basis: auto;
                padding: 48px 16px 40px;
            }

            .hero-right {
                flex-basis: auto;
                min-height: 240px;
            }

            .hero-title {
                font-size: 32px;
                letter-spacing: -0.5px;
            }

            .hero-subtitle {
                font-size: 15px;
            }

            .hero-actions {
                flex-direction: column;
                gap: 10px;
            }

            .btn-primary-lg,
            .btn-secondary-lg {
                width: 100%;
                justify-content: center;
                padding: 12px 20px;
                font-size: 15px;
            }

            .hero-trust {
                gap: 12px;
            }

            .hero-live-card {
                right: 12px;
                bottom: 16px;
                min-width: 160px;
                padding: 12px 14px;
            }

            .selling-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .scenario-item,
            .scenario-item.reverse {
                flex-direction: column;
                gap: 20px;
                padding: 24px 0;
            }

            .scenario-image {
                flex-basis: auto;
                max-width: 100%;
                width: 100%;
            }

            .scenario-image img {
                height: 180px;
            }

            .news-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding: 16px;
            }

            .news-date-badge {
                width: 48px;
                height: 48px;
                border-radius: 10px;
            }

            .news-date-badge .day {
                font-size: 17px;
            }

            .news-readmore {
                align-self: flex-end;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .stat-number {
                font-size: 30px;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .deep-sidebar {
                grid-template-columns: 1fr;
            }

            .deep-article h2 {
                font-size: 24px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }

            .fixed-cta-bar {
                height: 56px;
                padding: 0 12px;
            }

            .fixed-cta-bar .bar-text {
                font-size: 13px;
                flex: 1;
                min-width: 0;
            }

            .fixed-cta-bar .bar-btn {
                padding: 8px 16px;
                font-size: 13px;
                flex-shrink: 0;
            }

            .site-footer {
                padding-bottom: 90px;
            }
        }

        @media (max-width: 520px) {
            .hero-title {
                font-size: 28px;
            }

            .hero-subtitle {
                font-size: 14px;
            }

            .section-title {
                font-size: 22px;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }

            .stat-block {
                padding: 20px 10px;
            }

            .stat-number {
                font-size: 26px;
            }

            .footer-subscribe {
                flex-direction: column;
            }

            .footer-subscribe button {
                width: 100%;
            }

            .fixed-cta-bar .bar-text {
                font-size: 12px;
            }

            .fixed-cta-bar .bar-btn {
                font-size: 12px;
                padding: 8px 12px;
            }
        }

        /* Foundation overrides */
        .accordion-title {
            font-family: var(--font-sans);
        }
        .accordion-content {
            font-family: var(--font-sans);
        }
        .row {
            max-width: none;
        }
        .columns {
            padding-left: 0;
            padding-right: 0;
        }

/* roulang page: category1 */
:root {
            --primary: #0B3D2E;
            --primary-dark: #082E21;
            --primary-deeper: #061F17;
            --accent: #C8FF00;
            --accent-dim: rgba(200, 255, 0, 0.16);
            --cta: #FF4E2A;
            --cta-dark: #D63F1F;
            --bg-warm: #F7F8F4;
            --bg-dark: #0E1210;
            --bg-dark-grad: linear-gradient(145deg, #0E1210 0%, #12352B 100%);
            --card-bg: #FFFFFF;
            --text-primary: #1A1F1B;
            --text-on-dark: #F7F8F4;
            --text-secondary: #5B635B;
            --text-muted: #87908A;
            --border: #E1E7DC;
            --border-dark: rgba(255, 255, 255, 0.12);
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-sm: 0 2px 12px rgba(11, 61, 46, 0.06);
            --shadow-md: 0 4px 16px rgba(11, 61, 46, 0.10);
            --shadow-lg: 0 8px 24px rgba(11, 61, 46, 0.14);
            --shadow-hover: 0 12px 32px rgba(11, 61, 46, 0.18);
            --font-sans: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
            --font-display: 'Oswald', 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --max-width: 1200px;
            --nav-height: 60px;
            --fixed-bar-height: 64px;
            --transition-fast: 0.2s ease;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.75;
            color: var(--text-primary);
            background-color: var(--bg-warm);
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border: 0;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover,
        a:focus {
            color: var(--cta);
            text-decoration: none;
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }
        .container-custom {
            max-width: var(--max-width);
            margin: 0 auto;
            padding-left: 40px;
            padding-right: 40px;
        }
        .section-padding {
            padding-top: 72px;
            padding-bottom: 72px;
        }
        .section-padding-sm {
            padding-top: 48px;
            padding-bottom: 48px;
        }
        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: var(--cta);
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .section-title {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
        .section-title.light {
            color: var(--text-on-dark);
        }
        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 640px;
            line-height: 1.8;
            margin-bottom: 32px;
        }
        .section-desc.light {
            color: rgba(247, 248, 244, 0.75);
        }

        /* ============ HEADER / NAV ============ */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            height: var(--nav-height);
            background: rgba(11, 61, 46, 0.97);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            border-bottom: 1px solid rgba(200, 255, 0, 0.22);
            transition: background var(--transition), box-shadow var(--transition);
        }
        .site-header.scrolled {
            background: rgba(11, 61, 46, 0.99);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height);
            gap: 20px;
        }
        .nav-left {
            display: flex;
            align-items: center;
            gap: 28px;
            flex-shrink: 0;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 800;
            color: var(--text-on-dark);
            letter-spacing: -0.3px;
            white-space: nowrap;
        }
        .nav-logo .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--accent);
            color: var(--primary);
            font-size: 15px;
            flex-shrink: 0;
        }
        .nav-logo:hover {
            color: var(--accent);
        }
        .nav-logo:hover .logo-icon {
            background: var(--text-on-dark);
            color: var(--primary);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-links li a {
            position: relative;
            display: block;
            padding: 8px 14px;
            font-size: 14px;
            font-weight: 600;
            color: rgba(247, 248, 244, 0.82);
            border-radius: var(--radius-sm);
            white-space: nowrap;
            transition: color var(--transition-fast), background var(--transition-fast);
        }
        .nav-links li a:hover {
            color: var(--accent);
            background: rgba(200, 255, 0, 0.08);
        }
        .nav-links li a.active {
            color: var(--accent);
            background: rgba(200, 255, 0, 0.12);
        }
        .nav-links li a.active::after {
            content: '';
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 2px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .nav-search {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-sm);
            padding: 6px 12px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: border-color var(--transition-fast);
        }
        .nav-search:focus-within {
            border-color: var(--accent);
        }
        .nav-search .search-icon {
            color: rgba(247, 248, 244, 0.5);
            font-size: 13px;
        }
        .nav-search input {
            background: none;
            border: none;
            outline: none;
            color: var(--text-on-dark);
            font-size: 13px;
            width: 130px;
            font-family: var(--font-sans);
        }
        .nav-search input::placeholder {
            color: rgba(247, 248, 244, 0.4);
        }
        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: var(--cta);
            color: #fff;
            font-weight: 700;
            font-size: 13px;
            border-radius: var(--radius-sm);
            white-space: nowrap;
            transition: background var(--transition-fast), transform var(--transition-fast);
        }
        .nav-cta:hover {
            background: var(--cta-dark);
            color: #fff;
            transform: translateY(-1px);
        }
        .nav-login {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 8px 12px;
            background: none;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(247, 248, 244, 0.85);
            border-radius: var(--radius-sm);
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: border-color var(--transition-fast), color var(--transition-fast);
            font-family: var(--font-sans);
        }
        .nav-login:hover {
            border-color: var(--accent);
            color: var(--accent);
        }
        .nav-hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 4px;
            width: 36px;
            height: 36px;
            padding: 6px 5px;
            background: none;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-sm);
            cursor: pointer;
        }
        .nav-hamburger span {
            display: block;
            height: 2px;
            background: var(--text-on-dark);
            border-radius: 2px;
            transition: all var(--transition-fast);
        }
        .nav-hamburger.open span:nth-child(1) {
            transform: translateY(6px) rotate(45deg);
        }
        .nav-hamburger.open span:nth-child(2) {
            opacity: 0;
        }
        .nav-hamburger.open span:nth-child(3) {
            transform: translateY(-6px) rotate(-45deg);
        }

        /* ============ SUB HERO ============ */
        .sub-hero {
            position: relative;
            margin-top: var(--nav-height);
            min-height: 340px;
            display: flex;
            align-items: flex-end;
            padding: 60px 0 40px;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center 30%;
            overflow: hidden;
        }
        .sub-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(11, 61, 46, 0.92) 0%, rgba(8, 46, 33, 0.82) 45%, rgba(14, 18, 16, 0.65) 100%);
            z-index: 1;
        }
        .sub-hero .container-custom {
            position: relative;
            z-index: 2;
            width: 100%;
        }
        .sub-hero-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(247, 248, 244, 0.6);
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        .sub-hero-breadcrumb a {
            color: rgba(247, 248, 244, 0.6);
        }
        .sub-hero-breadcrumb a:hover {
            color: var(--accent);
        }
        .sub-hero-breadcrumb .sep {
            color: rgba(247, 248, 244, 0.3);
        }
        .sub-hero-breadcrumb .current {
            color: var(--accent);
        }
        .sub-hero h1 {
            font-size: 44px;
            font-weight: 800;
            color: var(--text-on-dark);
            letter-spacing: -1px;
            margin-bottom: 12px;
        }
        .sub-hero-sub {
            font-size: 16px;
            color: rgba(247, 248, 244, 0.78);
            max-width: 620px;
            line-height: 1.8;
        }

        /* ============ MAIN LAYOUT ============ */
        .news-main {
            padding: 56px 0 72px;
        }
        .news-grid {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 40px;
            align-items: start;
        }
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .news-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 24px 28px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            display: flex;
            align-items: flex-start;
            gap: 20px;
            transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
        }
        .news-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
            border-color: rgba(11, 61, 46, 0.18);
        }
        .news-date-badge {
            flex-shrink: 0;
            width: 72px;
            height: 72px;
            background: var(--primary);
            border-radius: var(--radius);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--text-on-dark);
            box-shadow: 0 2px 8px rgba(11, 61, 46, 0.2);
            border: 1px solid rgba(200, 255, 0, 0.18);
        }
        .news-date-badge .day {
            font-size: 28px;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
            font-family: var(--font-display);
        }
        .news-date-badge .month {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-top: 2px;
        }
        .news-content {
            flex: 1;
            min-width: 0;
        }
        .news-card-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 20px;
            background: var(--accent-dim);
            color: var(--primary);
            margin-bottom: 8px;
        }
        .news-title {
            font-size: 19px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            line-height: 1.45;
            letter-spacing: -0.3px;
        }
        .news-title a {
            color: var(--text-primary);
        }
        .news-title a:hover {
            color: var(--cta);
        }
        .news-excerpt {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 12px;
        }
        .news-read-more {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            font-weight: 700;
            color: var(--primary);
            transition: color var(--transition-fast), gap var(--transition-fast);
        }
        .news-read-more i {
            font-size: 12px;
            transition: transform var(--transition-fast);
        }
        .news-read-more:hover {
            color: var(--cta);
            gap: 8px;
        }
        .news-read-more:hover i {
            transform: translateX(3px);
        }
        .news-card.has-image {
            display: flex;
            align-items: stretch;
        }
        .news-card .news-image {
            flex-shrink: 0;
            width: 160px;
            border-radius: var(--radius);
            overflow: hidden;
            align-self: center;
        }
        .news-card .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: var(--radius);
            transition: transform var(--transition);
        }
        .news-card:hover .news-image img {
            transform: scale(1.04);
        }

        /* ============ SIDEBAR ============ */
        .news-sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
            position: sticky;
            top: calc(var(--nav-height) + 24px);
        }
        .sidebar-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 24px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
        }
        .sidebar-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 18px;
            letter-spacing: -0.3px;
            position: relative;
            padding-bottom: 10px;
        }
        .sidebar-card h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 32px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .tag-cloud a {
            display: inline-block;
            padding: 5px 14px;
            font-size: 13px;
            font-weight: 500;
            border-radius: 20px;
            background: var(--bg-warm);
            color: var(--text-secondary);
            border: 1px solid var(--border);
            transition: all var(--transition-fast);
        }
        .tag-cloud a:hover {
            background: var(--primary);
            color: var(--text-on-dark);
            border-color: var(--primary);
        }
        .mini-match-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .mini-match-list li {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
        }
        .mini-match-list li:last-child {
            border-bottom: none;
        }
        .mini-match-list .match-teams {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
        }
        .mini-match-list .match-time {
            font-size: 12px;
            color: var(--text-muted);
            white-space: nowrap;
        }
        .sidebar-subscribe-form {
            display: flex;
            gap: 8px;
            flex-direction: column;
        }
        .sidebar-subscribe-form input {
            padding: 11px 14px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            font-size: 14px;
            font-family: var(--font-sans);
            background: var(--bg-warm);
            color: var(--text-primary);
            transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
        }
        .sidebar-subscribe-form input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(200, 255, 0, 0.18);
            outline: none;
        }
        .sidebar-subscribe-form button {
            padding: 11px 14px;
            background: var(--cta);
            color: #fff;
            border: none;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            font-family: var(--font-sans);
            transition: background var(--transition-fast);
        }
        .sidebar-subscribe-form button:hover {
            background: var(--cta-dark);
        }

        /* ============ PAGINATION ============ */
        .news-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-top: 32px;
        }
        .news-pagination a,
        .news-pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 600;
            border: 1px solid var(--border);
            background: var(--card-bg);
            color: var(--text-secondary);
            transition: all var(--transition-fast);
        }
        .news-pagination a:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .news-pagination .current {
            background: var(--primary);
            color: var(--accent);
            border-color: var(--primary);
            font-weight: 700;
        }

        /* ============ FOOTER ============ */
        .site-footer {
            background: var(--primary-deeper);
            color: rgba(247, 248, 244, 0.75);
            padding: 56px 0 0;
            border-top: 2px solid rgba(200, 255, 0, 0.25);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.3fr;
            gap: 40px;
            padding-bottom: 40px;
        }
        .footer-brand .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 800;
            color: var(--text-on-dark);
            margin-bottom: 16px;
        }
        .footer-logo .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 8px;
            background: var(--accent);
            color: var(--primary);
            font-size: 16px;
            flex-shrink: 0;
        }
        .footer-brand p {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(247, 248, 244, 0.55);
            max-width: 320px;
        }
        .footer-col h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-on-dark);
            margin-bottom: 18px;
            letter-spacing: -0.2px;
        }
        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-col ul li a {
            font-size: 14px;
            color: rgba(247, 248, 244, 0.55);
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--accent);
        }
        .footer-subscribe {
            display: flex;
            gap: 8px;
            flex-direction: column;
            margin-top: 12px;
        }
        .footer-subscribe input {
            padding: 11px 14px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-on-dark);
            font-size: 13px;
            font-family: var(--font-sans);
            transition: border-color var(--transition-fast);
        }
        .footer-subscribe input:focus {
            border-color: var(--accent);
            outline: none;
        }
        .footer-subscribe input::placeholder {
            color: rgba(247, 248, 244, 0.35);
        }
        .footer-subscribe button {
            padding: 11px 14px;
            background: var(--accent);
            color: var(--primary);
            border: none;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            font-family: var(--font-sans);
            transition: background var(--transition-fast);
        }
        .footer-subscribe button:hover {
            background: #d8ff33;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 20px 0 24px;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px 20px;
            font-size: 13px;
            color: rgba(247, 248, 244, 0.4);
        }
        .footer-meta-links {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: auto;
        }
        .footer-meta-links a {
            color: rgba(247, 248, 244, 0.4);
            font-size: 13px;
        }
        .footer-meta-links a:hover {
            color: var(--accent);
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .container-custom {
                padding-left: 24px;
                padding-right: 24px;
            }
            .news-grid {
                grid-template-columns: 1fr 280px;
                gap: 28px;
            }
            .nav-links li a {
                padding: 8px 10px;
                font-size: 13px;
            }
            .nav-search input {
                width: 90px;
            }
            .footer-grid {
                grid-template-columns: 1.5fr 1fr 1fr;
                gap: 28px;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 820px) {
            .news-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .news-sidebar {
                position: static;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
            .sub-hero h1 {
                font-size: 34px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --nav-height: 56px;
            }
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }
            .nav-left {
                gap: 12px;
            }
            .nav-links {
                display: none;
                position: fixed;
                top: var(--nav-height);
                left: 0;
                right: 0;
                bottom: 0;
                background: var(--primary-deeper);
                flex-direction: column;
                align-items: stretch;
                padding: 24px 16px;
                gap: 6px;
                z-index: 99;
                overflow-y: auto;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links li a {
                display: block;
                padding: 14px 16px;
                font-size: 16px;
                color: rgba(247, 248, 244, 0.85);
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
                border-radius: 0;
            }
            .nav-links li a.active {
                background: rgba(200, 255, 0, 0.1);
                color: var(--accent);
            }
            .nav-links li a.active::after {
                display: none;
            }
            .nav-search {
                display: none;
            }
            .nav-login {
                display: none;
            }
            .nav-hamburger {
                display: flex;
            }
            .nav-cta {
                font-size: 12px;
                padding: 7px 12px;
            }
            .sub-hero {
                min-height: 280px;
                padding: 40px 0 28px;
                margin-top: var(--nav-height);
            }
            .sub-hero h1 {
                font-size: 28px;
                letter-spacing: -0.5px;
            }
            .sub-hero-sub {
                font-size: 14px;
                line-height: 1.7;
            }
            .section-padding {
                padding-top: 48px;
                padding-bottom: 48px;
            }
            .news-card {
                flex-direction: column;
                gap: 16px;
                padding: 20px;
            }
            .news-date-badge {
                width: 64px;
                height: 64px;
                border-radius: 10px;
            }
            .news-date-badge .day {
                font-size: 24px;
            }
            .news-card .news-image {
                width: 100%;
                max-width: 100%;
                height: 160px;
                align-self: stretch;
            }
            .news-title {
                font-size: 17px;
            }
            .news-excerpt {
                font-size: 13px;
            }
            .sidebar-card {
                padding: 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-brand {
                grid-column: auto;
            }
            .footer-meta-links {
                margin-left: 0;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
            .news-pagination a,
            .news-pagination span {
                width: 36px;
                height: 36px;
                font-size: 13px;
            }
        }

        @media (max-width: 520px) {
            .nav-logo {
                font-size: 17px;
            }
            .nav-logo .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 13px;
            }
            .nav-cta {
                font-size: 11px;
                padding: 6px 10px;
                gap: 4px;
            }
            .sub-hero h1 {
                font-size: 24px;
            }
            .news-card {
                padding: 16px;
            }
            .news-date-badge {
                width: 56px;
                height: 56px;
            }
            .news-date-badge .day {
                font-size: 20px;
            }
        }

/* roulang page: category2 */
:root {
        --primary: #0B3D2E;
        --primary-dark: #082E21;
        --primary-deeper: #061F17;
        --accent: #C8FF00;
        --accent-dim: rgba(200, 255, 0, 0.16);
        --cta: #FF4E2A;
        --cta-dark: #D63F1F;
        --bg-warm: #F7F8F4;
        --bg-dark: #0E1210;
        --bg-dark-grad: linear-gradient(145deg, #0E1210 0%, #12352B 100%);
        --card-bg: #FFFFFF;
        --text-primary: #1A1F1B;
        --text-on-dark: #F7F8F4;
        --text-secondary: #5B635B;
        --text-muted: #87908A;
        --border: #E1E7DC;
        --border-dark: rgba(255, 255, 255, 0.12);
        --radius-sm: 8px;
        --radius: 12px;
        --radius-lg: 16px;
        --radius-xl: 20px;
        --shadow-sm: 0 2px 12px rgba(11, 61, 46, 0.06);
        --shadow-md: 0 4px 16px rgba(11, 61, 46, 0.10);
        --shadow-lg: 0 8px 24px rgba(11, 61, 46, 0.14);
        --shadow-hover: 0 12px 32px rgba(11, 61, 46, 0.18);
        --font-sans: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
        --font-display: 'Oswald', 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
        --max-width: 1200px;
        --nav-height: 60px;
        --fixed-bar-height: 64px;
        --transition-fast: 0.2s ease;
        --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
    }

    body {
        font-family: var(--font-sans);
        font-size: 15px;
        line-height: 1.75;
        color: var(--text-primary);
        background-color: var(--bg-warm);
        min-height: 100vh;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        overflow-x: hidden;
        padding-top: var(--nav-height);
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
        border: 0;
    }

    a {
        color: var(--primary);
        text-decoration: none;
        transition: color var(--transition-fast);
    }

    a:hover,
    a:focus {
        color: var(--cta);
        text-decoration: none;
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: 2px;
    }

    .container-custom {
        max-width: var(--max-width);
        margin: 0 auto;
        padding-left: 40px;
        padding-right: 40px;
    }

    .section-padding {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .section-padding-sm {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .section-tag {
        display: inline-block;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.5px;
        color: var(--cta);
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .section-title {
        font-size: 32px;
        font-weight: 800;
        color: var(--text-primary);
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }

    .section-title.light {
        color: var(--text-on-dark);
    }

    .section-desc {
        font-size: 16px;
        color: var(--text-secondary);
        max-width: 640px;
        line-height: 1.8;
        margin-bottom: 32px;
    }

    .section-desc.light {
        color: rgba(247, 248, 244, 0.75);
    }

    /* ============ HEADER / NAV ============ */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        height: var(--nav-height);
        background: rgba(11, 61, 46, 0.97);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        border-bottom: 1px solid rgba(200, 255, 0, 0.22);
        transition: background var(--transition), box-shadow var(--transition);
    }

    .site-header.scrolled {
        background: rgba(11, 61, 46, 0.99);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    }

    .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: var(--nav-height);
        gap: 20px;
    }

    .nav-left {
        display: flex;
        align-items: center;
        gap: 28px;
        flex-shrink: 0;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 20px;
        font-weight: 800;
        color: var(--text-on-dark);
        letter-spacing: -0.3px;
        white-space: nowrap;
    }

    .nav-logo .logo-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: var(--accent);
        color: var(--primary);
        font-size: 15px;
        flex-shrink: 0;
    }

    .nav-logo:hover {
        color: var(--accent);
    }

    .nav-logo:hover .logo-icon {
        background: var(--text-on-dark);
        color: var(--primary);
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 6px;
        list-style: none;
    }

    .nav-links a {
        display: inline-block;
        padding: 8px 14px;
        font-size: 14px;
        font-weight: 500;
        color: rgba(247, 248, 244, 0.75);
        border-radius: 8px;
        transition: color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
        white-space: nowrap;
    }

    .nav-links a:hover {
        color: var(--text-on-dark);
        background: rgba(200, 255, 0, 0.08);
    }

    .nav-links a.active {
        color: var(--accent);
        background: var(--accent-dim);
        box-shadow: 0 0 0 1px rgba(200, 255, 0, 0.35) inset;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-shrink: 0;
    }

    .nav-search {
        position: relative;
        display: flex;
        align-items: center;
    }

    .nav-search .search-icon {
        position: absolute;
        left: 12px;
        color: rgba(247, 248, 244, 0.5);
        font-size: 13px;
        pointer-events: none;
    }

    .nav-search input {
        width: 180px;
        height: 36px;
        padding: 0 12px 0 34px;
        border: 1px solid rgba(247, 248, 244, 0.25);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
        color: var(--text-on-dark);
        font-size: 13px;
        font-family: var(--font-sans);
        transition: border-color var(--transition-fast), background var(--transition-fast);
    }

    .nav-search input::placeholder {
        color: rgba(247, 248, 244, 0.5);
    }

    .nav-search input:focus {
        border-color: var(--accent);
        background: rgba(255, 255, 255, 0.12);
        outline: none;
    }

    .nav-cta {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        height: 36px;
        padding: 0 18px;
        border-radius: 8px;
        background: var(--cta);
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        white-space: nowrap;
        transition: background var(--transition-fast), transform var(--transition-fast);
    }

    .nav-cta:hover {
        background: var(--cta-dark);
        color: #fff;
        transform: translateY(-1px);
    }

    .nav-login {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        height: 36px;
        padding: 0 12px;
        border: 1px solid rgba(247, 248, 244, 0.3);
        border-radius: 8px;
        background: transparent;
        color: rgba(247, 248, 244, 0.8);
        font-size: 13px;
        font-weight: 500;
        cursor: pointer;
        white-space: nowrap;
        transition: border-color var(--transition-fast), color var(--transition-fast);
    }

    .nav-login:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

    .nav-hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        padding: 8px;
        border: 1px solid rgba(247, 248, 244, 0.3);
        border-radius: 8px;
        background: transparent;
        cursor: pointer;
    }

    .nav-hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--text-on-dark);
        border-radius: 2px;
        transition: transform var(--transition-fast), opacity var(--transition-fast);
    }

    .nav-hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Mobile nav panel */
    .mobile-nav-panel {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 99;
        background: var(--primary-deeper);
        padding: 24px 20px 40px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-nav-panel.open {
        transform: translateX(0);
    }

    .mobile-nav-panel .mobile-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin-bottom: 24px;
    }

    .mobile-nav-panel .mobile-links a {
        display: block;
        padding: 14px 16px;
        font-size: 16px;
        font-weight: 600;
        color: rgba(247, 248, 244, 0.85);
        border-radius: 10px;
        border: 1px solid transparent;
        transition: background var(--transition-fast), border-color var(--transition-fast);
    }

    .mobile-nav-panel .mobile-links a:hover {
        background: rgba(200, 255, 0, 0.08);
        color: var(--accent);
    }

    .mobile-nav-panel .mobile-links a.active {
        background: var(--accent-dim);
        border-color: rgba(200, 255, 0, 0.35);
        color: var(--accent);
    }

    .mobile-nav-panel .mobile-search {
        position: relative;
        margin-bottom: 16px;
    }

    .mobile-nav-panel .mobile-search input {
        width: 100%;
        height: 44px;
        padding: 0 16px 0 40px;
        border: 1px solid rgba(247, 248, 244, 0.25);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
        color: var(--text-on-dark);
        font-size: 14px;
        font-family: var(--font-sans);
    }

    .mobile-nav-panel .mobile-search input::placeholder {
        color: rgba(247, 248, 244, 0.5);
    }

    .mobile-nav-panel .mobile-search .search-icon {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(247, 248, 244, 0.5);
        font-size: 14px;
    }

    .mobile-nav-panel .mobile-cta {
        display: flex;
        width: 100%;
        height: 46px;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-radius: 10px;
        background: var(--cta);
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        transition: background var(--transition-fast);
    }

    .mobile-nav-panel .mobile-cta:hover {
        background: var(--cta-dark);
        color: #fff;
    }

    /* ============ BUTTONS ============ */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 24px;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 700;
        font-family: var(--font-sans);
        border: 2px solid transparent;
        cursor: pointer;
        transition: all var(--transition-fast);
        text-decoration: none;
        line-height: 1.4;
    }

    .btn-primary {
        background: var(--cta);
        color: #fff;
        border-color: var(--cta);
    }

    .btn-primary:hover {
        background: var(--cta-dark);
        border-color: var(--cta-dark);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .btn-outline-light {
        background: transparent;
        color: var(--text-on-dark);
        border-color: rgba(247, 248, 244, 0.4);
    }

    .btn-outline-light:hover {
        border-color: var(--accent);
        color: var(--accent);
        transform: translateY(-2px);
    }

    .btn-outline-dark {
        background: transparent;
        color: var(--primary);
        border-color: var(--primary);
    }

    .btn-outline-dark:hover {
        background: var(--primary);
        color: var(--accent);
        transform: translateY(-2px);
    }

    .btn-sm {
        padding: 8px 16px;
        font-size: 13px;
        border-radius: 6px;
    }

    /* ============ FOOTER ============ */
    .site-footer {
        background: var(--primary-deeper);
        color: rgba(247, 248, 244, 0.7);
        padding-top: 56px;
        padding-bottom: 48px;
        border-top: 2px solid rgba(200, 255, 0, 0.3);
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-brand .footer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 20px;
        font-weight: 800;
        color: var(--text-on-dark);
        margin-bottom: 14px;
    }

    .footer-brand .footer-logo .logo-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: var(--accent);
        color: var(--primary);
        font-size: 15px;
        flex-shrink: 0;
    }

    .footer-brand p {
        font-size: 14px;
        line-height: 1.8;
        color: rgba(247, 248, 244, 0.55);
        max-width: 280px;
    }

    .footer-col h4 {
        font-size: 15px;
        font-weight: 700;
        color: var(--text-on-dark);
        margin-bottom: 16px;
    }

    .footer-col ul {
        list-style: none;
    }

    .footer-col ul li {
        margin-bottom: 10px;
    }

    .footer-col ul a {
        font-size: 14px;
        color: rgba(247, 248, 244, 0.65);
        transition: color var(--transition-fast);
    }

    .footer-col ul a:hover {
        color: var(--accent);
    }

    .footer-subscribe {
        display: flex;
        gap: 8px;
        margin-top: 12px;
    }

    .footer-subscribe input {
        flex: 1;
        height: 40px;
        padding: 0 14px;
        border: 1px solid rgba(247, 248, 244, 0.25);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
        color: var(--text-on-dark);
        font-size: 13px;
        font-family: var(--font-sans);
        min-width: 0;
    }

    .footer-subscribe input::placeholder {
        color: rgba(247, 248, 244, 0.45);
    }

    .footer-subscribe input:focus {
        border-color: var(--accent);
        outline: none;
    }

    .footer-subscribe button {
        height: 40px;
        padding: 0 18px;
        border: none;
        border-radius: 8px;
        background: var(--cta);
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        white-space: nowrap;
        transition: background var(--transition-fast);
    }

    .footer-subscribe button:hover {
        background: var(--cta-dark);
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 10px 20px;
        padding-top: 24px;
        border-top: 1px solid rgba(247, 248, 244, 0.12);
        font-size: 12px;
        color: rgba(247, 248, 244, 0.5);
    }

    .footer-meta-links {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .footer-meta-links a {
        color: rgba(247, 248, 244, 0.6);
        font-size: 12px;
    }

    .footer-meta-links a:hover {
        color: var(--accent);
    }

    /* ============ FIXED CTA BAR ============ */
    .fixed-cta-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 90;
        height: var(--fixed-bar-height);
        background: var(--primary);
        border-top: 2px solid var(--accent);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding: 0 24px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    }

    .fixed-cta-bar .cta-text {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-on-dark);
        white-space: nowrap;
    }

    .fixed-cta-bar .btn {
        height: 40px;
        padding: 0 22px;
        font-size: 14px;
    }

    body.has-fixed-bar {
        padding-bottom: var(--fixed-bar-height);
    }

    /* ============ PAGE-SPECIFIC: HERO BANNER ============ */
    .page-hero {
        position: relative;
        background-image: url('/assets/images/backpic/back-2.webp');
        background-size: cover;
        background-position: center;
        min-height: 280px;
        display: flex;
        align-items: center;
        padding: 60px 0 48px;
        overflow: hidden;
    }

    .page-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(11, 61, 46, 0.92) 0%, rgba(6, 31, 23, 0.78) 50%, rgba(14, 18, 16, 0.85) 100%);
    }

    .page-hero .hero-content {
        position: relative;
        z-index: 2;
    }

    .page-hero h1 {
        font-size: 36px;
        font-weight: 800;
        color: var(--text-on-dark);
        margin-bottom: 12px;
        letter-spacing: -0.5px;
        line-height: 1.25;
    }

    .page-hero .hero-sub {
        font-size: 16px;
        color: rgba(247, 248, 244, 0.78);
        max-width: 560px;
        line-height: 1.8;
    }

    .page-hero .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 14px;
        border-radius: 20px;
        background: var(--accent-dim);
        color: var(--accent);
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 14px;
        border: 1px solid rgba(200, 255, 0, 0.3);
    }

    /* ============ PAGE-SPECIFIC: ROUND TABS ============ */
    .round-tabs-wrap {
        background: var(--card-bg);
        border-radius: var(--radius);
        box-shadow: var(--shadow-sm);
        margin-top: -28px;
        position: relative;
        z-index: 10;
        padding: 16px 20px;
    }

    .round-tabs {
        border-bottom: 1px solid var(--border);
        margin-bottom: 0;
    }

    .round-tabs .tabs-title {
        display: inline-block;
        margin-right: 4px;
    }

    .round-tabs .tabs-title a {
        display: inline-block;
        padding: 10px 18px;
        font-size: 14px;
        font-weight: 600;
        color: var(--text-secondary);
        border-radius: 8px 8px 0 0;
        border-bottom: 3px solid transparent;
        transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
    }

    .round-tabs .tabs-title a:hover {
        color: var(--primary);
        background: rgba(11, 61, 46, 0.04);
    }

    .round-tabs .tabs-title.is-active a {
        color: var(--primary);
        border-bottom-color: var(--cta);
        background: rgba(11, 61, 46, 0.04);
    }

    .tabs-content {
        border: none;
        background: transparent;
    }

    .tabs-panel {
        padding: 20px 0 0;
    }

    /* ============ PAGE-SPECIFIC: TIMELINE MATCH LIST ============ */
    .timeline-section {
        position: relative;
    }

    .timeline-section::before {
        content: '';
        position: absolute;
        left: 28px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--border);
        border-radius: 1px;
    }

    .timeline-group {
        position: relative;
        padding-left: 60px;
        margin-bottom: 36px;
    }

    .timeline-group:last-child {
        margin-bottom: 0;
    }

    .timeline-dot {
        position: absolute;
        left: 20px;
        top: 4px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--primary);
        border: 3px solid var(--accent);
        z-index: 2;
        box-shadow: 0 0 0 4px rgba(200, 255, 0, 0.15);
    }

    .timeline-round-label {
        font-size: 18px;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .timeline-round-label .round-date-range {
        font-size: 13px;
        font-weight: 500;
        color: var(--text-muted);
    }

    .match-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 16px 20px;
        margin-bottom: 10px;
        box-shadow: var(--shadow-sm);
        transition: box-shadow var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
    }

    .match-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-1px);
        border-color: rgba(11, 61, 46, 0.3);
    }

    .match-card.finished {
        background: #FAFBF9;
        border-color: #E8EDE4;
    }

    .match-card.live {
        border-left: 4px solid var(--cta);
    }

    .match-card .match-teams {
        flex: 1;
        min-width: 0;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .match-card .team-name {
        font-size: 15px;
        font-weight: 700;
        color: var(--text-primary);
        white-space: nowrap;
    }

    .match-card .versus {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-muted);
        white-space: nowrap;
    }

    .match-card .match-score {
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: var(--font-display);
        font-size: 22px;
        font-weight: 700;
        color: var(--primary);
    }

    .match-card.finished .match-score {
        color: var(--text-primary);
    }

    .match-card.live .match-score {
        color: var(--cta);
    }

    .match-card .score-divider {
        color: var(--text-muted);
        font-size: 18px;
    }

    .match-card .match-info {
        text-align: right;
        min-width: 130px;
    }

    .match-card .match-time {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-primary);
    }

    .match-card .match-venue {
        font-size: 12px;
        color: var(--text-muted);
        margin-bottom: 6px;
    }

    .match-card .match-status-badge {
        display: inline-block;
        padding: 3px 10px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .match-card .status-scheduled {
        background: var(--accent-dim);
        color: var(--primary);
    }

    .match-card .status-finished {
        background: rgba(91, 99, 91, 0.15);
        color: var(--text-secondary);
    }

    .match-card .status-live {
        background: rgba(255, 78, 42, 0.12);
        color: var(--cta);
    }

    .match-card .btn-live {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 6px 14px;
        border-radius: 6px;
        background: var(--cta);
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        white-space: nowrap;
        transition: background var(--transition-fast);
    }

    .match-card .btn-live:hover {
        background: var(--cta-dark);
        color: #fff;
    }

    .match-card .btn-finished {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 6px 14px;
        border-radius: 6px;
        background: transparent;
        color: var(--text-secondary);
        font-size: 12px;
        font-weight: 600;
        border: 1px solid var(--border);
        white-space: nowrap;
        transition: border-color var(--transition-fast), color var(--transition-fast);
    }

    .match-card .btn-finished:hover {
        border-color: var(--primary);
        color: var(--primary);
    }

    /* ============ PAGE-SPECIFIC: FEATURED MATCH ============ */
    .featured-match-block {
        background: var(--bg-dark-grad);
        border-radius: var(--radius-xl);
        overflow: hidden;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .featured-match-image {
        position: relative;
        min-height: 320px;
        background-image: url('/assets/images/coverpic/cover-3.webp');
        background-size: cover;
        background-position: center;
    }

    .featured-match-image::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(11, 61, 46, 0.85) 0%, rgba(11, 61, 46, 0.3) 100%);
    }

    .featured-match-image .featured-tag {
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
        display: inline-block;
        padding: 6px 16px;
        border-radius: 20px;
        background: var(--cta);
        color: #fff;
        font-size: 13px;
        font-weight: 700;
    }

    .featured-match-info {
        padding: 36px 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .featured-match-info h3 {
        font-size: 22px;
        font-weight: 800;
        color: var(--text-on-dark);
        margin-bottom: 8px;
    }

    .featured-match-info .featured-teams {
        font-size: 28px;
        font-weight: 800;
        color: var(--accent);
        margin-bottom: 12px;
        font-family: var(--font-display);
    }

    .featured-match-info p {
        font-size: 14px;
        color: rgba(247, 248, 244, 0.7);
        line-height: 1.8;
        margin-bottom: 18px;
    }

    .featured-match-info .btn {
        align-self: flex-start;
    }

    /* ============ PAGE-SPECIFIC: DATA HIGHLIGHTS ============ */
    .data-highlight-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .data-highlight-item {
        text-align: center;
        padding: 24px 16px;
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        box-shadow: var(--shadow-sm);
    }

    .data-highlight-item .data-number {
        font-size: 32px;
        font-weight: 800;
        font-family: var(--font-display);
        color: var(--primary);
        line-height: 1.2;
        margin-bottom: 4px;
    }

    .data-highlight-item .data-number .accent {
        color: var(--cta);
    }

    .data-highlight-item .data-label {
        font-size: 13px;
        color: var(--text-secondary);
        font-weight: 500;
    }

    /* ============ PAGE-SPECIFIC: FAQ ============ */
    .accordion-round {
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        margin-bottom: 10px;
        overflow: hidden;
    }

    .accordion-round .accordion-title {
        font-size: 15px;
        font-weight: 700;
        color: var(--primary);
        background: var(--card-bg);
        padding: 16px 20px;
        border: none;
        cursor: pointer;
        transition: background var(--transition-fast);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .accordion-round .accordion-title:hover {
        background: rgba(11, 61, 46, 0.04);
    }

    .accordion-round .accordion-title .accordion-icon {
        color: var(--cta);
        font-size: 14px;
        transition: transform var(--transition-fast);
    }

    .accordion-round.is-active .accordion-title .accordion-icon {
        transform: rotate(180deg);
    }

    .accordion-round .accordion-content {
        display: none;
        padding: 16px 20px 20px;
        border-top: 1px solid var(--border);
        background: rgba(247, 248, 244, 0.6);
        font-size: 14px;
        color: var(--text-secondary);
        line-height: 1.8;
    }

    .accordion-round.is-active .accordion-content {
        display: block;
        border-left: 4px solid var(--accent);
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 1024px) {
        .container-custom {
            padding-left: 24px;
            padding-right: 24px;
        }
        .nav-links a {
            padding: 8px 10px;
            font-size: 13px;
        }
        .nav-right {
            gap: 10px;
        }
        .nav-search input {
            width: 140px;
        }
        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        .data-highlight-row {
            grid-template-columns: repeat(2, 1fr);
        }
        .featured-match-block {
            grid-template-columns: 1fr;
        }
        .featured-match-image {
            min-height: 220px;
        }
    }

    @media (max-width: 768px) {
        body {
            padding-top: 56px;
        }
        :root {
            --nav-height: 56px;
            --fixed-bar-height: 56px;
        }
        .container-custom {
            padding-left: 16px;
            padding-right: 16px;
        }
        .nav-links {
            display: none;
        }
        .nav-search {
            display: none;
        }
        .nav-login {
            display: none;
        }
        .nav-hamburger {
            display: flex;
        }
        .mobile-nav-panel {
            display: block;
        }
        .page-hero {
            min-height: 220px;
            padding: 40px 0 32px;
        }
        .page-hero h1 {
            font-size: 26px;
        }
        .page-hero .hero-sub {
            font-size: 14px;
        }
        .round-tabs-wrap {
            margin-top: -20px;
            padding: 10px 12px;
        }
        .round-tabs .tabs-title a {
            padding: 8px 12px;
            font-size: 13px;
        }
        .timeline-section::before {
            left: 16px;
        }
        .timeline-group {
            padding-left: 40px;
        }
        .timeline-dot {
            left: 8px;
            width: 16px;
            height: 16px;
        }
        .match-card {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            padding: 14px 16px;
        }
        .match-card .match-teams {
            flex-wrap: wrap;
            gap: 6px;
        }
        .match-card .team-name {
            font-size: 14px;
        }
        .match-card .match-score {
            font-size: 20px;
        }
        .match-card .match-info {
            text-align: left;
            width: 100%;
        }
        .featured-match-info {
            padding: 24px 20px;
        }
        .featured-match-info .featured-teams {
            font-size: 22px;
        }
        .section-title {
            font-size: 24px;
        }
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }
        .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
        }
        .fixed-cta-bar {
            gap: 10px;
            padding: 0 16px;
        }
        .fixed-cta-bar .cta-text {
            font-size: 12px;
        }
        .fixed-cta-bar .btn {
            padding: 0 14px;
            font-size: 12px;
            height: 36px;
        }
    }

    @media (max-width: 520px) {
        .page-hero h1 {
            font-size: 22px;
        }
        .page-hero .hero-sub {
            font-size: 13px;
            line-height: 1.6;
        }
        .round-tabs .tabs-title a {
            padding: 6px 8px;
            font-size: 12px;
        }
        .data-highlight-row {
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        .data-highlight-item .data-number {
            font-size: 24px;
        }
        .featured-match-image {
            min-height: 180px;
        }
    }

/* roulang page: category4 */
:root {
            --primary: #0B3D2E;
            --primary-dark: #082E21;
            --primary-deeper: #061F17;
            --accent: #C8FF00;
            --accent-dim: rgba(200, 255, 0, 0.16);
            --cta: #FF4E2A;
            --cta-dark: #D63F1F;
            --bg-warm: #F7F8F4;
            --bg-dark: #0E1210;
            --bg-dark-grad: linear-gradient(145deg, #0E1210 0%, #12352B 100%);
            --card-bg: #FFFFFF;
            --text-primary: #1A1F1B;
            --text-on-dark: #F7F8F4;
            --text-secondary: #5B635B;
            --text-muted: #87908A;
            --border: #E1E7DC;
            --border-dark: rgba(255, 255, 255, 0.12);
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-sm: 0 2px 12px rgba(11, 61, 46, 0.06);
            --shadow-md: 0 4px 16px rgba(11, 61, 46, 0.10);
            --shadow-lg: 0 8px 24px rgba(11, 61, 46, 0.14);
            --shadow-hover: 0 12px 32px rgba(11, 61, 46, 0.18);
            --font-sans: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
            --font-display: 'Oswald', 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --max-width: 1200px;
            --nav-height: 60px;
            --fixed-bar-height: 64px;
            --transition-fast: 0.2s ease;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.75;
            color: var(--text-primary);
            background-color: var(--bg-warm);
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            padding-top: var(--nav-height);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            border: 0;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        a:hover,
        a:focus {
            color: var(--cta);
            text-decoration: none;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        .container-custom {
            max-width: var(--max-width);
            margin: 0 auto;
            padding-left: 40px;
            padding-right: 40px;
        }

        .section-padding {
            padding-top: 72px;
            padding-bottom: 72px;
        }

        .section-padding-sm {
            padding-top: 48px;
            padding-bottom: 48px;
        }

        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: var(--cta);
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .section-title {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .section-title.light {
            color: var(--text-on-dark);
        }

        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 640px;
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .section-desc.light {
            color: rgba(247, 248, 244, 0.75);
        }

        /* ============ HEADER / NAV ============ */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            height: var(--nav-height);
            background: rgba(11, 61, 46, 0.97);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            border-bottom: 1px solid rgba(200, 255, 0, 0.22);
            transition: background var(--transition), box-shadow var(--transition);
        }

        .site-header.scrolled {
            background: rgba(11, 61, 46, 0.99);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height);
            gap: 20px;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 28px;
            flex-shrink: 0;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 800;
            color: var(--text-on-dark);
            letter-spacing: -0.3px;
            white-space: nowrap;
        }

        .nav-logo .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--accent);
            color: var(--primary);
            font-size: 15px;
            flex-shrink: 0;
        }

        .nav-logo:hover {
            color: var(--accent);
        }

        .nav-logo:hover .logo-icon {
            background: var(--text-on-dark);
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links li {
            margin: 0;
        }

        .nav-links a {
            display: block;
            padding: 6px 14px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 500;
            color: rgba(247, 248, 244, 0.82);
            position: relative;
            transition: color var(--transition-fast), background var(--transition-fast);
        }

        .nav-links a:hover {
            color: var(--accent);
            background: rgba(200, 255, 0, 0.08);
        }

        .nav-links a.active {
            color: var(--accent);
            font-weight: 700;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .nav-search {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-sm);
            padding: 6px 12px;
            transition: border-color var(--transition-fast), background var(--transition-fast);
        }

        .nav-search:focus-within {
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.12);
        }

        .nav-search .search-icon {
            color: rgba(247, 248, 244, 0.55);
            font-size: 13px;
        }

        .nav-search input {
            background: transparent;
            border: none;
            color: var(--text-on-dark);
            font-size: 13px;
            width: 150px;
            outline: none;
            padding: 0;
        }

        .nav-search input::placeholder {
            color: rgba(247, 248, 244, 0.45);
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            background: var(--cta);
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            transition: background var(--transition-fast), transform var(--transition-fast);
            white-space: nowrap;
        }

        .nav-cta:hover {
            background: var(--cta-dark);
            color: #fff;
            transform: translateY(-1px);
        }

        .nav-login {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: transparent;
            color: rgba(247, 248, 244, 0.8);
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: color var(--transition-fast), border-color var(--transition-fast);
            white-space: nowrap;
        }

        .nav-login:hover {
            color: var(--accent);
            border-color: var(--accent);
        }

        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            padding: 8px;
            cursor: pointer;
            border-radius: var(--radius-sm);
        }

        .nav-hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text-on-dark);
            border-radius: 2px;
            transition: all var(--transition-fast);
        }

        .nav-hamburger:hover span {
            background: var(--accent);
        }

        /* Mobile nav panel */
        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--primary-deeper);
            z-index: 99;
            padding: 24px 20px;
            overflow-y: auto;
        }

        .mobile-nav-panel.is-open {
            display: block;
        }

        .mobile-nav-panel ul {
            list-style: none;
            margin: 0 0 24px;
            padding: 0;
        }

        .mobile-nav-panel ul li {
            margin-bottom: 4px;
        }

        .mobile-nav-panel ul a {
            display: block;
            padding: 14px 12px;
            color: rgba(247, 248, 244, 0.85);
            font-size: 17px;
            font-weight: 600;
            border-radius: var(--radius-sm);
            transition: background var(--transition-fast), color var(--transition-fast);
        }

        .mobile-nav-panel ul a:hover,
        .mobile-nav-panel ul a.active {
            background: rgba(200, 255, 0, 0.1);
            color: var(--accent);
        }

        .mobile-nav-search {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-sm);
            padding: 12px 16px;
            margin-bottom: 16px;
        }

        .mobile-nav-search input {
            background: transparent;
            border: none;
            color: var(--text-on-dark);
            font-size: 15px;
            width: 100%;
            outline: none;
        }

        .mobile-nav-search input::placeholder {
            color: rgba(247, 248, 244, 0.45);
        }

        .mobile-nav-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 20px;
            border-radius: var(--radius-sm);
            background: var(--cta);
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            transition: background var(--transition-fast);
        }

        .mobile-nav-cta:hover {
            background: var(--cta-dark);
            color: #fff;
        }

        /* ============ SMALL HERO ============ */
        .small-hero {
            position: relative;
            padding: 64px 0 48px;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 280px;
            display: flex;
            align-items: flex-end;
        }

        .small-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(11, 61, 46, 0.92) 0%, rgba(6, 31, 23, 0.75) 60%, rgba(14, 18, 16, 0.85) 100%);
            z-index: 1;
        }

        .small-hero .container-custom {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .small-hero .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(247, 248, 244, 0.6);
            margin-bottom: 12px;
        }

        .small-hero .breadcrumb a {
            color: rgba(247, 248, 244, 0.7);
            transition: color var(--transition-fast);
        }

        .small-hero .breadcrumb a:hover {
            color: var(--accent);
        }

        .small-hero .breadcrumb .separator {
            color: rgba(247, 248, 244, 0.35);
        }

        .small-hero h1 {
            font-size: 40px;
            font-weight: 800;
            color: var(--text-on-dark);
            margin-bottom: 8px;
            letter-spacing: -0.5px;
            line-height: 1.25;
        }

        .small-hero .hero-subtitle {
            font-size: 16px;
            color: rgba(247, 248, 244, 0.75);
            max-width: 560px;
            line-height: 1.75;
        }

        /* ============ TEAM CARDS ============ */
        .team-cards-section {
            background: var(--bg-warm);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
        }

        .team-card {
            background: var(--card-bg);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: box-shadow var(--transition), transform var(--transition);
            border: 1px solid var(--border);
            display: flex;
            flex-direction: column;
        }

        .team-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
            border-color: rgba(200, 255, 0, 0.3);
        }

        .team-card-cover {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .team-card-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition);
        }

        .team-card:hover .team-card-cover img {
            transform: scale(1.04);
        }

        .team-card-cover::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(11, 61, 46, 0.15) 0%, rgba(11, 61, 46, 0.55) 100%);
            pointer-events: none;
        }

        .team-card-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 999px;
            background: rgba(11, 61, 46, 0.85);
            color: var(--accent);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.3px;
            backdrop-filter: blur(4px);
        }

        .team-card-cover .team-rank {
            position: absolute;
            top: 16px;
            right: 16px;
            z-index: 2;
            font-size: 28px;
            font-weight: 800;
            color: rgba(247, 248, 244, 0.92);
            font-family: var(--font-display);
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
        }

        .team-card-body {
            padding: 24px 24px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .team-card-body h3 {
            font-size: 22px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 6px;
            letter-spacing: -0.3px;
        }

        .team-card-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 14px;
        }

        .team-card-meta .meta-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 10px;
            border-radius: 999px;
            background: var(--accent-dim);
            color: var(--primary);
            font-size: 11px;
            font-weight: 600;
        }

        .team-card-meta .meta-tag.warning {
            background: rgba(255, 78, 42, 0.1);
            color: var(--cta);
        }

        .team-card-body p {
            font-size: 14.5px;
            color: var(--text-secondary);
            line-height: 1.75;
            margin-bottom: 18px;
            flex: 1;
        }

        .team-card-body .read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 700;
            color: var(--primary);
            transition: color var(--transition-fast), gap var(--transition-fast);
        }

        .team-card-body .read-more:hover {
            color: var(--cta);
            gap: 12px;
        }

        .team-card-body .read-more i {
            font-size: 13px;
            transition: transform var(--transition-fast);
        }

        .team-card-body .read-more:hover i {
            transform: translateX(3px);
        }

        /* ============ DEEP CONTENT ============ */
        .deep-content-section {
            background: #fff;
        }

        .deep-content-wrapper {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .deep-content-article {
            background: var(--bg-warm);
            border-radius: var(--radius-xl);
            padding: 40px 36px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
        }

        .deep-content-article h2 {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 16px;
            letter-spacing: -0.3px;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--accent);
            display: inline-block;
        }

        .deep-content-article h3 {
            font-size: 19px;
            font-weight: 700;
            color: var(--primary);
            margin: 28px 0 10px;
            position: relative;
            padding-left: 16px;
        }

        .deep-content-article h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 18px;
            background: var(--accent);
            border-radius: 2px;
        }

        .deep-content-article p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.85;
            margin-bottom: 18px;
        }

        .deep-content-article p:first-of-type {
            color: var(--text-primary);
        }

        .deep-content-sidebar {
            position: sticky;
            top: calc(var(--nav-height) + 24px);
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .sidebar-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 20px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
        }

        .sidebar-card h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--accent-dim);
        }

        .sidebar-card ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .sidebar-card ul li {
            margin-bottom: 10px;
        }

        .sidebar-card ul li:last-child {
            margin-bottom: 0;
        }

        .sidebar-card ul a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13.5px;
            color: var(--text-secondary);
            transition: color var(--transition-fast);
        }

        .sidebar-card ul a:hover {
            color: var(--cta);
        }

        .sidebar-card ul a i {
            color: var(--accent);
            font-size: 10px;
            flex-shrink: 0;
        }

        /* ============ SUBSCRIBE CTA ============ */
        .subscribe-section {
            background: var(--primary);
            position: relative;
            overflow: hidden;
        }

        .subscribe-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: rgba(200, 255, 0, 0.06);
            pointer-events: none;
        }

        .subscribe-section::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: -10%;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(255, 78, 42, 0.08);
            pointer-events: none;
        }

        .subscribe-wrapper {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 32px;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .subscribe-text {
            flex: 1;
            min-width: 280px;
        }

        .subscribe-text h2 {
            font-size: 26px;
            font-weight: 800;
            color: var(--text-on-dark);
            margin-bottom: 8px;
        }

        .subscribe-text p {
            font-size: 14.5px;
            color: rgba(247, 248, 244, 0.7);
            margin: 0;
            line-height: 1.7;
        }

        .subscribe-form {
            display: flex;
            gap: 10px;
            flex: 1;
            min-width: 280px;
            max-width: 440px;
        }

        .subscribe-form input {
            flex: 1;
            padding: 14px 16px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-on-dark);
            font-size: 14px;
            outline: none;
            transition: border-color var(--transition-fast), background var(--transition-fast);
        }

        .subscribe-form input::placeholder {
            color: rgba(247, 248, 244, 0.5);
        }

        .subscribe-form input:focus {
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.15);
        }

        .subscribe-form button {
            padding: 14px 24px;
            border-radius: var(--radius-sm);
            background: var(--cta);
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            white-space: nowrap;
            transition: background var(--transition-fast), transform var(--transition-fast);
        }

        .subscribe-form button:hover {
            background: var(--cta-dark);
            transform: translateY(-1px);
        }

        /* ============ FAQ ============ */
        .faq-section {
            background: #fff;
        }

        .faq-wrapper {
            max-width: 720px;
            margin: 0 auto;
        }

        .faq-wrapper .accordion {
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .faq-wrapper .accordion-item {
            border-bottom: 1px solid var(--border);
        }

        .faq-wrapper .accordion-item:last-child {
            border-bottom: none;
        }

        .faq-wrapper .accordion-title {
            display: block;
            padding: 18px 24px;
            font-size: 15px;
            font-weight: 700;
            color: var(--primary);
            background: var(--card-bg);
            border: none;
            cursor: pointer;
            position: relative;
            transition: background var(--transition-fast), color var(--transition-fast);
        }

        .faq-wrapper .accordion-title:hover {
            background: var(--bg-warm);
            color: var(--cta);
        }

        .faq-wrapper .accordion-title::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 24px;
            top: 50%;
            transform: translateY(-50%);
            transition: transform var(--transition-fast);
            color: var(--accent);
            font-size: 16px;
        }

        .faq-wrapper .accordion-item.is-active .accordion-title::after {
            transform: translateY(-50%) rotate(180deg);
        }

        .faq-wrapper .accordion-content {
            padding: 0 24px 18px;
            font-size: 14.5px;
            color: var(--text-secondary);
            line-height: 1.8;
            background: var(--bg-warm);
            border-left: 4px solid var(--accent);
            margin-left: 0;
        }

        /* ============ FIXED CTA BAR ============ */
        .fixed-cta-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 95;
            height: var(--fixed-bar-height);
            background: var(--primary-deeper);
            border-top: 2px solid var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            padding: 0 20px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        }

        .fixed-cta-bar .cta-text {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-on-dark);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .fixed-cta-bar .cta-text strong {
            color: var(--accent);
            font-weight: 800;
        }

        .fixed-cta-bar .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 22px;
            border-radius: var(--radius-sm);
            background: var(--cta);
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            white-space: nowrap;
            transition: background var(--transition-fast), transform var(--transition-fast);
        }

        .fixed-cta-bar .cta-btn:hover {
            background: var(--cta-dark);
            color: #fff;
            transform: translateY(-1px);
        }

        body.has-fixed-bar {
            padding-bottom: var(--fixed-bar-height);
        }

        /* ============ FOOTER ============ */
        .site-footer {
            background: var(--primary-deeper);
            color: rgba(247, 248, 244, 0.75);
            padding: 56px 0 32px;
            border-top: 1px solid rgba(200, 255, 0, 0.15);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
            gap: 32px;
            margin-bottom: 36px;
        }

        .footer-brand .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 800;
            color: var(--text-on-dark);
            margin-bottom: 12px;
        }

        .footer-brand .footer-logo .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--accent);
            color: var(--primary);
            font-size: 15px;
            flex-shrink: 0;
        }

        .footer-brand .footer-logo:hover {
            color: var(--accent);
        }

        .footer-brand p {
            font-size: 13.5px;
            line-height: 1.7;
            color: rgba(247, 248, 244, 0.55);
            margin: 0;
        }

        .footer-col h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-on-dark);
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }

        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul a {
            font-size: 13.5px;
            color: rgba(247, 248, 244, 0.6);
            transition: color var(--transition-fast);
        }

        .footer-col ul a:hover {
            color: var(--accent);
        }

        .footer-subscribe {
            display: flex;
            gap: 8px;
            margin-top: 8px;
        }

        .footer-subscribe input {
            flex: 1;
            padding: 10px 14px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.18);
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-on-dark);
            font-size: 13px;
            outline: none;
            transition: border-color var(--transition-fast);
        }

        .footer-subscribe input::placeholder {
            color: rgba(247, 248, 244, 0.4);
        }

        .footer-subscribe input:focus {
            border-color: var(--accent);
        }

        .footer-subscribe button {
            padding: 10px 16px;
            border-radius: var(--radius-sm);
            background: var(--cta);
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: background var(--transition-fast);
            white-space: nowrap;
        }

        .footer-subscribe button:hover {
            background: var(--cta-dark);
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 12.5px;
            color: rgba(247, 248, 244, 0.45);
        }

        .footer-bottom .footer-meta-links {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: auto;
        }

        .footer-bottom a {
            color: rgba(247, 248, 244, 0.55);
            font-size: 12.5px;
            transition: color var(--transition-fast);
        }

        .footer-bottom a:hover {
            color: var(--accent);
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .container-custom {
                padding-left: 24px;
                padding-right: 24px;
            }

            .team-grid {
                gap: 20px;
            }

            .deep-content-wrapper {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .deep-content-sidebar {
                position: static;
                flex-direction: row;
                flex-wrap: wrap;
            }

            .sidebar-card {
                flex: 1;
                min-width: 240px;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 28px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --nav-height: 56px;
                --fixed-bar-height: 56px;
            }

            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }

            .section-padding {
                padding-top: 48px;
                padding-bottom: 48px;
            }

            .section-padding-sm {
                padding-top: 32px;
                padding-bottom: 32px;
            }

            .section-title {
                font-size: 26px;
            }

            .nav-links {
                display: none;
            }

            .nav-hamburger {
                display: flex;
            }

            .nav-search {
                display: none;
            }

            .nav-login {
                display: none;
            }

            .nav-cta {
                display: none;
            }

            .small-hero {
                padding: 44px 0 36px;
                min-height: 220px;
            }

            .small-hero h1 {
                font-size: 28px;
            }

            .small-hero .hero-subtitle {
                font-size: 14px;
            }

            .team-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .team-card-cover {
                height: 180px;
            }

            .deep-content-article {
                padding: 24px 20px;
                border-radius: var(--radius-lg);
            }

            .deep-content-article h2 {
                font-size: 22px;
            }

            .deep-content-article h3 {
                font-size: 17px;
            }

            .deep-content-sidebar {
                flex-direction: column;
            }

            .subscribe-wrapper {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            .subscribe-form {
                max-width: 100%;
                width: 100%;
                flex-direction: column;
            }

            .subscribe-form button {
                width: 100%;
                justify-content: center;
            }

            .faq-wrapper .accordion-title {
                padding: 16px 20px;
                font-size: 14px;
            }

            .faq-wrapper .accordion-title::after {
                right: 20px;
            }

            .faq-wrapper .accordion-content {
                padding: 0 20px 14px;
                font-size: 13.5px;
            }

            .fixed-cta-bar {
                gap: 12px;
                padding: 0 12px;
                height: 56px;
            }

            .fixed-cta-bar .cta-text {
                font-size: 13px;
                flex: 1;
            }

            .fixed-cta-bar .cta-btn {
                padding: 8px 14px;
                font-size: 13px;
                flex-shrink: 0;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .footer-bottom .footer-meta-links {
                margin-left: 0;
            }
        }

        @media (max-width: 520px) {
            .small-hero h1 {
                font-size: 24px;
                line-height: 1.3;
            }

            .team-card-body h3 {
                font-size: 19px;
            }

            .team-card-body p {
                font-size: 13.5px;
            }

            .deep-content-article p {
                font-size: 14px;
            }

            .fixed-cta-bar .cta-text {
                font-size: 12px;
            }

            .fixed-cta-bar .cta-btn {
                padding: 8px 10px;
                font-size: 12px;
                gap: 4px;
            }
        }

/* roulang page: category3 */
:root {
            --primary: #0B3D2E;
            --primary-dark: #082E21;
            --primary-deeper: #061F17;
            --accent: #C8FF00;
            --accent-dim: rgba(200, 255, 0, 0.16);
            --cta: #FF4E2A;
            --cta-dark: #D63F1F;
            --bg-warm: #F7F8F4;
            --bg-dark: #0E1210;
            --bg-dark-grad: linear-gradient(145deg, #0E1210 0%, #12352B 100%);
            --card-bg: #FFFFFF;
            --text-primary: #1A1F1B;
            --text-on-dark: #F7F8F4;
            --text-secondary: #5B635B;
            --text-muted: #87908A;
            --border: #E1E7DC;
            --border-dark: rgba(255, 255, 255, 0.12);
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-sm: 0 2px 12px rgba(11, 61, 46, 0.06);
            --shadow-md: 0 4px 16px rgba(11, 61, 46, 0.10);
            --shadow-lg: 0 8px 24px rgba(11, 61, 46, 0.14);
            --shadow-hover: 0 12px 32px rgba(11, 61, 46, 0.18);
            --font-sans: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
            --font-display: 'Oswald', 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --max-width: 1200px;
            --nav-height: 60px;
            --fixed-bar-height: 64px;
            --transition-fast: 0.2s ease;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.75;
            color: var(--text-primary);
            background-color: var(--bg-warm);
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            border: 0;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        a:hover,
        a:focus {
            color: var(--cta);
            text-decoration: none;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        .container-custom {
            max-width: var(--max-width);
            margin: 0 auto;
            padding-left: 40px;
            padding-right: 40px;
        }

        .section-padding {
            padding-top: 64px;
            padding-bottom: 64px;
        }

        .section-padding-sm {
            padding-top: 40px;
            padding-bottom: 40px;
        }

        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: var(--cta);
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .section-title {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .section-title.light {
            color: var(--text-on-dark);
        }

        .section-desc {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 640px;
            line-height: 1.75;
            margin-bottom: 28px;
        }

        .section-desc.light {
            color: rgba(247, 248, 244, 0.75);
        }

        /* ============ HEADER / NAV ============ */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            height: var(--nav-height);
            background: rgba(11, 61, 46, 0.97);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            border-bottom: 1px solid rgba(200, 255, 0, 0.22);
            transition: background var(--transition), box-shadow var(--transition);
        }

        .site-header.scrolled {
            background: rgba(11, 61, 46, 0.99);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height);
            gap: 20px;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-shrink: 0;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 800;
            color: var(--text-on-dark);
            letter-spacing: -0.3px;
            white-space: nowrap;
        }

        .nav-logo .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--accent);
            color: var(--primary);
            font-size: 15px;
            flex-shrink: 0;
        }

        .nav-logo:hover {
            color: var(--accent);
        }

        .nav-logo:hover .logo-icon {
            background: var(--text-on-dark);
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links li {
            margin: 0;
            list-style: none;
        }

        .nav-links a {
            display: block;
            padding: 8px 12px;
            font-size: 14px;
            font-weight: 500;
            color: rgba(247, 248, 244, 0.8);
            white-space: nowrap;
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
            position: relative;
        }

        .nav-links a:hover {
            color: var(--accent);
            background: rgba(200, 255, 0, 0.08);
        }

        .nav-links a.active {
            color: var(--accent);
            background: rgba(200, 255, 0, 0.08);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 12px;
            right: 12px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px 2px 0 0;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .nav-search {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-sm);
            padding: 6px 12px;
            gap: 6px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: border-color var(--transition-fast), background var(--transition-fast);
        }

        .nav-search .search-icon {
            color: rgba(247, 248, 244, 0.55);
            font-size: 13px;
        }

        .nav-search input {
            background: transparent;
            border: none;
            outline: none;
            color: var(--text-on-dark);
            font-size: 13px;
            width: 130px;
            padding: 0;
            font-family: var(--font-sans);
        }

        .nav-search input::placeholder {
            color: rgba(247, 248, 244, 0.4);
        }

        .nav-search:focus-within {
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.12);
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 700;
            border-radius: var(--radius-sm);
            background: var(--cta);
            color: #fff;
            border: none;
            white-space: nowrap;
            transition: background var(--transition-fast), transform var(--transition-fast);
        }

        .nav-cta:hover {
            background: var(--cta-dark);
            color: #fff;
            transform: translateY(-1px);
        }

        .nav-login {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            font-size: 14px;
            font-weight: 500;
            border-radius: var(--radius-sm);
            background: transparent;
            color: rgba(247, 248, 244, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.15);
            white-space: nowrap;
            transition: all var(--transition-fast);
            cursor: pointer;
        }

        .nav-login:hover {
            color: var(--accent);
            border-color: rgba(200, 255, 0, 0.4);
            background: rgba(200, 255, 0, 0.06);
        }

        .nav-hamburger {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            padding: 0;
        }

        .nav-hamburger span {
            display: block;
            width: 18px;
            height: 2px;
            background: var(--text-on-dark);
            border-radius: 2px;
            transition: all var(--transition-fast);
        }

        .nav-hamburger:hover span {
            background: var(--accent);
        }

        /* ============ MOBILE NAV DRAWER ============ */
        .mobile-nav-drawer {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--primary-deeper);
            z-index: 99;
            padding: 24px 20px;
            flex-direction: column;
            gap: 20px;
            overflow-y: auto;
        }

        .mobile-nav-drawer.open {
            display: flex;
        }

        .mobile-nav-drawer .mobile-links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .mobile-nav-drawer .mobile-links li {
            margin: 0;
            list-style: none;
        }

        .mobile-nav-drawer .mobile-links a {
            display: block;
            padding: 14px 16px;
            font-size: 16px;
            font-weight: 600;
            color: rgba(247, 248, 244, 0.85);
            border-radius: var(--radius);
            transition: all var(--transition-fast);
        }

        .mobile-nav-drawer .mobile-links a:hover,
        .mobile-nav-drawer .mobile-links a.active {
            color: var(--accent);
            background: rgba(200, 255, 0, 0.08);
        }

        .mobile-nav-drawer .mobile-search {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-sm);
            padding: 10px 14px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            margin-bottom: 8px;
        }

        .mobile-nav-drawer .mobile-search i {
            color: rgba(247, 248, 244, 0.5);
        }

        .mobile-nav-drawer .mobile-search input {
            background: transparent;
            border: none;
            outline: none;
            color: var(--text-on-dark);
            font-size: 14px;
            font-family: var(--font-sans);
            flex: 1;
        }

        .mobile-nav-drawer .mobile-search input::placeholder {
            color: rgba(247, 248, 244, 0.4);
        }

        .mobile-nav-drawer .mobile-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px;
            font-size: 16px;
            font-weight: 700;
            border-radius: var(--radius-sm);
            background: var(--cta);
            color: #fff;
            border: none;
        }

        .mobile-nav-drawer .mobile-cta:hover {
            background: var(--cta-dark);
            color: #fff;
        }

        /* ============ HERO ============ */
        .page-hero {
            position: relative;
            padding-top: calc(var(--nav-height) + 48px);
            padding-bottom: 52px;
            background: var(--bg-dark-grad);
            overflow: hidden;
            min-height: 280px;
            display: flex;
            align-items: center;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background-image: url('/assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.25;
            mask-image: linear-gradient(to left, rgba(0,0,0,0.8), transparent);
            -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.8), transparent);
            z-index: 0;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--primary-deeper) 0%, rgba(11, 61, 46, 0.6) 60%, rgba(11, 61, 46, 0.3) 100%);
            z-index: 0;
        }

        .page-hero .hero-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
        }

        .page-hero .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            background: rgba(200, 255, 0, 0.1);
            padding: 6px 14px;
            border-radius: 20px;
            margin-bottom: 14px;
            border: 1px solid rgba(200, 255, 0, 0.25);
        }

        .page-hero h1 {
            font-size: 36px;
            font-weight: 800;
            color: var(--text-on-dark);
            margin-bottom: 12px;
            letter-spacing: -0.5px;
            line-height: 1.3;
        }

        .page-hero .hero-sub {
            font-size: 15px;
            color: rgba(247, 248, 244, 0.7);
            line-height: 1.75;
            max-width: 560px;
            margin-bottom: 0;
        }

        .hero-breadcrumb {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: rgba(247, 248, 244, 0.5);
            margin-bottom: 16px;
        }

        .hero-breadcrumb a {
            color: rgba(247, 248, 244, 0.6);
            transition: color var(--transition-fast);
        }

        .hero-breadcrumb a:hover {
            color: var(--accent);
        }

        .hero-breadcrumb .separator {
            color: rgba(247, 248, 244, 0.3);
        }

        .hero-breadcrumb .current {
            color: var(--accent);
            font-weight: 500;
        }

        /* ============ STANDINGS SECTION ============ */
        .standings-section {
            background: var(--bg-warm);
        }

        .standings-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 24px;
        }

        .standings-title-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .standings-title-wrap .icon-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--primary);
            color: var(--accent);
            font-size: 18px;
        }

        .standings-title {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-primary);
            margin: 0;
        }

        .standings-update {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .standings-update i {
            color: var(--cta);
            font-size: 12px;
        }

        /* Custom Tabs */
        .custom-tabs {
            display: flex;
            align-items: center;
            gap: 4px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 4px;
            margin-bottom: 0;
            flex-shrink: 0;
        }

        .custom-tab {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 18px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 6px;
            border: none;
            background: transparent;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .custom-tab:hover {
            color: var(--primary);
            background: rgba(11, 61, 46, 0.05);
        }

        .custom-tab.active {
            background: var(--primary);
            color: var(--accent);
        }

        .custom-tab .tab-count {
            font-size: 11px;
            font-weight: 700;
            background: rgba(0,0,0,0.12);
            padding: 1px 7px;
            border-radius: 10px;
        }

        .custom-tab.active .tab-count {
            background: rgba(200, 255, 0, 0.18);
            color: var(--accent);
        }

        /* Standings Table */
        .standings-table-wrap {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .standings-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 0;
        }

        .standings-table thead th {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-secondary);
            padding: 14px 16px;
            background: #F0F3ED;
            border-bottom: 2px solid var(--border);
            text-align: center;
            white-space: nowrap;
        }

        .standings-table thead th:first-child,
        .standings-table tbody td:first-child {
            text-align: left;
            padding-left: 20px;
        }

        .standings-table thead th:last-child,
        .standings-table tbody td:last-child {
            padding-right: 20px;
            text-align: right;
        }

        .standings-table tbody td {
            font-size: 14px;
            padding: 12px 16px;
            border-bottom: 1px solid var(--border);
            text-align: center;
            vertical-align: middle;
            color: var(--text-primary);
        }

        .standings-table tbody tr:last-child td {
            border-bottom: none;
        }

        .standings-table tbody tr:hover td {
            background: #FAFCF8;
        }

        .standings-table .team-cell {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 14px;
            white-space: nowrap;
        }

        .team-cell .team-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .team-cell .team-name {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 160px;
        }

        .team-cell .team-short {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 400;
        }

        .standings-table .rank {
            font-weight: 700;
            font-size: 15px;
        }

        .standings-table .rank-top4 {
            color: var(--cta);
        }

        .standings-table .rank-euro {
            color: var(--primary);
        }

        .standings-table .rank-relegation {
            color: #B3261E;
        }

        .standings-table .points {
            font-weight: 800;
            font-size: 16px;
            color: var(--primary);
        }

        .standings-table .points.positive {
            color: var(--primary);
        }

        .standings-table .gd-positive {
            color: var(--primary);
            font-weight: 600;
        }

        .standings-table .gd-negative {
            color: #B3261E;
            font-weight: 600;
        }

        .standings-table .gd-zero {
            color: var(--text-muted);
            font-weight: 400;
        }

        .standings-table-footer {
            padding: 14px 20px;
            background: #F0F3ED;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 13px;
            color: var(--text-secondary);
        }

        .standings-table-footer .legend {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .standings-table-footer .legend-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .standings-table-footer .legend-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
        }

        .legend-dot.red {
            background: #B3261E;
        }

        .legend-dot.orange {
            background: var(--cta);
        }

        .legend-dot.blue {
            background: var(--primary);
        }

        .standings-table-footer .update-note {
            color: var(--text-muted);
            font-size: 12px;
        }

        /* ============ DEEP CONTENT ============ */
        .standings-insight-section {
            background: var(--bg-dark-grad);
            padding-top: 56px;
            padding-bottom: 56px;
        }

        .insight-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .insight-text {
            color: var(--text-on-dark);
        }

        .insight-text .section-tag {
            color: var(--accent);
            margin-bottom: 10px;
        }

        .insight-text h2 {
            font-size: 26px;
            font-weight: 800;
            color: var(--text-on-dark);
            margin-bottom: 14px;
            letter-spacing: -0.3px;
        }

        .insight-text p {
            font-size: 14px;
            color: rgba(247, 248, 244, 0.75);
            line-height: 1.8;
            margin-bottom: 14px;
        }

        .insight-text p:last-child {
            margin-bottom: 0;
        }

        .insight-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-dark);
            position: relative;
        }

        .insight-image img {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

        .insight-image .image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(transparent, rgba(6, 31, 23, 0.85));
            font-size: 13px;
            color: rgba(247, 248, 244, 0.8);
        }

        /* ============ KEY STATS STRIP ============ */
        .stats-strip-section {
            background: var(--bg-warm);
            padding-top: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid var(--border);
        }

        .stats-strip {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .stats-strip-item {
            background: var(--card-bg);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            padding: 18px 20px;
            text-align: center;
            transition: all var(--transition-fast);
            box-shadow: var(--shadow-sm);
        }

        .stats-strip-item:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            border-color: rgba(11, 61, 46, 0.2);
        }

        .stats-strip-item .stat-number {
            font-size: 28px;
            font-weight: 800;
            font-family: var(--font-display);
            color: var(--primary);
            margin-bottom: 4px;
        }

        .stats-strip-item .stat-label {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .stats-strip-item.highlight .stat-number {
            color: var(--cta);
        }

        /* ============ FAQ ============ */
        .faq-section {
            background: var(--bg-warm);
            padding-top: 56px;
            padding-bottom: 56px;
        }

        .faq-heading {
            text-align: center;
            margin-bottom: 32px;
        }

        .faq-heading .section-tag {
            color: var(--cta);
        }

        .faq-heading .section-title {
            font-size: 26px;
            margin-bottom: 8px;
        }

        .faq-heading .section-desc {
            margin: 0 auto;
            font-size: 14px;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .faq-item {
            background: var(--card-bg);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            overflow: hidden;
            transition: all var(--transition-fast);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-sm);
            border-color: rgba(11, 61, 46, 0.2);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            cursor: pointer;
            background: transparent;
            border: none;
            width: 100%;
            text-align: left;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            transition: all var(--transition-fast);
            gap: 12px;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-question .faq-icon {
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(11, 61, 46, 0.08);
            color: var(--text-secondary);
            transition: all var(--transition-fast);
            font-size: 12px;
        }

        .faq-question:hover .faq-icon {
            background: rgba(200, 255, 0, 0.25);
            color: var(--primary);
        }

        .faq-item.active .faq-question .faq-icon {
            background: var(--accent);
            color: var(--primary);
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 20px;
            border-top: none;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 20px 18px;
            border-top: 1px solid var(--border);
        }

        .faq-answer p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin: 0;
            padding-top: 14px;
        }

        /* ============ CTA ============ */
        .cta-section {
            background: var(--bg-warm);
            padding-top: 0;
            padding-bottom: 56px;
        }

        .cta-card {
            background: var(--bg-dark-grad);
            border-radius: var(--radius-xl);
            padding: 40px 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 24px;
            border: 1px solid var(--border-dark);
            position: relative;
            overflow: hidden;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(200, 255, 0, 0.08);
            pointer-events: none;
        }

        .cta-card::after {
            content: '';
            position: absolute;
            bottom: -80px;
            right: 120px;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: rgba(255, 78, 42, 0.08);
            pointer-events: none;
        }

        .cta-card .cta-text {
            position: relative;
            z-index: 1;
            flex: 1;
            min-width: 260px;
        }

        .cta-card .cta-text h3 {
            font-size: 22px;
            font-weight: 800;
            color: var(--text-on-dark);
            margin-bottom: 8px;
        }

        .cta-card .cta-text p {
            font-size: 14px;
            color: rgba(247, 248, 244, 0.65);
            margin-bottom: 0;
            line-height: 1.7;
        }

        .cta-card .cta-buttons {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            font-size: 15px;
            font-weight: 700;
            border-radius: var(--radius-sm);
            background: var(--cta);
            color: #fff;
            border: none;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .btn-primary:hover {
            background: var(--cta-dark);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255, 78, 42, 0.3);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 12px 20px;
            font-size: 15px;
            font-weight: 600;
            border-radius: var(--radius-sm);
            background: transparent;
            color: var(--accent);
            border: 1px solid rgba(200, 255, 0, 0.4);
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .btn-secondary:hover {
            background: rgba(200, 255, 0, 0.1);
            color: var(--accent);
            border-color: var(--accent);
        }

        /* ============ FIXED BAR ============ */
        .fixed-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: var(--fixed-bar-height);
            background: rgba(11, 61, 46, 0.98);
            border-top: 2px solid var(--accent);
            z-index: 90;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 24px;
            gap: 16px;
        }

        .fixed-bar .bar-text {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-on-dark);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .fixed-bar .bar-text i {
            color: var(--accent);
            margin-right: 6px;
        }

        .fixed-bar .bar-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 700;
            border-radius: var(--radius-sm);
            background: var(--cta);
            color: #fff;
            border: none;
            white-space: nowrap;
            transition: all var(--transition-fast);
            flex-shrink: 0;
        }

        .fixed-bar .bar-btn:hover {
            background: var(--cta-dark);
            color: #fff;
            transform: translateY(-1px);
        }

        /* ============ FOOTER ============ */
        .site-footer {
            background: var(--primary-deeper);
            color: rgba(247, 248, 244, 0.7);
            padding-top: 48px;
            padding-bottom: calc(var(--fixed-bar-height) + 32px);
            border-top: 1px solid var(--border-dark);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 800;
            color: var(--text-on-dark);
            margin-bottom: 12px;
            letter-spacing: -0.3px;
        }

        .footer-logo .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--accent);
            color: var(--primary);
            font-size: 15px;
        }

        .footer-logo:hover {
            color: var(--accent);
        }

        .footer-brand p {
            font-size: 13px;
            color: rgba(247, 248, 244, 0.5);
            margin: 0;
            max-width: 300px;
            line-height: 1.7;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-on-dark);
            margin-bottom: 14px;
            letter-spacing: 0.2px;
        }

        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
            list-style: none;
        }

        .footer-col ul li:last-child {
            margin-bottom: 0;
        }

        .footer-col ul a {
            font-size: 13px;
            color: rgba(247, 248, 244, 0.55);
            transition: color var(--transition-fast);
        }

        .footer-col ul a:hover {
            color: var(--accent);
        }

        .footer-subscribe {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 4px;
        }

        .footer-subscribe input {
            flex: 1;
            padding: 8px 12px;
            font-size: 13px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-on-dark);
            outline: none;
            font-family: var(--font-sans);
            min-width: 0;
            transition: border-color var(--transition-fast);
        }

        .footer-subscribe input::placeholder {
            color: rgba(247, 248, 244, 0.35);
        }

        .footer-subscribe input:focus {
            border-color: var(--accent);
        }

        .footer-subscribe button {
            padding: 8px 16px;
            font-size: 13px;
            font-weight: 700;
            border-radius: var(--radius-sm);
            background: var(--cta);
            color: #fff;
            border: none;
            white-space: nowrap;
            transition: background var(--transition-fast);
            cursor: pointer;
        }

        .footer-subscribe button:hover {
            background: var(--cta-dark);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            padding-top: 20px;
            border-top: 1px solid var(--border-dark);
            font-size: 12px;
            color: rgba(247, 248, 244, 0.4);
        }

        .footer-meta-links {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-meta-links a {
            color: rgba(247, 248, 244, 0.5);
            font-size: 12px;
            transition: color var(--transition-fast);
        }

        .footer-meta-links a:hover {
            color: var(--accent);
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .container-custom {
                padding-left: 24px;
                padding-right: 24px;
            }

            .nav-links {
                display: none;
            }

            .nav-search {
                display: none;
            }

            .nav-hamburger {
                display: flex;
            }

            .nav-login {
                display: none;
            }

            .insight-layout {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .insight-image img {
                height: 240px;
            }

            .stats-strip {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }

            .page-hero h1 {
                font-size: 28px;
            }

            .page-hero .hero-sub {
                font-size: 14px;
            }

            .standings-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .standings-title {
                font-size: 20px;
            }

            .custom-tabs {
                width: 100%;
                overflow-x: auto;
            }

            .custom-tab {
                padding: 8px 14px;
                font-size: 13px;
                flex-shrink: 0;
            }

            .standings-table thead th {
                font-size: 11px;
                padding: 10px 8px;
            }

            .standings-table tbody td {
                font-size: 13px;
                padding: 10px 8px;
            }

            .standings-table thead th:first-child,
            .standings-table tbody td:first-child {
                padding-left: 12px;
            }

            .standings-table thead th:last-child,
            .standings-table tbody td:last-child {
                padding-right: 12px;
            }

            .team-cell .team-name {
                max-width: 90px;
            }

            .standings-table .points {
                font-size: 14px;
            }

            .insight-text h2 {
                font-size: 22px;
            }

            .insight-image img {
                height: 200px;
            }

            .stats-strip {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .cta-card {
                padding: 28px 20px;
                flex-direction: column;
                text-align: center;
            }

            .cta-card .cta-buttons {
                flex-direction: column;
                width: 100%;
            }

            .cta-card .cta-buttons a {
                width: 100%;
                justify-content: center;
            }

            .fixed-bar {
                height: 56px;
                padding: 0 12px;
                gap: 10px;
            }

            .fixed-bar .bar-text {
                font-size: 12px;
            }

            .fixed-bar .bar-btn {
                padding: 8px 14px;
                font-size: 13px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 6px;
            }
        }

        @media (max-width: 520px) {
            .page-hero {
                padding-top: calc(var(--nav-height) + 26px);
                padding-bottom: 32px;
                min-height: 220px;
            }

            .page-hero h1 {
                font-size: 24px;
            }

            .hero-breadcrumb {
                font-size: 12px;
                flex-wrap: wrap;
            }

            .standings-section .section-padding {
                padding-top: 40px;
                padding-bottom: 40px;
            }

            .standings-table thead th {
                font-size: 10px;
                padding: 8px 4px;
                letter-spacing: 0.2px;
            }

            .standings-table tbody td {
                font-size: 12px;
                padding: 8px 4px;
            }

            .team-cell {
                gap: 4px;
                font-size: 12px;
            }

            .team-cell .team-name {
                max-width: 60px;
                font-size: 11px;
            }

            .team-cell .team-short {
                display: none;
            }

            .standings-table .rank {
                font-size: 12px;
            }

            .standings-table .points {
                font-size: 13px;
            }

            .standings-table-footer {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                font-size: 11px;
                padding: 10px 12px;
            }

            .stats-strip-item .stat-number {
                font-size: 22px;
            }

            .faq-question {
                font-size: 14px;
                padding: 12px 16px;
            }

            .faq-answer {
                padding: 0 16px;
            }

            .faq-item.active .faq-answer {
                padding: 0 16px 14px;
            }
        }

/* roulang page: category5 */
:root {
            --primary: #0B3D2E;
            --primary-dark: #082E21;
            --primary-deeper: #061F17;
            --accent: #C8FF00;
            --accent-dim: rgba(200, 255, 0, 0.16);
            --cta: #FF4E2A;
            --cta-dark: #D63F1F;
            --bg-warm: #F7F8F4;
            --bg-dark: #0E1210;
            --bg-dark-grad: linear-gradient(145deg, #0E1210 0%, #12352B 100%);
            --card-bg: #FFFFFF;
            --text-primary: #1A1F1B;
            --text-on-dark: #F7F8F4;
            --text-secondary: #5B635B;
            --text-muted: #87908A;
            --border: #E1E7DC;
            --border-dark: rgba(255, 255, 255, 0.12);
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-sm: 0 2px 12px rgba(11, 61, 46, 0.06);
            --shadow-md: 0 4px 16px rgba(11, 61, 46, 0.10);
            --shadow-lg: 0 8px 24px rgba(11, 61, 46, 0.14);
            --shadow-hover: 0 12px 32px rgba(11, 61, 46, 0.18);
            --font-sans: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
            --font-display: 'Oswald', 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --max-width: 1200px;
            --nav-height: 60px;
            --fixed-bar-height: 64px;
            --transition-fast: 0.2s ease;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.75;
            color: var(--text-primary);
            background-color: var(--bg-warm);
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            border: 0;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover,
        a:focus {
            color: var(--cta);
            text-decoration: none;
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        .container-custom {
            max-width: var(--max-width);
            margin: 0 auto;
            padding-left: 40px;
            padding-right: 40px;
        }

        .section-padding {
            padding-top: 72px;
            padding-bottom: 72px;
        }
        .section-padding-sm {
            padding-top: 48px;
            padding-bottom: 48px;
        }

        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: var(--cta);
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .section-title {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
        .section-title.light {
            color: var(--text-on-dark);
        }
        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 640px;
            line-height: 1.8;
            margin-bottom: 32px;
        }
        .section-desc.light {
            color: rgba(247, 248, 244, 0.75);
        }

        /* ============ HEADER / NAV ============ */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            height: var(--nav-height);
            background: rgba(11, 61, 46, 0.97);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            border-bottom: 1px solid rgba(200, 255, 0, 0.22);
            transition: background var(--transition), box-shadow var(--transition);
        }
        .site-header.scrolled {
            background: rgba(11, 61, 46, 0.99);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height);
            gap: 20px;
        }
        .nav-left {
            display: flex;
            align-items: center;
            gap: 28px;
            flex-shrink: 0;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 800;
            color: var(--text-on-dark);
            letter-spacing: -0.3px;
            white-space: nowrap;
        }
        .nav-logo .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--accent);
            color: var(--primary);
            font-size: 15px;
            flex-shrink: 0;
        }
        .nav-logo:hover {
            color: var(--accent);
        }
        .nav-logo:hover .logo-icon {
            background: var(--text-on-dark);
            color: var(--primary);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-links li {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-links a {
            display: block;
            padding: 8px 14px;
            font-size: 14px;
            font-weight: 500;
            color: rgba(247, 248, 244, 0.82);
            border-radius: 6px;
            transition: color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover,
        .nav-links a:focus {
            color: var(--accent);
            background: rgba(200, 255, 0, 0.08);
        }
        .nav-links a.active {
            color: var(--accent);
            border-bottom-color: var(--accent);
            background: rgba(200, 255, 0, 0.06);
            font-weight: 600;
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .nav-search {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--border-dark);
            border-radius: 8px;
            padding: 6px 12px;
            min-width: 180px;
            transition: border-color var(--transition-fast), background var(--transition-fast);
        }
        .nav-search:focus-within {
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.14);
        }
        .nav-search .search-icon {
            color: rgba(247, 248, 244, 0.6);
            font-size: 13px;
            flex-shrink: 0;
        }
        .nav-search input {
            background: transparent;
            border: none;
            outline: none;
            color: var(--text-on-dark);
            font-size: 13px;
            width: 100%;
            padding: 0;
        }
        .nav-search input::placeholder {
            color: rgba(247, 248, 244, 0.45);
        }
        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 18px;
            background: var(--cta);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            border-radius: 8px;
            white-space: nowrap;
            transition: background var(--transition-fast), transform var(--transition-fast);
        }
        .nav-cta:hover,
        .nav-cta:focus {
            background: var(--cta-dark);
            color: #fff;
            transform: translateY(-1px);
        }
        .nav-login {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 14px;
            background: transparent;
            border: 1px solid var(--border-dark);
            color: rgba(247, 248, 244, 0.82);
            font-size: 13px;
            font-weight: 500;
            border-radius: 8px;
            cursor: pointer;
            white-space: nowrap;
            transition: border-color var(--transition-fast), color var(--transition-fast);
        }
        .nav-login:hover {
            border-color: var(--accent);
            color: var(--accent);
        }
        .nav-hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            background: transparent;
            border: 1px solid var(--border-dark);
            border-radius: 8px;
            cursor: pointer;
            padding: 8px;
            transition: border-color var(--transition-fast);
        }
        .nav-hamburger:hover {
            border-color: var(--accent);
        }
        .nav-hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--text-on-dark);
            border-radius: 2px;
            transition: background var(--transition-fast);
        }

        /* ============ SUB HERO ============ */
        .sub-hero {
            position: relative;
            padding-top: calc(var(--nav-height) + 56px);
            padding-bottom: 64px;
            background-image: url('/assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 320px;
            display: flex;
            align-items: center;
        }
        .sub-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(11, 61, 46, 0.92) 0%, rgba(8, 46, 33, 0.75) 60%, rgba(6, 31, 23, 0.9) 100%);
        }
        .sub-hero .container-custom {
            position: relative;
            z-index: 2;
            width: 100%;
        }
        .sub-hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(200, 255, 0, 0.16);
            border: 1px solid rgba(200, 255, 0, 0.3);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 16px;
        }
        .sub-hero h1 {
            font-size: 42px;
            font-weight: 800;
            color: var(--text-on-dark);
            margin-bottom: 12px;
            letter-spacing: -1px;
            line-height: 1.2;
        }
        .sub-hero p {
            font-size: 17px;
            color: rgba(247, 248, 244, 0.78);
            max-width: 560px;
            line-height: 1.8;
            margin-bottom: 0;
        }

        /* ============ VIDEO GRID ============ */
        .video-grid-section {
            background: var(--bg-dark-grad);
            padding: 72px 0;
        }
        .video-grid-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 36px;
        }
        .video-grid-header .section-title {
            color: var(--text-on-dark);
            margin-bottom: 4px;
        }
        .video-grid-header .section-desc {
            color: rgba(247, 248, 244, 0.65);
            margin-bottom: 0;
            max-width: 480px;
        }
        .video-filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 32px;
        }
        .video-filter-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 16px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--border-dark);
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            color: rgba(247, 248, 244, 0.7);
            cursor: pointer;
            transition: all var(--transition-fast);
            user-select: none;
        }
        .video-filter-tag:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(200, 255, 0, 0.08);
        }
        .video-filter-tag.active {
            background: var(--accent);
            color: var(--primary);
            border-color: var(--accent);
            font-weight: 600;
        }
        .video-card-wrapper {
            margin-bottom: 24px;
        }
        .video-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-dark);
            border-radius: var(--radius-xl);
            overflow: hidden;
            transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .video-card:hover {
            transform: translateY(-4px);
            border-color: rgba(200, 255, 0, 0.35);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
        }
        .video-thumb {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: #1a2420;
        }
        .video-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .video-card:hover .video-thumb img {
            transform: scale(1.05);
        }
        .video-thumb::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.55) 100%);
            pointer-events: none;
        }
        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(200, 255, 0, 0.9);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            z-index: 2;
            transition: all var(--transition);
            pointer-events: none;
        }
        .video-card:hover .video-play-btn {
            background: var(--accent);
            transform: translate(-50%, -50%) scale(1.1);
        }
        .video-duration {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.75);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 4px;
            z-index: 2;
        }
        .video-tag-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--cta);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 4px;
            z-index: 2;
            letter-spacing: 0.3px;
        }
        .video-card-body {
            padding: 20px 22px 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .video-card-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-on-dark);
            margin-bottom: 8px;
            line-height: 1.4;
            letter-spacing: -0.2px;
        }
        .video-card-desc {
            font-size: 14px;
            color: rgba(247, 248, 244, 0.6);
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .video-card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: rgba(247, 248, 244, 0.45);
            margin-top: auto;
        }
        .video-card-meta i {
            color: rgba(200, 255, 0, 0.5);
        }

        /* ============ STATS STRIP ============ */
        .stats-strip {
            background: var(--primary);
            padding: 48px 0;
            border-top: 1px solid rgba(200, 255, 0, 0.15);
            border-bottom: 1px solid rgba(200, 255, 0, 0.15);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .stat-item {
            text-align: center;
            padding: 12px;
        }
        .stat-number {
            font-size: 36px;
            font-weight: 800;
            color: var(--accent);
            letter-spacing: -1px;
            margin-bottom: 4px;
            font-family: var(--font-display);
        }
        .stat-label {
            font-size: 14px;
            color: rgba(247, 248, 244, 0.65);
            font-weight: 500;
        }

        /* ============ FEATURED ============ */
        .featured-section {
            background: var(--bg-warm);
            padding: 72px 0;
        }
        .featured-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: box-shadow var(--transition), transform var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .featured-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .featured-img {
            aspect-ratio: 16 / 9;
            overflow: hidden;
            position: relative;
        }
        .featured-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .featured-body {
            padding: 24px 28px 28px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .featured-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .featured-desc {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .featured-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--cta);
            margin-top: auto;
            transition: gap var(--transition-fast), color var(--transition-fast);
        }
        .featured-link:hover {
            color: var(--cta-dark);
            gap: 10px;
        }

        /* ============ FAQ ============ */
        .faq-section {
            background: var(--bg-warm);
            padding: 72px 0;
        }
        .faq-accordion {
            max-width: 820px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            margin-bottom: 12px;
            overflow: hidden;
            transition: box-shadow var(--transition), border-color var(--transition);
        }
        .faq-item:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-sm);
        }
        .faq-question {
            padding: 18px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            cursor: pointer;
            background: transparent;
            border: none;
            width: 100%;
            text-align: left;
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            transition: color var(--transition-fast);
        }
        .faq-question:hover {
            color: var(--primary);
        }
        .faq-question .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--accent-dim);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            transition: transform var(--transition), background var(--transition-fast);
        }
        .faq-item.is-open .faq-question .faq-icon {
            transform: rotate(180deg);
            background: var(--accent);
        }
        .faq-answer {
            padding: 0 24px 20px;
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            border-left: 4px solid var(--accent);
            margin-left: 24px;
            padding-left: 16px;
            border-radius: 0 8px 8px 0;
        }

        /* ============ CTA SECTION ============ */
        .cta-section {
            background: var(--bg-dark-grad);
            padding: 64px 0;
            border-top: 1px solid rgba(200, 255, 0, 0.15);
        }
        .cta-box {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 24px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--border-dark);
            border-radius: var(--radius-xl);
            padding: 36px 40px;
        }
        .cta-box h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-on-dark);
            margin-bottom: 6px;
        }
        .cta-box p {
            font-size: 15px;
            color: rgba(247, 248, 244, 0.65);
            margin-bottom: 0;
        }
        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            background: var(--cta);
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            border-radius: 8px;
            cursor: pointer;
            border: none;
            white-space: nowrap;
            transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
        }
        .cta-btn:hover {
            background: var(--cta-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 78, 42, 0.3);
        }

        /* ============ FOOTER ============ */
        .site-footer {
            background: var(--primary-deeper);
            padding: 64px 0 24px;
            color: rgba(247, 248, 244, 0.6);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
            gap: 36px;
            margin-bottom: 40px;
        }
        .footer-brand .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 800;
            color: var(--text-on-dark);
            margin-bottom: 12px;
        }
        .footer-brand .footer-logo .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--accent);
            color: var(--primary);
            font-size: 15px;
        }
        .footer-brand p {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(247, 248, 244, 0.5);
            max-width: 280px;
        }
        .footer-col h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-on-dark);
            margin-bottom: 14px;
        }
        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            font-size: 14px;
            color: rgba(247, 248, 244, 0.5);
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--accent);
        }
        .footer-subscribe {
            display: flex;
            gap: 8px;
            margin-top: 8px;
        }
        .footer-subscribe input {
            flex: 1;
            padding: 10px 14px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--border-dark);
            border-radius: 8px;
            color: var(--text-on-dark);
            font-size: 13px;
            outline: none;
            min-width: 0;
            transition: border-color var(--transition-fast), background var(--transition-fast);
        }
        .footer-subscribe input::placeholder {
            color: rgba(247, 248, 244, 0.35);
        }
        .footer-subscribe input:focus {
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.12);
        }
        .footer-subscribe button {
            padding: 10px 18px;
            background: var(--cta);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            white-space: nowrap;
            transition: background var(--transition-fast);
        }
        .footer-subscribe button:hover {
            background: var(--cta-dark);
        }
        .footer-bottom {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 13px;
            color: rgba(247, 248, 244, 0.4);
        }
        .footer-bottom .footer-meta-links {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-bottom a {
            color: rgba(247, 248, 244, 0.5);
            font-size: 13px;
        }
        .footer-bottom a:hover {
            color: var(--accent);
        }

        /* ============ MOBILE NAV OVERLAY ============ */
        .nav-overlay {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(11, 61, 46, 0.98);
            z-index: 99;
            padding: 24px 20px;
            flex-direction: column;
            gap: 8px;
        }
        .nav-overlay.is-active {
            display: flex;
        }
        .nav-overlay a {
            display: block;
            padding: 14px 16px;
            font-size: 17px;
            font-weight: 600;
            color: rgba(247, 248, 244, 0.85);
            border-radius: 8px;
            transition: background var(--transition-fast), color var(--transition-fast);
        }
        .nav-overlay a:hover {
            background: rgba(200, 255, 0, 0.08);
            color: var(--accent);
        }
        .nav-overlay .nav-overlay-cta {
            margin-top: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px;
            background: var(--cta);
            color: #fff;
            font-weight: 700;
            border-radius: 8px;
            text-align: center;
        }
        .nav-overlay .nav-overlay-cta:hover {
            background: var(--cta-dark);
            color: #fff;
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .container-custom {
                padding-left: 24px;
                padding-right: 24px;
            }
            .nav-links {
                gap: 2px;
            }
            .nav-links a {
                padding: 8px 10px;
                font-size: 13px;
            }
            .nav-search {
                min-width: 140px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .sub-hero h1 {
                font-size: 34px;
            }
            .footer-grid {
                grid-template-columns: 1.4fr 1fr 1fr;
                gap: 24px;
            }
            .footer-col:last-child {
                grid-column: span 3;
            }
        }

        @media (max-width: 768px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }
            .section-padding {
                padding-top: 48px;
                padding-bottom: 48px;
            }
            .section-title {
                font-size: 26px;
            }
            .nav-left {
                gap: 12px;
            }
            .nav-links {
                display: none;
            }
            .nav-search {
                display: none;
            }
            .nav-login {
                display: none;
            }
            .nav-hamburger {
                display: flex;
            }
            .sub-hero {
                padding-top: calc(var(--nav-height) + 32px);
                padding-bottom: 48px;
                min-height: 240px;
            }
            .sub-hero h1 {
                font-size: 28px;
            }
            .sub-hero p {
                font-size: 15px;
            }
            .video-grid-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .stat-number {
                font-size: 28px;
            }
            .cta-box {
                flex-direction: column;
                text-align: center;
                padding: 28px 20px;
            }
            .cta-btn {
                width: 100%;
                justify-content: center;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-col:last-child {
                grid-column: span 1;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
            .footer-bottom .footer-meta-links {
                margin-left: 0;
            }
            .featured-card {
                margin-bottom: 20px;
            }
            .faq-question {
                font-size: 15px;
                padding: 16px 18px;
            }
            .faq-answer {
                margin-left: 18px;
                padding: 0 16px 16px;
                font-size: 14px;
            }
            .video-card-body {
                padding: 16px 18px 20px;
            }
            .video-card-title {
                font-size: 15px;
            }
            .video-card-desc {
                font-size: 13px;
            }
        }

        @media (max-width: 520px) {
            .nav-cta {
                padding: 8px 12px;
                font-size: 12px;
            }
            .sub-hero h1 {
                font-size: 24px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .stat-number {
                font-size: 24px;
            }
            .video-grid-section {
                padding: 48px 0;
            }
            .video-filter-tags {
                gap: 6px;
            }
            .video-filter-tag {
                padding: 5px 12px;
                font-size: 12px;
            }
        }
