/* roulang page: index */
:root {
            --brand-dark: #0A4D3C;
            --brand-deeper: #0B2B2E;
            --brand-accent: #00C853;
            --brand-gold: #FFB300;
            --bg-page: #F5F7FA;
            --bg-white: #FFFFFF;
            --text-primary: #1a1a2e;
            --text-secondary: #4a4a5e;
            --text-muted: #7a7a8e;
            --border-light: #e8ecf1;
            --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.14);
            --radius-card: 16px;
            --radius-btn: 8px;
            --radius-badge: 20px;
            --radius-sm: 6px;
            --font-stack: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-stack);
            background: var(--bg-page);
            color: var(--text-primary);
            line-height: 1.6;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-top: 68px;
            padding-bottom: 72px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: var(--brand-accent);
        }

        button,
        .btn {
            cursor: pointer;
            font-family: var(--font-stack);
            transition: all var(--transition-fast);
            border: none;
            outline: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        button:focus-visible,
        .btn:focus-visible,
        a:focus-visible {
            outline: 2px solid var(--brand-accent);
            outline-offset: 3px;
            border-radius: var(--radius-sm);
        }

        .container-custom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        @media (max-width: 640px) {
            .container-custom {
                padding: 0 14px;
            }
            body {
                padding-top: 56px;
                padding-bottom: 60px;
            }
        }

        /* ========== HEADER / NAV ========== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: linear-gradient(135deg, var(--brand-dark) 0%, #0C3D30 40%, var(--brand-deeper) 100%);
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
            height: 68px;
            display: flex;
            align-items: center;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            gap: 16px;
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--brand-accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #fff;
            font-weight: 700;
            flex-shrink: 0;
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.88);
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            font-weight: 500;
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #fff;
            background: rgba(255, 255, 255, 0.12);
        }
        .nav-links a.active {
            background: rgba(255, 255, 255, 0.18);
            font-weight: 600;
        }

        .header-ctas {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .btn-secondary-outline {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.7);
            color: #fff;
            padding: 9px 18px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
        }
        .btn-secondary-outline:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: #fff;
            color: #fff;
        }

        .btn-primary-gradient {
            background: linear-gradient(135deg, var(--brand-accent) 0%, #00a844 100%);
            color: #fff;
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 0.9rem;
            white-space: nowrap;
            box-shadow: 0 4px 14px rgba(0, 200, 83, 0.35);
        }
        .btn-primary-gradient:hover {
            box-shadow: 0 6px 20px rgba(0, 200, 83, 0.5);
            transform: translateY(-1px);
            color: #fff;
            filter: brightness(1.08);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 6px;
            line-height: 1;
        }

        @media (max-width: 1024px) {
            .nav-links {
                gap: 2px;
            }
            .nav-links a {
                padding: 6px 10px;
                font-size: 0.85rem;
            }
            .header-ctas .btn-secondary-outline {
                padding: 7px 12px;
                font-size: 0.8rem;
            }
            .header-ctas .btn-primary-gradient {
                padding: 8px 14px;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 68px;
                left: 0;
                right: 0;
                background: var(--brand-deeper);
                flex-direction: column;
                padding: 12px 0;
                gap: 0;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                box-shadow: var(--shadow-lg);
                z-index: 999;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                padding: 12px 20px;
                border-radius: 0;
                font-size: 1rem;
                width: 100%;
                text-align: left;
            }
            .mobile-toggle {
                display: block;
            }
            .header-ctas .btn-secondary-outline {
                display: none;
            }
            .header-ctas .btn-primary-gradient {
                padding: 8px 14px;
                font-size: 0.82rem;
            }
            body {
                padding-top: 56px;
            }
            .site-header {
                height: 56px;
            }
            .nav-links {
                top: 56px;
            }
        }

        @media (max-width: 520px) {
            .logo-text {
                font-size: 1.05rem;
            }
            .logo-icon {
                width: 32px;
                height: 32px;
                font-size: 16px;
                border-radius: 8px;
            }
            .header-ctas .btn-primary-gradient {
                padding: 7px 12px;
                font-size: 0.78rem;
            }
        }

        /* ========== HERO ========== */
        .hero-section {
            background: linear-gradient(160deg, #0A4D3C 0%, #0C3D30 25%, #0B2B2E 60%, #0a1f22 100%);
            position: relative;
            overflow: hidden;
            padding: 60px 0 70px;
            color: #fff;
            min-height: 520px;
            display: flex;
            align-items: center;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -120px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 200, 83, 0.18) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 179, 0, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-left h1 {
            font-size: 2.75rem;
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 16px;
            color: #fff;
            letter-spacing: 0.5px;
        }
        .hero-left h1 span {
            color: var(--brand-accent);
        }
        .hero-left .hero-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.82);
            margin-bottom: 28px;
            line-height: 1.6;
            max-width: 480px;
        }
        .hero-left .hero-ctas {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .hero-left .btn-hero-primary {
            background: linear-gradient(135deg, var(--brand-accent) 0%, #00a844 100%);
            color: #fff;
            padding: 14px 28px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 1.05rem;
            box-shadow: 0 6px 22px rgba(0, 200, 83, 0.4);
            white-space: nowrap;
        }
        .hero-left .btn-hero-primary:hover {
            box-shadow: 0 8px 28px rgba(0, 200, 83, 0.55);
            transform: translateY(-2px);
            filter: brightness(1.1);
            color: #fff;
        }
        .hero-left .btn-hero-secondary {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.6);
            color: #fff;
            padding: 13px 26px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 1.05rem;
            white-space: nowrap;
        }
        .hero-left .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            color: #fff;
        }

        .hero-right {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .hero-data-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(12px);
            border-radius: var(--radius-card);
            padding: 18px 20px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            gap: 14px;
            transition: all var(--transition-smooth);
        }
        .hero-data-card:hover {
            background: rgba(255, 255, 255, 0.13);
            transform: translateX(4px);
        }
        .hero-data-badge {
            background: var(--brand-accent);
            color: #fff;
            border-radius: var(--radius-badge);
            padding: 8px 16px;
            font-weight: 700;
            font-size: 1.3rem;
            white-space: nowrap;
            min-width: 70px;
            text-align: center;
            flex-shrink: 0;
        }
        .hero-data-badge.gold {
            background: var(--brand-gold);
            color: #1a1a2e;
        }
        .hero-data-info {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.4;
        }
        .hero-data-info strong {
            color: #fff;
            display: block;
            font-size: 1.05rem;
        }

        @media (max-width: 900px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .hero-left h1 {
                font-size: 2.1rem;
            }
            .hero-left .hero-subtitle {
                font-size: 1rem;
            }
            .hero-section {
                padding: 40px 0 50px;
                min-height: auto;
            }
            .hero-right {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 10px;
            }
            .hero-data-card {
                flex: 1 1 130px;
                min-width: 130px;
                padding: 14px;
                gap: 8px;
            }
            .hero-data-badge {
                font-size: 1.1rem;
                padding: 6px 12px;
                min-width: 50px;
            }
        }
        @media (max-width: 520px) {
            .hero-left h1 {
                font-size: 1.7rem;
            }
            .hero-left .hero-ctas {
                flex-direction: column;
                gap: 10px;
            }
            .hero-left .btn-hero-primary,
            .hero-left .btn-hero-secondary {
                width: 100%;
                text-align: center;
                justify-content: center;
                padding: 12px 20px;
            }
            .hero-right {
                flex-direction: column;
            }
        }

        /* ========== SECTIONS GENERAL ========== */
        .section-block {
            padding: 60px 0;
        }
        .section-block.bg-light {
            background: #fff;
        }
        .section-block.bg-gray {
            background: #f0f3f6;
        }
        .section-block.bg-gradient-subtle {
            background: linear-gradient(180deg, #f5f7fa 0%, #eef1f5 100%);
        }
        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 10px;
            color: var(--text-primary);
        }
        .section-subtitle {
            font-size: 1rem;
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        @media (max-width: 640px) {
            .section-block {
                padding: 36px 0;
            }
            .section-title {
                font-size: 1.4rem;
            }
            .section-subtitle {
                font-size: 0.9rem;
                margin-bottom: 28px;
            }
        }

        /* ========== CARDS ========== */
        .card-rounded {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .card-rounded:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .card-rounded .card-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }
        .card-rounded .card-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .card-rounded .card-body h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-primary);
        }
        .card-rounded .card-body p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
            flex: 1;
            margin-bottom: 12px;
        }
        .badge-data {
            display: inline-block;
            background: var(--brand-accent);
            color: #fff;
            border-radius: var(--radius-badge);
            padding: 5px 14px;
            font-weight: 700;
            font-size: 0.85rem;
            white-space: nowrap;
            align-self: flex-start;
        }
        .badge-data.gold {
            background: var(--brand-gold);
            color: #1a1a2e;
        }

        /* ========== SELLING POINTS ========== */
        .selling-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        @media (max-width: 900px) {
            .selling-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 560px) {
            .selling-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== VERTICAL SHOWCASE ========== */
        .vertical-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .vertical-showcase .showcase-img {
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }
        .vertical-showcase .showcase-text h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .vertical-showcase .showcase-text p {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 16px;
        }
        @media (max-width: 768px) {
            .vertical-showcase {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        /* ========== HOT LIST ========== */
        .hot-list-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .hot-list-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 16px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            text-align: center;
            cursor: pointer;
        }
        .hot-list-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .hot-list-card .hot-rank {
            font-size: 2rem;
            font-weight: 800;
            color: var(--brand-accent);
            margin-bottom: 6px;
        }
        .hot-list-card h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 4px;
        }
        .hot-list-card p {
            font-size: 0.82rem;
            color: var(--text-muted);
        }
        @media (max-width: 900px) {
            .hot-list-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .hot-list-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .hot-list-card {
                padding: 12px;
            }
        }

        /* ========== REVIEWS ========== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .review-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }
        .review-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .review-card .stars {
            color: var(--brand-gold);
            font-size: 1rem;
            margin-bottom: 8px;
        }
        .review-card .review-text {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 12px;
        }
        .review-card .reviewer {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--text-primary);
        }
        @media (max-width: 900px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 560px) {
            .reviews-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== ENTRY MATRIX ========== */
        .entry-matrix {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .entry-item {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 24px 16px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .entry-item:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .entry-item .entry-icon {
            font-size: 2.2rem;
            color: var(--brand-accent);
            margin-bottom: 10px;
        }
        .entry-item h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 4px;
        }
        .entry-item p {
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        @media (max-width: 900px) {
            .entry-matrix {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .entry-matrix {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .entry-item {
                padding: 16px 10px;
            }
        }

        /* ========== MEMBERSHIP ========== */
        .membership-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .membership-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 28px 22px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            text-align: center;
            border: 2px solid transparent;
            position: relative;
        }
        .membership-card.featured {
            border-color: var(--brand-accent);
            box-shadow: var(--shadow-hover);
            transform: scale(1.03);
        }
        .membership-card.featured:hover {
            transform: scale(1.05);
        }
        .membership-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .membership-card.featured:hover {
            transform: scale(1.05);
        }
        .membership-card h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .membership-card .price {
            font-size: 2rem;
            font-weight: 800;
            color: var(--brand-accent);
            margin-bottom: 12px;
        }
        .membership-card ul {
            list-style: none;
            padding: 0;
            margin: 0 0 16px;
            text-align: left;
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 2;
        }
        .membership-card ul li::before {
            content: '✓ ';
            color: var(--brand-accent);
            font-weight: 700;
        }
        .btn-member-cta {
            background: linear-gradient(135deg, var(--brand-accent) 0%, #00a844 100%);
            color: #fff;
            padding: 10px 24px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            width: 100%;
            font-size: 0.95rem;
        }
        .btn-member-cta:hover {
            filter: brightness(1.1);
            color: #fff;
        }
        @media (max-width: 900px) {
            .membership-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
            .membership-card.featured {
                transform: scale(1);
            }
            .membership-card.featured:hover {
                transform: scale(1.02);
            }
        }

        /* ========== NEWS LIST ========== */
        .news-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .news-list li {
            padding: 16px 0;
            border-bottom: 1px solid var(--border-light);
            display: flex;
            align-items: flex-start;
            gap: 16px;
            transition: background var(--transition-fast);
        }
        .news-list li:hover {
            background: #fafbfc;
            margin: 0 -12px;
            padding-left: 12px;
            padding-right: 12px;
            border-radius: var(--radius-sm);
        }
        .news-date {
            background: var(--brand-accent);
            color: #fff;
            border-radius: var(--radius-badge);
            padding: 4px 12px;
            font-weight: 600;
            font-size: 0.8rem;
            white-space: nowrap;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .news-content h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 4px;
        }
        .news-content p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .btn-read-more {
            font-size: 0.82rem;
            color: var(--brand-accent);
            font-weight: 600;
            background: none;
            padding: 0;
            border: none;
            cursor: pointer;
            text-decoration: underline;
        }
        .btn-read-more:hover {
            color: #008c3a;
        }

        /* ========== DEEP CONTENT ========== */
        .deep-content-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 36px;
            align-items: start;
        }
        .deep-content-row.reverse {
            direction: rtl;
        }
        .deep-content-row.reverse>* {
            direction: ltr;
        }
        .deep-content-text h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 14px;
        }
        .deep-content-text p {
            color: var(--text-secondary);
            line-height: 1.75;
            margin-bottom: 12px;
            font-size: 0.95rem;
        }
        .deep-content-img {
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }
        .deep-content-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        @media (max-width: 768px) {
            .deep-content-row {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .deep-content-row.reverse {
                direction: ltr;
            }
        }

        /* ========== CTA BANNER ========== */
        .cta-banner {
            background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-deeper) 100%);
            border-radius: var(--radius-card);
            padding: 40px 30px;
            text-align: center;
            color: #fff;
            box-shadow: var(--shadow-lg);
        }
        .cta-banner h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .cta-banner p {
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 20px;
            font-size: 1rem;
        }
        .btn-cta-large {
            background: var(--brand-accent);
            color: #fff;
            padding: 14px 32px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
        }
        .btn-cta-large:hover {
            filter: brightness(1.12);
            color: #fff;
            box-shadow: 0 8px 26px rgba(0, 200, 83, 0.55);
            transform: translateY(-2px);
        }

        /* ========== STICKY BOTTOM ========== */
        .sticky-bottom-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 999;
            background: rgba(10, 45, 30, 0.94);
            backdrop-filter: blur(10px);
            padding: 12px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            flex-wrap: wrap;
        }
        .sticky-bottom-bar .sticky-text {
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            white-space: nowrap;
        }
        .sticky-bottom-bar .btn-sticky-cta {
            background: var(--brand-accent);
            color: #fff;
            padding: 10px 22px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 0.9rem;
            white-space: nowrap;
            box-shadow: 0 4px 14px rgba(0, 200, 83, 0.4);
        }
        .sticky-bottom-bar .btn-sticky-cta:hover {
            filter: brightness(1.1);
            color: #fff;
        }
        @media (max-width: 520px) {
            .sticky-bottom-bar {
                padding: 10px 12px;
                gap: 10px;
            }
            .sticky-bottom-bar .sticky-text {
                font-size: 0.8rem;
            }
            .sticky-bottom-bar .btn-sticky-cta {
                padding: 8px 16px;
                font-size: 0.8rem;
            }
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #1a1a2e;
            color: rgba(255, 255, 255, 0.75);
            padding: 40px 0 24px;
            font-size: 0.88rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 24px;
        }
        .footer-col h4 {
            color: #fff;
            font-weight: 700;
            margin-bottom: 12px;
            font-size: 1rem;
        }
        .footer-col a {
            color: rgba(255, 255, 255, 0.7);
            display: block;
            margin-bottom: 6px;
            font-size: 0.85rem;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--brand-accent);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 16px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            font-size: 0.8rem;
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.7);
        }
        .footer-bottom a:hover {
            color: var(--brand-accent);
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        /* ========== UTILS ========== */
        .text-center {
            text-align: center;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mb-2 {
            margin-bottom: 16px;
        }
        .mb-3 {
            margin-bottom: 24px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

/* roulang page: category3 */
:root {
            --brand-dark: #0A4D3C;
            --brand-deeper: #0B2B2E;
            --brand-accent: #00C853;
            --brand-gold: #FFB300;
            --bg-page: #F5F7FA;
            --bg-white: #FFFFFF;
            --text-primary: #1a1a2e;
            --text-secondary: #4a4a5e;
            --text-muted: #7a7a8e;
            --border-light: #e8ecf1;
            --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.14);
            --radius-card: 16px;
            --radius-btn: 8px;
            --radius-badge: 20px;
            --radius-sm: 6px;
            --font-stack: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-stack);
            background: var(--bg-page);
            color: var(--text-primary);
            line-height: 1.6;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-top: 68px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: var(--brand-accent);
        }

        button,
        .btn {
            cursor: pointer;
            font-family: var(--font-stack);
            transition: all var(--transition-fast);
            border: none;
            outline: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        button:focus-visible,
        .btn:focus-visible,
        a:focus-visible {
            outline: 2px solid var(--brand-accent);
            outline-offset: 3px;
            border-radius: var(--radius-sm);
        }

        .container-custom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ========== HEADER / NAV ========== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: linear-gradient(135deg, var(--brand-dark) 0%, #0C3D30 40%, var(--brand-deeper) 100%);
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
            height: 68px;
            display: flex;
            align-items: center;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            gap: 16px;
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--brand-accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #fff;
            font-weight: 700;
            flex-shrink: 0;
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.88);
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            font-weight: 500;
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #fff;
            background: rgba(255, 255, 255, 0.12);
        }

        .nav-links a.active {
            background: rgba(255, 255, 255, 0.18);
            font-weight: 600;
        }

        .header-ctas {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .btn-secondary-outline {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.7);
            color: #fff;
            padding: 9px 18px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .btn-secondary-outline:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: #fff;
            color: #fff;
        }

        .btn-primary-gradient {
            background: linear-gradient(135deg, var(--brand-accent) 0%, #00a844 100%);
            color: #fff;
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 0.9rem;
            white-space: nowrap;
            box-shadow: 0 4px 14px rgba(0, 200, 83, 0.35);
        }

        .btn-primary-gradient:hover {
            box-shadow: 0 6px 20px rgba(0, 200, 83, 0.5);
            transform: translateY(-1px);
            color: #fff;
            filter: brightness(1.08);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 6px;
            line-height: 1;
        }

        /* ========== BREADCRUMB ========== */
        .breadcrumb-bar {
            background: #fff;
            border-bottom: 1px solid var(--border-light);
            padding: 12px 0;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .breadcrumb-bar a {
            color: var(--brand-dark);
            font-weight: 500;
        }

        .breadcrumb-bar a:hover {
            color: var(--brand-accent);
        }

        .breadcrumb-bar span {
            margin: 0 6px;
            color: #c0c0c8;
        }

        .breadcrumb-bar .current {
            color: var(--text-primary);
            font-weight: 600;
        }

        /* ========== HERO ========== */
        .hero-section {
            position: relative;
            background: linear-gradient(135deg, #0A3D2E 0%, #0B2B2E 50%, #0A4D3C 100%);
            overflow: hidden;
            min-height: 500px;
            display: flex;
            align-items: center;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            opacity: 0.18;
            z-index: 0;
        }

        .hero-inner {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 48px;
            padding: 60px 0;
            flex-wrap: wrap;
        }

        .hero-left {
            flex: 1 1 420px;
            min-width: 300px;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 179, 0, 0.2);
            color: var(--brand-gold);
            padding: 6px 16px;
            border-radius: var(--radius-badge);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
            border: 1px solid rgba(255, 179, 0, 0.3);
        }

        .hero-left h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.25;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .hero-left h1 span {
            color: var(--brand-accent);
        }

        .hero-left .hero-desc {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.78);
            line-height: 1.7;
            margin-bottom: 28px;
            max-width: 520px;
        }

        .hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .btn-hero-primary {
            background: linear-gradient(135deg, var(--brand-accent) 0%, #00a844 100%);
            color: #fff;
            padding: 14px 28px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 1rem;
            white-space: nowrap;
            box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
            transition: all var(--transition-smooth);
        }

        .btn-hero-primary:hover {
            box-shadow: 0 10px 28px rgba(0, 200, 83, 0.55);
            transform: translateY(-2px);
            color: #fff;
            filter: brightness(1.1);
        }

        .btn-hero-secondary {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.6);
            color: #fff;
            padding: 14px 28px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 1rem;
            white-space: nowrap;
        }

        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            color: #fff;
        }

        .hero-right {
            flex: 1 1 380px;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .data-stat-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-card);
            padding: 18px 22px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all var(--transition-smooth);
        }

        .data-stat-card:hover {
            background: rgba(255, 255, 255, 0.14);
            border-color: rgba(255, 255, 255, 0.28);
            transform: translateX(4px);
        }

        .data-stat-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
        }

        .data-stat-icon.green {
            background: rgba(0, 200, 83, 0.2);
            color: var(--brand-accent);
        }

        .data-stat-icon.gold {
            background: rgba(255, 179, 0, 0.2);
            color: var(--brand-gold);
        }

        .data-stat-icon.blue {
            background: rgba(64, 180, 255, 0.2);
            color: #40b4ff;
        }

        .data-stat-info .stat-value {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
        }

        .data-stat-info .stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.65);
            margin-top: 2px;
        }

        /* ========== SECTION COMMON ========== */
        .section-block {
            padding: 60px 0;
        }

        .section-block.alt-bg {
            background: #fff;
        }

        .section-block.gradient-bg {
            background: linear-gradient(180deg, #F5F7FA 0%, #fff 100%);
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.05rem;
            color: var(--text-muted);
            text-align: center;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        /* ========== CARDS ========== */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }

        .card-rounded {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 28px 24px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            border: 1px solid transparent;
            position: relative;
        }

        .card-rounded:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
            border-color: var(--border-light);
        }

        .card-icon-wrap {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 16px;
        }

        .card-icon-wrap.green-bg {
            background: rgba(0, 200, 83, 0.1);
            color: var(--brand-accent);
        }

        .card-icon-wrap.gold-bg {
            background: rgba(255, 179, 0, 0.1);
            color: var(--brand-gold);
        }

        .card-icon-wrap.dark-bg {
            background: rgba(10, 77, 60, 0.1);
            color: var(--brand-dark);
        }

        .card-rounded h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .card-rounded p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }

        .card-badge {
            display: inline-block;
            background: var(--brand-gold);
            color: #1a1a2e;
            padding: 4px 12px;
            border-radius: var(--radius-badge);
            font-size: 0.78rem;
            font-weight: 700;
            margin-top: 12px;
            letter-spacing: 0.3px;
        }

        .card-badge.green-badge {
            background: var(--brand-accent);
            color: #fff;
        }

        /* ========== DATA SHOWCASE ========== */
        .showcase-row {
            display: flex;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
        }

        .showcase-text {
            flex: 1 1 380px;
            min-width: 280px;
        }

        .showcase-text h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--text-primary);
        }

        .showcase-text p {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .showcase-visual {
            flex: 1 1 420px;
            min-width: 280px;
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            background: #fff;
        }

        .showcase-visual img {
            width: 100%;
            height: auto;
            display: block;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 16px 0 0;
        }

        .feature-list li {
            padding: 8px 0;
            font-size: 0.95rem;
            color: var(--text-secondary);
            display: flex;
            align-items: flex-start;
            gap: 10px;
            line-height: 1.5;
        }

        .feature-list li i {
            color: var(--brand-accent);
            font-size: 1rem;
            margin-top: 3px;
            flex-shrink: 0;
        }

        /* ========== DATA TABLE ========== */
        .data-table-wrap {
            overflow-x: auto;
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 4px;
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            min-width: 700px;
        }

        .data-table thead th {
            background: linear-gradient(135deg, var(--brand-dark), var(--brand-deeper));
            color: #fff;
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .data-table tbody td {
            padding: 12px 16px;
            border-bottom: 1px solid var(--border-light);
            color: var(--text-secondary);
        }

        .data-table tbody tr:hover {
            background: #f8fafc;
        }

        .data-table .highlight-val {
            font-weight: 700;
            color: var(--brand-accent);
            font-size: 1.05rem;
        }

        .data-table .rank-badge {
            display: inline-block;
            width: 28px;
            height: 28px;
            line-height: 28px;
            text-align: center;
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.85rem;
            background: #e8ecf1;
            color: var(--text-primary);
        }

        .data-table .rank-badge.top {
            background: var(--brand-gold);
            color: #1a1a2e;
        }

        /* ========== PROCESS STEPS ========== */
        .steps-row {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .step-card {
            flex: 1 1 200px;
            min-width: 180px;
            max-width: 260px;
            background: #fff;
            border-radius: var(--radius-card);
            padding: 28px 20px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            position: relative;
        }

        .step-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .step-number {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand-accent), #00a844);
            color: #fff;
            font-size: 1.3rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            box-shadow: 0 4px 14px rgba(0, 200, 83, 0.3);
        }

        .step-card h4 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--text-primary);
        }

        .step-card p {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin: 0;
        }

        /* ========== TESTIMONIALS ========== */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }

        .testimonial-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: var(--shadow-card);
            border-left: 4px solid var(--brand-accent);
            transition: all var(--transition-smooth);
        }

        .testimonial-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        .testimonial-stars {
            color: var(--brand-gold);
            font-size: 0.9rem;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .testimonial-card .quote {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 14px;
            font-style: italic;
        }

        .testimonial-card .author {
            font-weight: 700;
            color: var(--text-primary);
            font-size: 0.9rem;
        }

        .testimonial-card .author-role {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            border: 1px solid var(--border-light);
            transition: all var(--transition-fast);
        }

        .faq-item:hover {
            border-color: #d0d8e0;
        }

        .faq-question {
            padding: 18px 22px;
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            background: #fff;
            transition: background var(--transition-fast);
        }

        .faq-question:hover {
            background: #fafbfc;
        }

        .faq-question i {
            color: var(--brand-accent);
            transition: transform var(--transition-fast);
            font-size: 0.9rem;
        }

        .faq-answer {
            padding: 0 22px 18px;
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.7;
            display: none;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        .faq-item.open .faq-question i {
            transform: rotate(180deg);
        }

        .faq-item.open .faq-question {
            background: #f8fdf9;
        }

        /* ========== CTA BANNER ========== */
        .cta-banner {
            background: linear-gradient(135deg, var(--brand-dark) 0%, #0C3D30 30%, var(--brand-deeper) 100%);
            border-radius: var(--radius-card);
            padding: 44px 36px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-3.webp') center/cover no-repeat;
            opacity: 0.1;
            z-index: 0;
        }

        .cta-banner>* {
            position: relative;
            z-index: 1;
        }

        .cta-banner h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .cta-banner p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 24px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .btn-cta-large {
            background: linear-gradient(135deg, var(--brand-accent) 0%, #00a844 100%);
            color: #fff;
            padding: 15px 36px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 1.05rem;
            white-space: nowrap;
            box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
            transition: all var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-cta-large:hover {
            box-shadow: 0 10px 28px rgba(0, 200, 83, 0.55);
            transform: translateY(-2px);
            color: #fff;
            filter: brightness(1.1);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: linear-gradient(180deg, #0B2B2E 0%, #0A1F22 100%);
            color: #fff;
            padding: 48px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            padding-bottom: 32px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-col h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 14px;
            color: #fff;
        }

        .footer-col a {
            display: block;
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.9rem;
            padding: 5px 0;
            transition: color var(--transition-fast);
        }

        .footer-col a:hover {
            color: var(--brand-accent);
        }

        .footer-col p {
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.85rem;
            line-height: 1.6;
            margin: 0;
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            padding: 20px 0;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.8rem;
        }

        .footer-bottom a:hover {
            color: var(--brand-accent);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .hero-left h1 {
                font-size: 2rem;
            }

            .hero-inner {
                gap: 32px;
            }

            .section-title {
                font-size: 1.6rem;
            }

            .showcase-row {
                gap: 28px;
            }

            .showcase-text h2 {
                font-size: 1.5rem;
            }

            .nav-links {
                gap: 2px;
            }

            .nav-links a {
                padding: 6px 10px;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 56px;
            }

            .site-header {
                height: 56px;
            }

            .header-inner {
                padding: 0 12px;
                gap: 8px;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 56px;
                left: 0;
                right: 0;
                background: linear-gradient(180deg, #0B2B2E 0%, #0A4D3C 100%);
                flex-direction: column;
                padding: 12px 16px;
                gap: 4px;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
                z-index: 999;
            }

            .nav-links.open {
                display: flex;
            }

            .nav-links a {
                width: 100%;
                padding: 12px 16px;
                border-radius: var(--radius-sm);
                font-size: 0.95rem;
                text-align: left;
            }

            .mobile-toggle {
                display: block;
            }

            .header-ctas {
                gap: 6px;
            }

            .btn-secondary-outline {
                padding: 7px 12px;
                font-size: 0.8rem;
            }

            .btn-primary-gradient {
                padding: 8px 14px;
                font-size: 0.8rem;
            }

            .logo-text {
                font-size: 1.05rem;
            }

            .logo-icon {
                width: 32px;
                height: 32px;
                font-size: 16px;
                border-radius: 8px;
            }

            .hero-inner {
                flex-direction: column;
                padding: 36px 0;
                gap: 24px;
            }

            .hero-left h1 {
                font-size: 1.7rem;
            }

            .hero-left .hero-desc {
                font-size: 0.95rem;
            }

            .hero-right {
                width: 100%;
            }

            .data-stat-card {
                padding: 14px 16px;
            }

            .data-stat-info .stat-value {
                font-size: 1.3rem;
            }

            .section-block {
                padding: 36px 0;
            }

            .section-title {
                font-size: 1.4rem;
            }

            .section-subtitle {
                font-size: 0.9rem;
                margin-bottom: 24px;
            }

            .card-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .steps-row {
                flex-direction: column;
                align-items: center;
            }

            .step-card {
                max-width: 100%;
                flex: 1 1 auto;
            }

            .showcase-row {
                flex-direction: column;
                gap: 20px;
            }

            .cta-banner {
                padding: 28px 20px;
            }

            .cta-banner h2 {
                font-size: 1.4rem;
            }

            .btn-cta-large {
                padding: 12px 24px;
                font-size: 0.95rem;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 8px;
                font-size: 0.75rem;
            }

            .container-custom {
                padding: 0 14px;
            }

            .data-table {
                font-size: 0.8rem;
            }

            .data-table thead th,
            .data-table tbody td {
                padding: 8px 10px;
            }
        }

        @media (max-width: 520px) {
            .hero-left h1 {
                font-size: 1.4rem;
            }

            .hero-btns {
                flex-direction: column;
                gap: 10px;
            }

            .btn-hero-primary,
            .btn-hero-secondary {
                width: 100%;
                justify-content: center;
                padding: 12px 20px;
                font-size: 0.9rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .section-title {
                font-size: 1.25rem;
            }

            .card-rounded {
                padding: 20px 16px;
            }

            .faq-question {
                padding: 14px 16px;
                font-size: 0.9rem;
            }

            .faq-answer {
                padding: 0 16px 14px;
                font-size: 0.85rem;
            }
        }

/* roulang page: category1 */
:root {
            --brand-dark: #0A4D3C;
            --brand-deeper: #0B2B2E;
            --brand-accent: #00C853;
            --brand-gold: #FFB300;
            --bg-page: #F5F7FA;
            --bg-white: #FFFFFF;
            --text-primary: #1a1a2e;
            --text-secondary: #4a4a5e;
            --text-muted: #7a7a8e;
            --border-light: #e8ecf1;
            --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.14);
            --radius-card: 16px;
            --radius-btn: 8px;
            --radius-badge: 20px;
            --radius-sm: 6px;
            --font-stack: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        body {
            font-family: var(--font-stack);
            background: var(--bg-page);
            color: var(--text-primary);
            line-height: 1.6;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-top: 68px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--brand-accent);
        }
        button,
        .btn {
            cursor: pointer;
            font-family: var(--font-stack);
            transition: all var(--transition-fast);
            border: none;
            outline: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        button:focus-visible,
        .btn:focus-visible,
        a:focus-visible {
            outline: 2px solid var(--brand-accent);
            outline-offset: 3px;
            border-radius: var(--radius-sm);
        }
        .container-custom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* ========== HEADER / NAV ========== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: linear-gradient(135deg, var(--brand-dark) 0%, #0C3D30 40%, var(--brand-deeper) 100%);
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
            height: 68px;
            display: flex;
            align-items: center;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            gap: 16px;
        }
        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--brand-accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #fff;
            font-weight: 700;
            flex-shrink: 0;
        }
        .logo-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .nav-links a {
            color: rgba(255, 255, 255, 0.88);
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            font-weight: 500;
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: #fff;
            background: rgba(255, 255, 255, 0.12);
        }
        .nav-links a.active {
            background: rgba(255, 255, 255, 0.18);
            font-weight: 600;
        }
        .header-ctas {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .btn-secondary-outline {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.7);
            color: #fff;
            padding: 9px 18px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
        }
        .btn-secondary-outline:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: #fff;
            color: #fff;
        }
        .btn-primary-gradient {
            background: linear-gradient(135deg, var(--brand-accent) 0%, #00a844 100%);
            color: #fff;
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 0.9rem;
            white-space: nowrap;
            box-shadow: 0 4px 14px rgba(0, 200, 83, 0.35);
        }
        .btn-primary-gradient:hover {
            box-shadow: 0 6px 20px rgba(0, 200, 83, 0.5);
            transform: translateY(-1px);
            color: #fff;
            filter: brightness(1.08);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 6px;
            line-height: 1;
        }
        /* ========== BREADCRUMB ========== */
        .breadcrumb-bar {
            background: #fff;
            border-bottom: 1px solid var(--border-light);
            padding: 12px 0;
            font-size: 0.88rem;
            color: var(--text-muted);
        }
        .breadcrumb-bar .container-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .breadcrumb-bar a {
            color: var(--text-secondary);
            transition: color var(--transition-fast);
        }
        .breadcrumb-bar a:hover {
            color: var(--brand-accent);
        }
        .breadcrumb-bar .separator {
            color: #c0c5cc;
            font-size: 0.75rem;
        }
        .breadcrumb-bar .current {
            color: var(--brand-dark);
            font-weight: 600;
        }
        /* ========== PAGE HERO ========== */
        .page-hero-football {
            background: linear-gradient(160deg, #0A4D3C 0%, #0C3D30 25%, #0B2B2E 60%, #0D1F1A 100%);
            padding: 60px 0 50px;
            position: relative;
            overflow: hidden;
        }
        .page-hero-football::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -80px;
            width: 360px;
            height: 360px;
            background: radial-gradient(circle, rgba(0, 200, 83, 0.18) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .page-hero-football::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -60px;
            width: 280px;
            height: 280px;
            background: radial-gradient(circle, rgba(255, 179, 0, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .page-hero-football .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .page-hero-football .hero-text {
            flex: 1 1 400px;
        }
        .page-hero-football .hero-text h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #fff;
            margin: 0 0 14px 0;
            line-height: 1.25;
            letter-spacing: 0.5px;
        }
        .page-hero-football .hero-text h1 .accent {
            color: var(--brand-accent);
        }
        .page-hero-football .hero-text .hero-sub {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.78);
            margin: 0 0 24px 0;
            line-height: 1.6;
            max-width: 520px;
        }
        .page-hero-football .hero-stats {
            flex: 0 0 320px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .stat-badge-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: var(--radius-card);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 14px;
            transition: all var(--transition-smooth);
        }
        .stat-badge-card:hover {
            background: rgba(255, 255, 255, 0.14);
            border-color: rgba(255, 255, 255, 0.28);
            transform: translateX(4px);
        }
        .stat-badge-card .stat-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .stat-badge-card .stat-icon.green {
            background: rgba(0, 200, 83, 0.22);
            color: var(--brand-accent);
        }
        .stat-badge-card .stat-icon.gold {
            background: rgba(255, 179, 0, 0.22);
            color: var(--brand-gold);
        }
        .stat-badge-card .stat-info .stat-num {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
        }
        .stat-badge-card .stat-info .stat-label {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 2px;
        }
        .hero-cta-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 6px;
        }
        .btn-hero-primary {
            background: linear-gradient(135deg, var(--brand-accent) 0%, #00a844 100%);
            color: #fff;
            padding: 13px 28px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 1rem;
            box-shadow: 0 6px 22px rgba(0, 200, 83, 0.4);
            white-space: nowrap;
        }
        .btn-hero-primary:hover {
            box-shadow: 0 8px 28px rgba(0, 200, 83, 0.55);
            transform: translateY(-2px);
            color: #fff;
            filter: brightness(1.1);
        }
        .btn-hero-outline {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.55);
            color: #fff;
            padding: 13px 28px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 1rem;
            white-space: nowrap;
        }
        .btn-hero-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
            color: #fff;
        }
        /* ========== LIVE SCORE CARDS ========== */
        .section-live-scores {
            padding: 50px 0;
            background: var(--bg-white);
        }
        .section-live-scores .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 28px;
        }
        .section-live-scores .section-header h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .live-dot {
            width: 12px;
            height: 12px;
            background: var(--brand-accent);
            border-radius: 50%;
            animation: pulse-dot 1.5s ease-in-out infinite;
            display: inline-block;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.6);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(0, 200, 83, 0);
            }
        }
        .score-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 16px;
        }
        .score-card {
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-card);
            padding: 18px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-card);
            cursor: default;
        }
        .score-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
            border-color: #d0d8e0;
        }
        .score-card .team {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            flex: 1;
            min-width: 0;
        }
        .score-card .team .team-name {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-primary);
            text-align: center;
            line-height: 1.3;
        }
        .score-card .team .team-badge {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e8ecf1, #d5dbe3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: var(--text-secondary);
            flex-shrink: 0;
        }
        .score-card .score-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            flex-shrink: 0;
        }
        .score-card .score-display {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--brand-dark);
            letter-spacing: 2px;
            line-height: 1;
        }
        .score-card .score-status {
            font-size: 0.75rem;
            color: var(--brand-accent);
            font-weight: 600;
            background: rgba(0, 200, 83, 0.08);
            padding: 3px 10px;
            border-radius: var(--radius-badge);
            white-space: nowrap;
        }
        .score-card .score-status.ht {
            color: #e67e22;
            background: rgba(230, 126, 34, 0.08);
        }
        .score-card .score-status.ft {
            color: var(--text-muted);
            background: rgba(122, 122, 142, 0.08);
        }
        .score-card .league-tag {
            font-size: 0.7rem;
            color: var(--text-muted);
            background: #f5f6f8;
            padding: 3px 8px;
            border-radius: var(--radius-sm);
            white-space: nowrap;
        }
        /* ========== LEAGUE QUICK LINKS ========== */
        .section-leagues {
            padding: 50px 0;
            background: var(--bg-page);
        }
        .section-leagues h2 {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 24px 0;
            text-align: center;
        }
        .league-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 14px;
        }
        .league-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 20px 14px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            cursor: pointer;
            border: 1px solid transparent;
        }
        .league-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
            border-color: var(--brand-accent);
        }
        .league-card .league-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin: 0 auto 10px;
            background: linear-gradient(135deg, #e0e5ec, #cdd4dd);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--text-secondary);
        }
        .league-card .league-name {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-primary);
        }
        .league-card .league-count {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 4px;
        }
        /* ========== FEATURES SECTION ========== */
        .section-features {
            padding: 55px 0;
            background: #fff;
        }
        .section-features h2 {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 30px 0;
            text-align: center;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
        }
        .feature-card {
            background: #fafbfc;
            border-radius: var(--radius-card);
            padding: 28px 22px;
            text-align: center;
            transition: all var(--transition-smooth);
            border: 1px solid var(--border-light);
        }
        .feature-card:hover {
            box-shadow: var(--shadow-hover);
            background: #fff;
            transform: translateY(-3px);
        }
        .feature-card .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            margin: 0 auto 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            background: linear-gradient(135deg, rgba(0, 200, 83, 0.12), rgba(0, 168, 68, 0.08));
            color: var(--brand-accent);
        }
        .feature-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 8px 0;
        }
        .feature-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.5;
        }
        /* ========== COVERAGE SECTION ========== */
        .section-coverage {
            padding: 55px 0;
            background: linear-gradient(180deg, #f8f9fb 0%, #eef1f5 100%);
        }
        .section-coverage .coverage-inner {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .section-coverage .coverage-text {
            flex: 1 1 350px;
        }
        .section-coverage .coverage-text h2 {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 14px 0;
        }
        .section-coverage .coverage-text p {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0 0 10px 0;
        }
        .section-coverage .coverage-image {
            flex: 0 0 420px;
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .section-coverage .coverage-image img {
            width: 100%;
            height: auto;
            border-radius: var(--radius-card);
        }
        .coverage-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 16px;
        }
        .coverage-badge {
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-badge);
            padding: 8px 16px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
        }
        .coverage-badge .badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--brand-accent);
            display: inline-block;
        }
        /* ========== SCENARIO SECTION ========== */
        .section-scenario {
            padding: 55px 0;
            background: #fff;
        }
        .section-scenario h2 {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 30px 0;
            text-align: center;
        }
        .scenario-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 20px;
        }
        .scenario-item {
            display: flex;
            gap: 16px;
            background: #fafbfc;
            border-radius: var(--radius-card);
            padding: 22px 20px;
            border: 1px solid var(--border-light);
            transition: all var(--transition-smooth);
            align-items: flex-start;
        }
        .scenario-item:hover {
            box-shadow: var(--shadow-hover);
            background: #fff;
            transform: translateY(-2px);
        }
        .scenario-item .scenario-num {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--brand-dark), var(--brand-deeper));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .scenario-item .scenario-info h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 6px 0;
        }
        .scenario-item .scenario-info p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.5;
        }
        /* ========== TESTIMONIALS ========== */
        .section-testimonials {
            padding: 55px 0;
            background: var(--bg-page);
        }
        .section-testimonials h2 {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 30px 0;
            text-align: center;
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        .testimonial-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 24px 22px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            border: 1px solid var(--border-light);
        }
        .testimonial-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .testimonial-card .stars {
            color: var(--brand-gold);
            font-size: 0.9rem;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }
        .testimonial-card .quote {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0 0 14px 0;
            font-style: italic;
        }
        .testimonial-card .author {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--text-primary);
        }
        .testimonial-card .author-role {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 2px;
        }
        /* ========== FAQ ========== */
        .section-faq {
            padding: 55px 0;
            background: #fff;
        }
        .section-faq h2 {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 30px 0;
            text-align: center;
        }
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: #fafbfc;
            border-radius: var(--radius-card);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition-smooth);
        }
        .faq-item:hover {
            border-color: #d0d8e0;
        }
        .faq-question {
            padding: 18px 22px;
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            user-select: none;
            transition: background var(--transition-fast);
        }
        .faq-question:hover {
            background: #f0f3f6;
        }
        .faq-question .faq-icon {
            font-size: 0.8rem;
            color: var(--brand-accent);
            transition: transform var(--transition-smooth);
            flex-shrink: 0;
        }
        .faq-item.open .faq-question .faq-icon {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
        }
        .faq-answer-inner {
            padding: 0 22px 18px;
            font-size: 0.92rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        /* ========== CTA BANNER ========== */
        .section-cta-banner {
            padding: 50px 0;
            background: linear-gradient(135deg, var(--brand-dark) 0%, #0C3D30 40%, var(--brand-deeper) 100%);
            position: relative;
            overflow: hidden;
        }
        .section-cta-banner::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -40px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(0, 200, 83, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-banner-inner {
            text-align: center;
            position: relative;
            z-index: 2;
        }
        .cta-banner-inner h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 10px 0;
        }
        .cta-banner-inner p {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.75);
            margin: 0 0 24px 0;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .btn-cta-large {
            background: linear-gradient(135deg, var(--brand-accent) 0%, #00a844 100%);
            color: #fff;
            padding: 14px 36px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 1.05rem;
            box-shadow: 0 6px 24px rgba(0, 200, 83, 0.4);
            white-space: nowrap;
        }
        .btn-cta-large:hover {
            box-shadow: 0 8px 30px rgba(0, 200, 83, 0.55);
            transform: translateY(-2px);
            color: #fff;
            filter: brightness(1.1);
        }
        /* ========== PAGINATION ========== */
        .pagination-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 30px 0 10px;
            flex-wrap: wrap;
        }
        .pagination-row .page-btn {
            width: 38px;
            height: 38px;
            border-radius: var(--radius-sm);
            background: #fff;
            border: 1px solid var(--border-light);
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .pagination-row .page-btn:hover {
            background: #f0f3f6;
            border-color: #c0c8d0;
        }
        .pagination-row .page-btn.active {
            background: var(--brand-dark);
            color: #fff;
            border-color: var(--brand-dark);
        }
        .pagination-row .page-btn.disabled {
            opacity: 0.4;
            pointer-events: none;
        }
        /* ========== FOOTER ========== */
        .site-footer {
            background: linear-gradient(180deg, #0B2B2E 0%, #081E20 100%);
            color: #fff;
            padding: 40px 0 0;
            margin-top: 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-col h4 {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 14px 0;
        }
        .footer-col a {
            display: block;
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.88rem;
            padding: 5px 0;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--brand-accent);
        }
        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 16px;
            padding: 18px 0;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
            text-align: center;
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.55);
        }
        .footer-bottom a:hover {
            color: var(--brand-accent);
        }
        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .page-hero-football .hero-content {
                flex-direction: column;
                gap: 28px;
            }
            .page-hero-football .hero-stats {
                flex: 1 1 auto;
                width: 100%;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 10px;
            }
            .stat-badge-card {
                flex: 1 1 140px;
                min-width: 130px;
            }
            .score-cards-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
            .section-coverage .coverage-inner {
                flex-direction: column;
            }
            .section-coverage .coverage-image {
                flex: 0 0 auto;
                width: 100%;
                max-width: 500px;
            }
            .nav-links {
                gap: 2px;
            }
            .nav-links a {
                padding: 6px 10px;
                font-size: 0.85rem;
            }
        }
        @media (max-width: 768px) {
            body {
                padding-top: 56px;
            }
            .site-header {
                height: 56px;
            }
            .header-inner {
                padding: 0 12px;
                gap: 8px;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 56px;
                left: 0;
                right: 0;
                background: linear-gradient(180deg, var(--brand-dark) 0%, var(--brand-deeper) 100%);
                flex-direction: column;
                padding: 12px 16px;
                gap: 4px;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
                z-index: 999;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links a {
                width: 100%;
                padding: 10px 14px;
                border-radius: var(--radius-sm);
                font-size: 0.9rem;
            }
            .mobile-toggle {
                display: block;
            }
            .header-ctas {
                gap: 6px;
            }
            .btn-secondary-outline,
            .btn-primary-gradient {
                padding: 7px 12px;
                font-size: 0.78rem;
            }
            .page-hero-football {
                padding: 36px 0 32px;
            }
            .page-hero-football .hero-text h1 {
                font-size: 1.8rem;
            }
            .page-hero-football .hero-text .hero-sub {
                font-size: 0.95rem;
            }
            .page-hero-football .hero-stats {
                flex-direction: column;
                gap: 8px;
            }
            .stat-badge-card {
                flex: 1 1 auto;
            }
            .score-cards-grid {
                grid-template-columns: 1fr;
            }
            .league-grid {
                grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .scenario-list {
                grid-template-columns: 1fr;
            }
            .testimonial-grid {
                grid-template-columns: 1fr;
            }
            .section-coverage .coverage-image {
                max-width: 100%;
            }
            .container-custom {
                padding: 0 14px;
            }
            .footer-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 20px;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }
            .hero-cta-row {
                flex-direction: column;
                gap: 10px;
            }
            .btn-hero-primary,
            .btn-hero-outline {
                width: 100%;
                justify-content: center;
                padding: 12px 20px;
                font-size: 0.95rem;
            }
        }
        @media (max-width: 520px) {
            .page-hero-football .hero-text h1 {
                font-size: 1.5rem;
            }
            .score-card {
                flex-wrap: wrap;
                justify-content: center;
                gap: 8px;
                padding: 14px;
            }
            .score-card .score-display {
                font-size: 1.4rem;
            }
            .league-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }
            .league-card {
                padding: 14px 8px;
            }
            .league-card .league-icon {
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
            .pagination-row .page-btn {
                width: 32px;
                height: 32px;
                font-size: 0.8rem;
            }
        }

/* roulang page: category2 */
:root {
            --brand-dark: #0A4D3C;
            --brand-deeper: #0B2B2E;
            --brand-accent: #00C853;
            --brand-gold: #FFB300;
            --bg-page: #F5F7FA;
            --bg-white: #FFFFFF;
            --text-primary: #1a1a2e;
            --text-secondary: #4a4a5e;
            --text-muted: #7a7a8e;
            --border-light: #e8ecf1;
            --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.14);
            --radius-card: 16px;
            --radius-btn: 8px;
            --radius-badge: 20px;
            --radius-sm: 6px;
            --font-stack: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-stack);
            background: var(--bg-page);
            color: var(--text-primary);
            line-height: 1.6;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-top: 68px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: var(--brand-accent);
        }

        button,
        .btn {
            cursor: pointer;
            font-family: var(--font-stack);
            transition: all var(--transition-fast);
            border: none;
            outline: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        button:focus-visible,
        .btn:focus-visible,
        a:focus-visible {
            outline: 2px solid var(--brand-accent);
            outline-offset: 3px;
            border-radius: var(--radius-sm);
        }

        .container-custom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ========== HEADER / NAV ========== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: linear-gradient(135deg, var(--brand-dark) 0%, #0C3D30 40%, var(--brand-deeper) 100%);
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
            height: 68px;
            display: flex;
            align-items: center;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            gap: 16px;
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--brand-accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #fff;
            font-weight: 700;
            flex-shrink: 0;
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.88);
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            font-weight: 500;
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #fff;
            background: rgba(255, 255, 255, 0.12);
        }

        .nav-links a.active {
            background: rgba(255, 255, 255, 0.18);
            font-weight: 600;
        }

        .header-ctas {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .btn-secondary-outline {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.7);
            color: #fff;
            padding: 9px 18px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .btn-secondary-outline:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: #fff;
            color: #fff;
        }

        .btn-primary-gradient {
            background: linear-gradient(135deg, var(--brand-accent) 0%, #00a844 100%);
            color: #fff;
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 0.9rem;
            white-space: nowrap;
            box-shadow: 0 4px 14px rgba(0, 200, 83, 0.35);
        }

        .btn-primary-gradient:hover {
            box-shadow: 0 6px 20px rgba(0, 200, 83, 0.5);
            transform: translateY(-1px);
            color: #fff;
            filter: brightness(1.08);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 6px;
            line-height: 1;
        }

        /* ========== BREADCRUMB ========== */
        .breadcrumb-bar {
            background: #fff;
            border-bottom: 1px solid var(--border-light);
            padding: 12px 0;
        }

        .breadcrumb-list {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.88rem;
            color: var(--text-muted);
            flex-wrap: wrap;
        }

        .breadcrumb-list a {
            color: var(--text-secondary);
            font-weight: 500;
        }

        .breadcrumb-list a:hover {
            color: var(--brand-accent);
        }

        .breadcrumb-list .separator {
            color: #c0c4cc;
            font-size: 0.75rem;
        }

        .breadcrumb-list .current {
            color: var(--brand-dark);
            font-weight: 600;
        }

        /* ========== HERO COUNTDOWN ========== */
        .hero-countdown-section {
            background: linear-gradient(160deg, #0A3D2E 0%, #0B2B2E 30%, #0C1F22 60%, #0A4D3C 100%);
            position: relative;
            overflow: hidden;
            padding: 48px 0 56px;
        }

        .hero-countdown-section::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -120px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 200, 83, 0.14) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-countdown-section::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: -80px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 179, 0, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-countdown-inner {
            position: relative;
            z-index: 2;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 36px;
        }

        .hero-countdown-left {
            flex: 1;
            min-width: 280px;
        }

        .countdown-flash-bar {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 59, 48, 0.15);
            border: 1px solid rgba(255, 59, 48, 0.4);
            border-radius: 24px;
            padding: 8px 18px;
            margin-bottom: 20px;
            animation: pulse-flash 2s infinite;
        }

        @keyframes pulse-flash {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.35);
            }
            50% {
                box-shadow: 0 0 0 14px rgba(255, 59, 48, 0);
            }
        }

        .countdown-flash-bar .flash-icon {
            color: #ff3b30;
            font-size: 1rem;
            animation: blink-icon 1s infinite;
        }

        @keyframes blink-icon {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.35;
            }
        }

        .countdown-flash-bar .flash-text {
            color: #ff6b6b;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }

        .countdown-timer-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }

        .countdown-unit {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 12px;
            padding: 14px 16px;
            text-align: center;
            min-width: 58px;
        }

        .countdown-unit .count-num {
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            letter-spacing: 1px;
        }

        .countdown-unit .count-label {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-countdown-left h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #fff;
            margin: 0 0 10px;
            line-height: 1.3;
            letter-spacing: 0.5px;
        }

        .hero-countdown-left h1 .highlight {
            color: var(--brand-gold);
            position: relative;
        }

        .hero-countdown-left .hero-sub {
            color: rgba(255, 255, 255, 0.75);
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 24px;
            max-width: 480px;
        }

        .hero-cta-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-hero-primary {
            background: linear-gradient(135deg, #ff3b30 0%, #e8352a 100%);
            color: #fff;
            padding: 14px 28px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 1rem;
            box-shadow: 0 6px 20px rgba(255, 59, 48, 0.4);
            letter-spacing: 0.5px;
        }

        .btn-hero-primary:hover {
            box-shadow: 0 8px 28px rgba(255, 59, 48, 0.55);
            transform: translateY(-2px);
            color: #fff;
            filter: brightness(1.06);
        }

        .btn-hero-secondary {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: #fff;
            padding: 14px 28px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 1rem;
        }

        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: #fff;
            color: #fff;
        }

        .hero-countdown-right {
            flex: 0 0 380px;
            min-width: 280px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .featured-match-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: var(--radius-card);
            padding: 20px 22px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all var(--transition-smooth);
        }

        .featured-match-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
        }

        .featured-match-card .match-teams {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .featured-match-card .team-row {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-primary);
        }

        .featured-match-card .team-row .team-score {
            margin-left: auto;
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--brand-dark);
        }

        .featured-match-card .match-status {
            display: inline-block;
            background: #ff3b30;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 12px;
            letter-spacing: 0.5px;
            animation: pulse-live 1.5s infinite;
        }

        @keyframes pulse-live {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.6;
            }
        }

        .featured-match-card .match-badge-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: var(--brand-accent);
            border-radius: 50%;
            color: #fff;
            font-size: 1.1rem;
            flex-shrink: 0;
            transition: all var(--transition-fast);
        }

        .featured-match-card .match-badge-link:hover {
            background: #00a844;
            transform: scale(1.08);
            color: #fff;
        }

        .mini-stat-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .mini-stat-badge {
            flex: 1;
            min-width: 60px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            padding: 12px 14px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-fast);
        }

        .mini-stat-badge:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .mini-stat-badge .stat-num {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--brand-gold);
            line-height: 1;
        }

        .mini-stat-badge .stat-label {
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        /* ========== SECTION COMMON ========== */
        .section-pad {
            padding: 56px 0;
        }

        .section-pad-sm {
            padding: 36px 0;
        }

        .section-bg-white {
            background: #fff;
        }

        .section-bg-light {
            background: #f9fafb;
        }

        .section-bg-dark {
            background: linear-gradient(160deg, #0A3D2E 0%, #0B2B2E 100%);
            color: #fff;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            letter-spacing: 0.3px;
        }

        .section-header .section-subtitle {
            color: var(--text-muted);
            font-size: 0.95rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.5;
        }

        .section-bg-dark .section-header h2 {
            color: #fff;
        }

        .section-bg-dark .section-header .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        /* ========== LIVE MATCH CARDS ========== */
        .live-match-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 18px;
        }

        .live-match-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 20px;
            box-shadow: var(--shadow-card);
            display: flex;
            align-items: center;
            gap: 14px;
            transition: all var(--transition-smooth);
            border-left: 4px solid transparent;
            position: relative;
        }

        .live-match-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
            border-left-color: var(--brand-accent);
        }

        .live-match-card .match-league-tag {
            position: absolute;
            top: 12px;
            right: 14px;
            font-size: 0.7rem;
            background: #f0f4f8;
            color: var(--text-muted);
            padding: 3px 8px;
            border-radius: 10px;
            font-weight: 600;
        }

        .live-match-card .match-info {
            flex: 1;
        }

        .live-match-card .match-teams-row {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .live-match-card .match-teams-row .vs {
            color: var(--text-muted);
            font-size: 0.8rem;
            font-weight: 500;
        }

        .live-match-card .match-score-display {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--brand-dark);
            letter-spacing: 1px;
        }

        .live-match-card .match-time-info {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        .live-match-card .live-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #ff3b30;
            border-radius: 50%;
            margin-right: 4px;
            animation: pulse-live 1.5s infinite;
        }

        .live-match-card .watch-btn {
            background: var(--brand-accent);
            color: #fff;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.8rem;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .live-match-card .watch-btn:hover {
            background: #00a844;
            color: #fff;
            box-shadow: 0 4px 14px rgba(0, 200, 83, 0.35);
        }

        /* ========== LEAGUE COVERAGE ========== */
        .league-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 16px;
        }

        .league-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 22px 16px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            cursor: pointer;
        }

        .league-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .league-card .league-icon-circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--brand-dark);
            font-weight: 700;
        }

        .league-card .league-name {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .league-card .league-count {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* ========== DATA COMPARISON ========== */
        .data-compare-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            align-items: center;
        }

        .data-compare-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 28px 24px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }

        .data-compare-card:hover {
            box-shadow: var(--shadow-hover);
        }

        .data-compare-card .compare-stat-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-light);
        }

        .data-compare-card .compare-stat-row:last-child {
            border-bottom: none;
        }

        .data-compare-card .stat-name {
            font-weight: 600;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .data-compare-card .stat-value {
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--brand-dark);
        }

        .data-compare-card .stat-bar-wrap {
            flex: 1;
            margin: 0 12px;
            height: 8px;
            background: #e8ecf1;
            border-radius: 4px;
            overflow: hidden;
        }

        .data-compare-card .stat-bar-fill {
            height: 100%;
            border-radius: 4px;
            background: linear-gradient(90deg, var(--brand-accent) 0%, var(--brand-gold) 100%);
            transition: width 1s ease;
        }

        /* ========== TEAM RANKING ========== */
        .ranking-table-wrap {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
        }

        .ranking-table {
            width: 100%;
            border-collapse: collapse;
        }

        .ranking-table th {
            background: #f8fafb;
            padding: 14px 16px;
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--text-secondary);
            text-align: left;
            border-bottom: 2px solid var(--border-light);
            letter-spacing: 0.3px;
        }

        .ranking-table td {
            padding: 13px 16px;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-light);
            color: var(--text-primary);
        }

        .ranking-table tbody tr {
            transition: background var(--transition-fast);
        }

        .ranking-table tbody tr:hover {
            background: #f8fdf9;
        }

        .ranking-table .rank-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.8rem;
            color: #fff;
            background: var(--brand-dark);
        }

        .ranking-table .rank-badge.top3 {
            background: var(--brand-gold);
            color: #1a1a2e;
        }

        .ranking-table .trend-up {
            color: var(--brand-accent);
            font-weight: 700;
        }

        .ranking-table .trend-down {
            color: #ff3b30;
            font-weight: 700;
        }

        /* ========== TIMELINE ========== */
        .timeline-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            position: relative;
            padding-left: 32px;
        }

        .timeline-list::before {
            content: '';
            position: absolute;
            left: 12px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, var(--brand-accent) 0%, var(--brand-dark) 100%);
            border-radius: 2px;
        }

        .timeline-item {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 16px 20px;
            box-shadow: var(--shadow-card);
            position: relative;
            transition: all var(--transition-smooth);
        }

        .timeline-item:hover {
            box-shadow: var(--shadow-hover);
            transform: translateX(4px);
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -26px;
            top: 20px;
            width: 12px;
            height: 12px;
            background: var(--brand-accent);
            border-radius: 50%;
            border: 3px solid #fff;
            box-shadow: 0 0 0 3px var(--brand-accent);
        }

        .timeline-item .tl-time {
            font-size: 0.8rem;
            color: var(--text-muted);
            font-weight: 600;
            margin-bottom: 4px;
        }

        .timeline-item .tl-match {
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-primary);
        }

        .timeline-item .tl-detail {
            font-size: 0.82rem;
            color: var(--text-secondary);
            margin-top: 2px;
        }

        /* ========== DEEP CONTENT ========== */
        .deep-content-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 32px;
            align-items: start;
        }

        .deep-text-block h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
            line-height: 1.4;
        }

        .deep-text-block p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 12px;
        }

        .deep-image-block {
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .deep-image-block img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            min-height: 320px;
        }

        /* ========== CTA BANNER ========== */
        .cta-banner {
            background: linear-gradient(135deg, var(--brand-dark) 0%, #0C3D30 50%, var(--brand-deeper) 100%);
            border-radius: var(--radius-card);
            padding: 40px 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }

        .cta-banner::after {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 179, 0, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-banner .cta-banner-text {
            position: relative;
            z-index: 2;
        }

        .cta-banner .cta-banner-text h3 {
            color: #fff;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .cta-banner .cta-banner-text p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin: 0;
        }

        .cta-banner .btn-cta-banner {
            position: relative;
            z-index: 2;
            background: var(--brand-gold);
            color: #1a1a2e;
            padding: 14px 28px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 1rem;
            white-space: nowrap;
            box-shadow: 0 6px 20px rgba(255, 179, 0, 0.4);
        }

        .cta-banner .btn-cta-banner:hover {
            box-shadow: 0 8px 28px rgba(255, 179, 0, 0.55);
            transform: translateY(-2px);
            color: #1a1a2e;
            filter: brightness(1.08);
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: all var(--transition-smooth);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-hover);
        }

        .faq-question {
            padding: 18px 22px;
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            user-select: none;
            transition: color var(--transition-fast);
        }

        .faq-question:hover {
            color: var(--brand-dark);
        }

        .faq-question .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #f0f4f8;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            transition: all var(--transition-fast);
            color: var(--text-muted);
        }

        .faq-item.open .faq-question .faq-icon {
            background: var(--brand-accent);
            color: #fff;
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 22px;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 22px 18px;
        }

        .faq-answer p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
            margin: 0;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #0a1a18;
            color: #fff;
            padding: 48px 0 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-col h4 {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.4px;
        }

        .footer-col a {
            display: block;
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.85rem;
            padding: 5px 0;
            transition: color var(--transition-fast);
        }

        .footer-col a:hover {
            color: var(--brand-accent);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 18px;
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.5);
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.55);
        }

        .footer-bottom a:hover {
            color: var(--brand-accent);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .hero-countdown-inner {
                flex-direction: column;
                text-align: center;
            }
            .hero-countdown-left .hero-sub {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            .hero-cta-row {
                justify-content: center;
            }
            .countdown-timer-row {
                justify-content: center;
            }
            .hero-countdown-right {
                flex: 0 0 auto;
                width: 100%;
                max-width: 500px;
            }
            .data-compare-grid {
                grid-template-columns: 1fr;
            }
            .deep-content-grid {
                grid-template-columns: 1fr;
            }
            .nav-links {
                gap: 2px;
            }
            .nav-links a {
                padding: 6px 10px;
                font-size: 0.82rem;
            }
            .header-ctas .btn-secondary-outline {
                padding: 7px 12px;
                font-size: 0.78rem;
            }
            .header-ctas .btn-primary-gradient {
                padding: 8px 14px;
                font-size: 0.78rem;
            }
        }

        @media (max-width: 768px) {
            .site-header {
                height: 56px;
            }
            body {
                padding-top: 56px;
            }
            .mobile-toggle {
                display: block;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 56px;
                left: 0;
                right: 0;
                background: linear-gradient(180deg, var(--brand-deeper) 0%, #0A3D2E 100%);
                flex-direction: column;
                padding: 12px 0;
                gap: 2px;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
                z-index: 999;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links a {
                padding: 12px 20px;
                width: 100%;
                border-radius: 0;
                font-size: 0.95rem;
            }
            .header-ctas .btn-secondary-outline {
                display: none;
            }
            .header-ctas .btn-primary-gradient {
                padding: 8px 14px;
                font-size: 0.8rem;
            }
            .hero-countdown-left h1 {
                font-size: 1.7rem;
            }
            .countdown-unit {
                padding: 10px 12px;
                min-width: 44px;
            }
            .countdown-unit .count-num {
                font-size: 1.4rem;
            }
            .live-match-grid {
                grid-template-columns: 1fr;
            }
            .league-grid {
                grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
            }
            .cta-banner {
                flex-direction: column;
                text-align: center;
                padding: 28px 20px;
            }
            .section-pad {
                padding: 36px 0;
            }
            .section-header h2 {
                font-size: 1.5rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
            .container-custom {
                padding: 0 14px;
            }
            .ranking-table {
                font-size: 0.75rem;
            }
            .ranking-table th,
            .ranking-table td {
                padding: 8px 6px;
                font-size: 0.72rem;
            }
            .timeline-list {
                padding-left: 24px;
            }
            .timeline-item::before {
                left: -20px;
                width: 10px;
                height: 10px;
            }
        }

        @media (max-width: 520px) {
            .hero-countdown-left h1 {
                font-size: 1.4rem;
            }
            .countdown-unit {
                padding: 8px 10px;
                min-width: 36px;
            }
            .countdown-unit .count-num {
                font-size: 1.2rem;
            }
            .countdown-unit .count-label {
                font-size: 0.6rem;
            }
            .featured-match-card {
                padding: 14px;
                gap: 10px;
            }
            .featured-match-card .team-row {
                font-size: 0.85rem;
            }
            .featured-match-card .team-row .team-score {
                font-size: 1rem;
            }
            .league-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }
            .league-card {
                padding: 14px 8px;
            }
            .league-card .league-icon-circle {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
            .league-card .league-name {
                font-size: 0.75rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .btn-hero-primary,
            .btn-hero-secondary {
                padding: 12px 20px;
                font-size: 0.85rem;
            }
            .mini-stat-row {
                gap: 6px;
            }
            .mini-stat-badge {
                padding: 8px 10px;
            }
            .mini-stat-badge .stat-num {
                font-size: 1.2rem;
            }
        }

/* roulang page: category4 */
:root {
            --brand-dark: #0A4D3C;
            --brand-deeper: #0B2B2E;
            --brand-accent: #00C853;
            --brand-gold: #FFB300;
            --bg-page: #F5F7FA;
            --bg-white: #FFFFFF;
            --text-primary: #1a1a2e;
            --text-secondary: #4a4a5e;
            --text-muted: #7a7a8e;
            --border-light: #e8ecf1;
            --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.14);
            --radius-card: 16px;
            --radius-btn: 8px;
            --radius-badge: 20px;
            --radius-sm: 6px;
            --font-stack: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-stack);
            background: var(--bg-page);
            color: var(--text-primary);
            line-height: 1.6;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-top: 68px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: var(--brand-accent);
        }

        button,
        .btn {
            cursor: pointer;
            font-family: var(--font-stack);
            transition: all var(--transition-fast);
            border: none;
            outline: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        button:focus-visible,
        .btn:focus-visible,
        a:focus-visible {
            outline: 2px solid var(--brand-accent);
            outline-offset: 3px;
            border-radius: var(--radius-sm);
        }

        .container-custom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ========== HEADER / NAV ========== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: linear-gradient(135deg, var(--brand-dark) 0%, #0C3D30 40%, var(--brand-deeper) 100%);
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
            height: 68px;
            display: flex;
            align-items: center;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            gap: 16px;
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--brand-accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #fff;
            font-weight: 700;
            flex-shrink: 0;
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.88);
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            font-weight: 500;
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #fff;
            background: rgba(255, 255, 255, 0.12);
        }

        .nav-links a.active {
            background: rgba(255, 255, 255, 0.18);
            font-weight: 600;
        }

        .header-ctas {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .btn-secondary-outline {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.7);
            color: #fff;
            padding: 9px 18px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .btn-secondary-outline:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: #fff;
            color: #fff;
        }

        .btn-primary-gradient {
            background: linear-gradient(135deg, var(--brand-accent) 0%, #00a844 100%);
            color: #fff;
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 0.9rem;
            white-space: nowrap;
            box-shadow: 0 4px 14px rgba(0, 200, 83, 0.35);
        }

        .btn-primary-gradient:hover {
            box-shadow: 0 6px 20px rgba(0, 200, 83, 0.5);
            transform: translateY(-1px);
            color: #fff;
            filter: brightness(1.08);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 6px;
            line-height: 1;
        }

        /* ========== BREADCRUMB ========== */
        .breadcrumb-bar {
            background: #fff;
            border-bottom: 1px solid var(--border-light);
            padding: 12px 0;
        }

        .breadcrumb-list {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
            font-size: 0.9rem;
            flex-wrap: wrap;
        }

        .breadcrumb-list li {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
        }

        .breadcrumb-list li a {
            color: var(--text-secondary);
            font-weight: 500;
        }

        .breadcrumb-list li a:hover {
            color: var(--brand-accent);
        }

        .breadcrumb-list li.current {
            color: var(--brand-dark);
            font-weight: 600;
        }

        .breadcrumb-sep {
            color: #c0c5cc;
            font-size: 0.8rem;
        }

        /* ========== HERO SECTION ========== */
        .news-hero {
            background: linear-gradient(170deg, #0A4D3C 0%, #0C3D30 30%, #0B2B2E 70%, #081e22 100%);
            padding: 48px 0 56px;
            position: relative;
            overflow: hidden;
        }

        .news-hero::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -120px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 200, 83, 0.10) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .news-hero::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(255, 179, 0, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .news-hero .container-custom {
            position: relative;
            z-index: 1;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #fff;
            margin: 0 0 12px;
            line-height: 1.25;
            letter-spacing: 0.5px;
        }

        .hero-text .hero-subtitle {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.8);
            margin: 0 0 8px;
            line-height: 1.5;
        }

        .hero-text .hero-desc {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.6);
            margin: 0 0 24px;
            line-height: 1.6;
        }

        .hero-cta-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-hero-primary {
            background: linear-gradient(135deg, var(--brand-accent) 0%, #00a844 100%);
            color: #fff;
            padding: 13px 28px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 1rem;
            white-space: nowrap;
            box-shadow: 0 4px 18px rgba(0, 200, 83, 0.4);
            border: none;
            cursor: pointer;
            transition: all var(--transition-fast);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-hero-primary:hover {
            box-shadow: 0 8px 28px rgba(0, 200, 83, 0.55);
            transform: translateY(-2px);
            color: #fff;
            filter: brightness(1.1);
        }

        .btn-hero-outline {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.6);
            color: #fff;
            padding: 12px 26px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 1rem;
            white-space: nowrap;
            cursor: pointer;
            transition: all var(--transition-fast);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-hero-outline:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            color: #fff;
        }

        .hero-subscribe-panel {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-card);
            padding: 28px 24px;
            backdrop-filter: blur(8px);
        }

        .hero-subscribe-panel h3 {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 700;
            margin: 0 0 6px;
            text-align: center;
        }

        .hero-subscribe-panel .panel-subtitle {
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.85rem;
            text-align: center;
            margin: 0 0 20px;
        }

        .category-selector {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 20px;
        }

        .cat-option {
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-sm);
            padding: 12px 10px;
            text-align: center;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .cat-option:hover,
        .cat-option.selected {
            background: rgba(0, 200, 83, 0.2);
            border-color: var(--brand-accent);
            color: #fff;
        }

        .cat-option.selected {
            background: rgba(0, 200, 83, 0.28);
            border-color: var(--brand-accent);
            box-shadow: 0 0 16px rgba(0, 200, 83, 0.25);
        }

        .subscribe-btn-full {
            width: 100%;
            background: linear-gradient(135deg, var(--brand-gold) 0%, #e5a000 100%);
            color: #1a1a2e;
            padding: 13px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all var(--transition-fast);
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .subscribe-btn-full:hover {
            box-shadow: 0 6px 22px rgba(255, 179, 0, 0.45);
            transform: translateY(-2px);
            filter: brightness(1.06);
        }

        /* ========== SECTION TITLES ========== */
        .section-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 8px;
            line-height: 1.3;
        }

        .section-subtitle {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin: 0 0 28px;
            line-height: 1.5;
        }

        .section-header {
            text-align: center;
            margin-bottom: 32px;
        }

        /* ========== TAG BAR ========== */
        .tag-bar {
            background: #fff;
            border-bottom: 1px solid var(--border-light);
            padding: 14px 0;
            position: sticky;
            top: 68px;
            z-index: 50;
        }

        .tag-scroll {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
        }

        .tag-item {
            padding: 8px 18px;
            border-radius: var(--radius-badge);
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
            background: var(--bg-page);
            color: var(--text-secondary);
            border: 1px solid transparent;
        }

        .tag-item:hover {
            background: #e8f5e9;
            color: var(--brand-dark);
            border-color: var(--brand-accent);
        }

        .tag-item.active-tag {
            background: var(--brand-dark);
            color: #fff;
            font-weight: 600;
            border-color: var(--brand-dark);
        }

        /* ========== FEATURED STORY ========== */
        .featured-story {
            padding: 40px 0;
        }

        .featured-card {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
            transition: box-shadow var(--transition-smooth);
        }

        .featured-card:hover {
            box-shadow: var(--shadow-hover);
        }

        .featured-img-wrap {
            position: relative;
            overflow: hidden;
            min-height: 300px;
        }

        .featured-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .featured-card:hover .featured-img-wrap img {
            transform: scale(1.04);
        }

        .featured-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--brand-accent);
            color: #fff;
            padding: 6px 14px;
            border-radius: var(--radius-badge);
            font-size: 0.8rem;
            font-weight: 700;
            z-index: 2;
        }

        .featured-body {
            padding: 28px 24px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-body .feat-date {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin: 0 0 8px;
        }

        .featured-body h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 10px;
            line-height: 1.4;
        }

        .featured-body p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin: 0 0 18px;
            line-height: 1.6;
        }

        .btn-read-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--brand-dark);
            font-weight: 600;
            font-size: 0.9rem;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            transition: all var(--transition-fast);
            align-self: flex-start;
        }

        .btn-read-more:hover {
            color: var(--brand-accent);
            border-bottom-color: var(--brand-accent);
        }

        /* ========== NEWS LIST + SIDEBAR ========== */
        .news-content-area {
            padding: 40px 0;
        }

        .news-list-card {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 20px;
            margin-bottom: 16px;
            display: flex;
            gap: 18px;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }

        .news-list-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .news-list-thumb {
            width: 160px;
            height: 110px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .news-list-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .news-list-card:hover .news-list-thumb img {
            transform: scale(1.06);
        }

        .news-list-body {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 0;
        }

        .news-list-body .nl-date {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin: 0 0 4px;
        }

        .news-list-body h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 6px;
            line-height: 1.4;
        }

        .news-list-body p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-list-body .nl-tag {
            display: inline-block;
            background: #e8f5e9;
            color: var(--brand-dark);
            padding: 3px 10px;
            border-radius: var(--radius-badge);
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: 8px;
            align-self: flex-start;
        }

        /* Sidebar */
        .sidebar-card {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 20px;
            margin-bottom: 20px;
        }

        .sidebar-card h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 14px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-light);
        }

        .sidebar-hot-item {
            display: flex;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-light);
            transition: all var(--transition-fast);
            cursor: pointer;
        }

        .sidebar-hot-item:last-child {
            border-bottom: none;
        }

        .sidebar-hot-item:hover {
            color: var(--brand-accent);
        }

        .sidebar-hot-num {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--brand-gold);
            flex-shrink: 0;
            width: 28px;
            text-align: center;
        }

        .sidebar-hot-item span {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.4;
            flex: 1;
        }

        .sidebar-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .sidebar-tag {
            background: var(--bg-page);
            color: var(--text-secondary);
            padding: 6px 14px;
            border-radius: var(--radius-badge);
            font-size: 0.82rem;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition-fast);
        }

        .sidebar-tag:hover {
            background: var(--brand-dark);
            color: #fff;
        }

        /* ========== HOT NEWS GRID ========== */
        .hot-news-grid {
            padding: 40px 0;
        }

        .news-card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .news-card-item {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }

        .news-card-item:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .news-card-item .nci-img {
            height: 180px;
            overflow: hidden;
        }

        .news-card-item .nci-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .news-card-item:hover .nci-img img {
            transform: scale(1.05);
        }

        .news-card-item .nci-body {
            padding: 16px 18px;
        }

        .news-card-item .nci-body .nci-date {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin: 0 0 6px;
        }

        .news-card-item .nci-body h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 8px;
            line-height: 1.4;
        }

        .news-card-item .nci-body p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.5;
        }

        /* ========== DEEP ANALYSIS ========== */
        .deep-analysis {
            padding: 48px 0;
            background: #fff;
            border-radius: var(--radius-card);
            margin: 20px auto;
            max-width: 1200px;
            box-shadow: var(--shadow-card);
        }

        .deep-analysis .container-custom {
            max-width: 1100px;
        }

        .analysis-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 36px;
            align-items: center;
        }

        .analysis-text h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 12px;
        }

        .analysis-text p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0 0 10px;
        }

        .analysis-img {
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        .analysis-img img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        /* ========== STATS SECTION ========== */
        .stats-section {
            padding: 40px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat-card {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 24px 18px;
            text-align: center;
            transition: all var(--transition-smooth);
        }

        .stat-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--brand-accent);
            margin: 0 0 4px;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* ========== CTA BANNER ========== */
        .cta-banner {
            background: linear-gradient(135deg, var(--brand-dark) 0%, #0C3D30 50%, var(--brand-deeper) 100%);
            border-radius: var(--radius-card);
            padding: 40px 32px;
            text-align: center;
            margin: 40px auto;
            max-width: 1200px;
            box-shadow: var(--shadow-lg);
        }

        .cta-banner h3 {
            color: #fff;
            font-size: 1.6rem;
            font-weight: 700;
            margin: 0 0 8px;
        }

        .cta-banner p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.95rem;
            margin: 0 0 24px;
            line-height: 1.5;
        }

        .cta-banner .btn-hero-primary {
            display: inline-flex;
            margin: 0 auto;
        }

        /* ========== FAQ ========== */
        .faq-section {
            padding: 40px 0;
        }

        .faq-item {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 20px 24px;
            margin-bottom: 12px;
            cursor: pointer;
            transition: all var(--transition-smooth);
            border-left: 4px solid transparent;
        }

        .faq-item:hover {
            border-left-color: var(--brand-accent);
            box-shadow: var(--shadow-hover);
        }

        .faq-item h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 6px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .faq-item h4 .faq-icon {
            color: var(--brand-accent);
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .faq-item p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.6;
        }

        /* ========== PAGINATION ========== */
        .pagination-wrap {
            display: flex;
            justify-content: center;
            gap: 8px;
            padding: 20px 0 40px;
            flex-wrap: wrap;
        }

        .page-btn {
            padding: 10px 16px;
            border-radius: var(--radius-sm);
            background: #fff;
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 0.9rem;
            border: 1px solid var(--border-light);
            cursor: pointer;
            transition: all var(--transition-fast);
            min-width: 42px;
            text-align: center;
        }

        .page-btn:hover {
            background: #e8f5e9;
            border-color: var(--brand-accent);
            color: var(--brand-dark);
        }

        .page-btn.active-page {
            background: var(--brand-dark);
            color: #fff;
            border-color: var(--brand-dark);
            font-weight: 700;
        }

        .page-btn.page-dot {
            border: none;
            background: transparent;
            cursor: default;
            color: var(--text-muted);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: linear-gradient(180deg, #0B2B2E 0%, #081e22 100%);
            color: #fff;
            padding: 40px 0 20px;
            margin-top: 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 28px;
        }

        .footer-col h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 14px;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        }

        .footer-col a {
            display: block;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            padding: 5px 0;
            transition: color var(--transition-fast);
        }

        .footer-col a:hover {
            color: var(--brand-accent);
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            justify-content: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-bottom a:hover {
            color: var(--brand-accent);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .hero-text h1 {
                font-size: 2rem;
            }
            .news-card-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .featured-card {
                grid-template-columns: 1fr;
            }
            .featured-img-wrap {
                min-height: 220px;
            }
            .analysis-grid {
                grid-template-columns: 1fr;
            }
            .nav-links {
                gap: 2px;
            }
            .nav-links a {
                padding: 7px 10px;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 56px;
            }
            .site-header {
                height: 56px;
            }
            .header-inner {
                padding: 0 12px;
                gap: 8px;
            }
            .logo-text {
                font-size: 1.1rem;
            }
            .logo-icon {
                width: 34px;
                height: 34px;
                font-size: 16px;
                border-radius: 8px;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 56px;
                left: 0;
                right: 0;
                background: var(--brand-deeper);
                flex-direction: column;
                padding: 12px 16px;
                gap: 4px;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
                z-index: 999;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                width: 100%;
                padding: 10px 14px;
                border-radius: var(--radius-sm);
                font-size: 0.95rem;
                justify-content: flex-start;
            }
            .mobile-toggle {
                display: block;
            }
            .header-ctas {
                gap: 6px;
            }
            .btn-secondary-outline {
                padding: 7px 12px;
                font-size: 0.8rem;
            }
            .btn-primary-gradient {
                padding: 8px 14px;
                font-size: 0.8rem;
            }
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .hero-text h1 {
                font-size: 1.7rem;
            }
            .hero-subscribe-panel {
                padding: 20px 16px;
            }
            .category-selector {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .news-card-grid {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .news-list-card {
                flex-direction: column;
                gap: 12px;
            }
            .news-list-thumb {
                width: 100%;
                height: 160px;
            }
            .tag-bar {
                top: 56px;
            }
            .featured-card {
                grid-template-columns: 1fr;
            }
            .featured-img-wrap {
                min-height: 200px;
            }
            .analysis-grid {
                grid-template-columns: 1fr;
            }
            .section-title {
                font-size: 1.4rem;
            }
            .cta-banner {
                padding: 28px 18px;
                margin: 24px 12px;
                border-radius: 12px;
            }
            .cta-banner h3 {
                font-size: 1.3rem;
            }
            .pagination-wrap {
                gap: 4px;
            }
            .page-btn {
                padding: 8px 12px;
                font-size: 0.82rem;
                min-width: 34px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
            .container-custom {
                padding: 0 14px;
            }
            .news-hero {
                padding: 32px 0 40px;
            }
            .deep-analysis {
                margin: 16px 10px;
                border-radius: 12px;
                padding: 28px 0;
            }
        }

        @media (max-width: 520px) {
            .hero-text h1 {
                font-size: 1.45rem;
            }
            .hero-text .hero-subtitle {
                font-size: 1rem;
            }
            .category-selector {
                grid-template-columns: 1fr;
                gap: 6px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .stat-number {
                font-size: 1.8rem;
            }
            .btn-hero-primary,
            .btn-hero-outline {
                width: 100%;
                justify-content: center;
                padding: 11px 20px;
                font-size: 0.9rem;
            }
            .hero-cta-row {
                flex-direction: column;
            }
            .tag-scroll {
                gap: 6px;
            }
            .tag-item {
                padding: 6px 12px;
                font-size: 0.8rem;
            }
            .news-list-card {
                padding: 14px;
            }
            .news-list-thumb {
                height: 140px;
            }
            .news-list-body h4 {
                font-size: 0.95rem;
            }
            .featured-body h3 {
                font-size: 1.15rem;
            }
            .sidebar-card {
                padding: 16px;
            }
            .faq-item {
                padding: 16px 18px;
            }
            .faq-item h4 {
                font-size: 0.95rem;
            }
        }

/* roulang page: category5 */
:root {
            --brand-dark: #0A4D3C;
            --brand-deeper: #0B2B2E;
            --brand-accent: #00C853;
            --brand-gold: #FFB300;
            --bg-page: #F5F7FA;
            --bg-white: #FFFFFF;
            --text-primary: #1a1a2e;
            --text-secondary: #4a4a5e;
            --text-muted: #7a7a8e;
            --border-light: #e8ecf1;
            --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.14);
            --radius-card: 16px;
            --radius-btn: 8px;
            --radius-badge: 20px;
            --radius-sm: 6px;
            --font-stack: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-stack);
            background: var(--bg-page);
            color: var(--text-primary);
            line-height: 1.6;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-top: 68px;
            padding-bottom: 40px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: var(--brand-accent);
        }

        button,
        .btn {
            cursor: pointer;
            font-family: var(--font-stack);
            transition: all var(--transition-fast);
            border: none;
            outline: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        button:focus-visible,
        .btn:focus-visible,
        a:focus-visible {
            outline: 2px solid var(--brand-accent);
            outline-offset: 3px;
            border-radius: var(--radius-sm);
        }

        .container-custom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ========== HEADER / NAV ========== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: linear-gradient(135deg, var(--brand-dark) 0%, #0C3D30 40%, var(--brand-deeper) 100%);
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
            height: 68px;
            display: flex;
            align-items: center;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            gap: 16px;
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--brand-accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #fff;
            font-weight: 700;
            flex-shrink: 0;
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.88);
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            font-weight: 500;
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #fff;
            background: rgba(255, 255, 255, 0.12);
        }

        .nav-links a.active {
            background: rgba(255, 255, 255, 0.18);
            font-weight: 600;
        }

        .header-ctas {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .btn-secondary-outline {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.7);
            color: #fff;
            padding: 9px 18px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .btn-secondary-outline:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: #fff;
            color: #fff;
        }

        .btn-primary-gradient {
            background: linear-gradient(135deg, var(--brand-accent) 0%, #00a844 100%);
            color: #fff;
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 0.9rem;
            white-space: nowrap;
            box-shadow: 0 4px 14px rgba(0, 200, 83, 0.35);
        }

        .btn-primary-gradient:hover {
            box-shadow: 0 6px 20px rgba(0, 200, 83, 0.5);
            transform: translateY(-1px);
            color: #fff;
            filter: brightness(1.08);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 6px;
            line-height: 1;
        }

        /* ========== BREADCRUMB ========== */
        .breadcrumb-bar {
            background: #fff;
            border-bottom: 1px solid var(--border-light);
            padding: 12px 0;
            margin-bottom: 0;
        }

        .breadcrumb-list {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
            font-size: 0.9rem;
            flex-wrap: wrap;
        }

        .breadcrumb-list li {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
        }

        .breadcrumb-list li a {
            color: var(--text-secondary);
            transition: color var(--transition-fast);
        }

        .breadcrumb-list li a:hover {
            color: var(--brand-accent);
        }

        .breadcrumb-list li.current {
            color: var(--brand-dark);
            font-weight: 600;
        }

        .breadcrumb-sep {
            color: #c0c7cf;
            font-size: 0.75rem;
        }

        /* ========== HERO ========== */
        .hero-section {
            position: relative;
            background: linear-gradient(160deg, #0A3D2E 0%, #0B2B2E 30%, #0A4D3C 60%, #083020 100%);
            min-height: 420px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            opacity: 0.18;
            z-index: 0;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to top, var(--bg-page) 0%, transparent 100%);
            z-index: 1;
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 48px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px;
            width: 100%;
        }

        .hero-text {
            flex: 1;
            min-width: 0;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 179, 0, 0.2);
            color: var(--brand-gold);
            padding: 6px 16px;
            border-radius: var(--radius-badge);
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 16px;
            border: 1px solid rgba(255, 179, 0, 0.3);
        }

        .hero-text h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #fff;
            margin: 0 0 16px 0;
            line-height: 1.25;
            letter-spacing: 0.5px;
        }

        .hero-text h1 span {
            color: var(--brand-accent);
        }

        .hero-text .hero-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            margin: 0 0 28px 0;
            line-height: 1.6;
            max-width: 520px;
        }

        .hero-ctas {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .btn-hero-primary {
            background: linear-gradient(135deg, var(--brand-accent) 0%, #00b848 100%);
            color: #fff;
            padding: 14px 28px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 1rem;
            box-shadow: 0 6px 22px rgba(0, 200, 83, 0.4);
            white-space: nowrap;
        }

        .btn-hero-primary:hover {
            box-shadow: 0 8px 28px rgba(0, 200, 83, 0.55);
            transform: translateY(-2px);
            color: #fff;
            filter: brightness(1.1);
        }

        .btn-hero-outline {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.6);
            color: #fff;
            padding: 14px 28px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 1rem;
            white-space: nowrap;
        }

        .btn-hero-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
            color: #fff;
        }

        .hero-stats-panel {
            display: flex;
            flex-direction: column;
            gap: 14px;
            flex-shrink: 0;
            min-width: 200px;
        }

        .hero-stat-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-card);
            padding: 18px 22px;
            text-align: center;
            min-width: 160px;
        }

        .hero-stat-card .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--brand-gold);
            line-height: 1;
            margin-bottom: 4px;
        }

        .hero-stat-card .stat-label {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
        }

        /* ========== SECTION COMMON ========== */
        .section-padding {
            padding: 60px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 10px 0;
        }

        .section-header .section-subtitle {
            font-size: 1rem;
            color: var(--text-muted);
            margin: 0;
            max-width: 600px;
            margin: 0 auto;
        }

        .section-tag {
            display: inline-block;
            background: rgba(0, 200, 83, 0.1);
            color: var(--brand-dark);
            padding: 5px 14px;
            border-radius: var(--radius-badge);
            font-weight: 600;
            font-size: 0.8rem;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        /* ========== TEAM CARDS GRID ========== */
        .team-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .team-card {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }

        .team-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .team-card-img {
            height: 160px;
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .team-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-card-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--brand-gold);
            color: #1a1a2e;
            padding: 4px 10px;
            border-radius: var(--radius-badge);
            font-weight: 700;
            font-size: 0.75rem;
            z-index: 2;
        }

        .team-card-body {
            padding: 16px 18px;
        }

        .team-card-body h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin: 0 0 6px 0;
            color: var(--text-primary);
        }

        .team-card-meta {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .team-card-meta span {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .team-card-stats-row {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .team-mini-stat {
            background: #f0f4f8;
            padding: 5px 10px;
            border-radius: var(--radius-sm);
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-secondary);
        }

        /* ========== FEATURED TEAM SPOTLIGHT ========== */
        .spotlight-section {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
        }

        .spotlight-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            align-items: stretch;
        }

        .spotlight-image {
            min-height: 380px;
            background: linear-gradient(135deg, #1a3a2a 0%, #0d2620 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .spotlight-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.85;
        }

        .spotlight-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10, 77, 60, 0.7) 0%, rgba(11, 43, 46, 0.5) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: rgba(255, 255, 255, 0.3);
        }

        .spotlight-content {
            padding: 36px 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .spotlight-content h2 {
            font-size: 1.7rem;
            font-weight: 700;
            margin: 0 0 12px 0;
            color: var(--text-primary);
        }

        .spotlight-content p {
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0 0 16px 0;
        }

        .spotlight-stat-row {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 18px;
        }

        .spotlight-stat-item {
            text-align: center;
            padding: 12px 16px;
            background: #f8fafb;
            border-radius: var(--radius-sm);
            min-width: 70px;
        }

        .spotlight-stat-item .sval {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--brand-dark);
            line-height: 1;
        }

        .spotlight-stat-item .slbl {
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-top: 2px;
        }

        /* ========== PLAYER SHOWCASE ========== */
        .player-showcase-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .player-card {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all var(--transition-smooth);
        }

        .player-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        .player-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e0f2e9 0%, #b8dfca 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.6rem;
            color: var(--brand-dark);
            font-weight: 700;
        }

        .player-info h4 {
            font-size: 1rem;
            font-weight: 700;
            margin: 0 0 4px 0;
            color: var(--text-primary);
        }

        .player-info .player-role {
            font-size: 0.8rem;
            color: var(--brand-accent);
            font-weight: 600;
            margin-bottom: 4px;
        }

        .player-info .player-stats-mini {
            font-size: 0.75rem;
            color: var(--text-muted);
            display: flex;
            gap: 10px;
        }

        /* ========== HISTORY TIMELINE ========== */
        .timeline-list {
            list-style: none;
            margin: 0;
            padding: 0;
            position: relative;
        }

        .timeline-list::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--brand-accent), var(--brand-dark));
            border-radius: 3px;
        }

        .timeline-item {
            position: relative;
            padding-left: 52px;
            margin-bottom: 28px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 11px;
            top: 6px;
            width: 20px;
            height: 20px;
            background: #fff;
            border: 3px solid var(--brand-accent);
            border-radius: 50%;
            z-index: 2;
        }

        .timeline-year {
            font-weight: 700;
            color: var(--brand-accent);
            font-size: 0.9rem;
            margin-bottom: 4px;
        }

        .timeline-content {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 16px 20px;
            box-shadow: var(--shadow-card);
        }

        .timeline-content h4 {
            font-size: 1rem;
            font-weight: 700;
            margin: 0 0 6px 0;
            color: var(--text-primary);
        }

        .timeline-content p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.5;
        }

        /* ========== COMPARISON HIGHLIGHT ========== */
        .comparison-cards {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 16px;
            align-items: center;
        }

        .comparison-card {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 28px 24px;
            text-align: center;
        }

        .comparison-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0 0 16px 0;
            color: var(--text-primary);
        }

        .comparison-vs {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--brand-gold);
            background: #fff;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-card);
            flex-shrink: 0;
            z-index: 2;
        }

        .comp-stat-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-light);
            font-size: 0.9rem;
        }

        .comp-stat-row:last-child {
            border-bottom: none;
        }

        .comp-stat-label {
            color: var(--text-muted);
        }

        .comp-stat-val {
            font-weight: 700;
            color: var(--text-primary);
        }

        /* ========== STATS BANNER ========== */
        .stats-banner {
            background: linear-gradient(135deg, var(--brand-dark) 0%, #0C3D30 50%, var(--brand-deeper) 100%);
            border-radius: var(--radius-card);
            padding: 40px 32px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
            box-shadow: var(--shadow-lg);
        }

        .stats-banner-item .big-num {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--brand-gold);
            line-height: 1;
            margin-bottom: 6px;
        }

        .stats-banner-item .big-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.75);
            font-weight: 500;
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            margin-bottom: 14px;
            overflow: hidden;
            transition: all var(--transition-fast);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-hover);
        }

        .faq-question {
            padding: 18px 22px;
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            user-select: none;
            background: #fff;
            border: none;
            width: 100%;
            text-align: left;
            font-family: var(--font-stack);
        }

        .faq-question .faq-icon {
            font-size: 0.85rem;
            color: var(--brand-accent);
            transition: transform var(--transition-fast);
            flex-shrink: 0;
        }

        .faq-answer {
            padding: 0 22px 18px;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
            display: none;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }

        /* ========== CTA BANNER ========== */
        .cta-banner-section {
            padding: 50px 0;
        }

        .cta-banner {
            background: linear-gradient(135deg, #0A4D3C 0%, #0B2B2E 100%);
            border-radius: var(--radius-card);
            padding: 44px 36px;
            text-align: center;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            opacity: 0.1;
            z-index: 0;
        }

        .cta-banner>* {
            position: relative;
            z-index: 1;
        }

        .cta-banner h2 {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            margin: 0 0 10px 0;
        }

        .cta-banner p {
            color: rgba(255, 255, 255, 0.8);
            margin: 0 0 24px 0;
            font-size: 1rem;
            max-width: 500px;
            margin: 0 auto 24px;
        }

        .btn-cta-large {
            background: var(--brand-gold);
            color: #1a1a2e;
            padding: 14px 32px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 1rem;
            box-shadow: 0 6px 20px rgba(255, 179, 0, 0.35);
            white-space: nowrap;
        }

        .btn-cta-large:hover {
            box-shadow: 0 8px 28px rgba(255, 179, 0, 0.5);
            transform: translateY(-2px);
            color: #1a1a2e;
            filter: brightness(1.08);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: linear-gradient(180deg, #0B2B2E 0%, #0A1F22 100%);
            color: #fff;
            padding: 48px 0 20px;
            margin-top: 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-col h4 {
            font-size: 1rem;
            font-weight: 700;
            margin: 0 0 14px 0;
            color: #fff;
        }

        .footer-col a {
            display: block;
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.85rem;
            padding: 5px 0;
            transition: color var(--transition-fast);
        }

        .footer-col a:hover {
            color: var(--brand-accent);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 18px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.55);
            transition: color var(--transition-fast);
        }

        .footer-bottom a:hover {
            color: var(--brand-accent);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .team-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .player-showcase-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .spotlight-grid {
                grid-template-columns: 1fr;
            }
            .spotlight-image {
                min-height: 240px;
            }
            .comparison-cards {
                grid-template-columns: 1fr;
            }
            .comparison-vs {
                margin: 8px auto;
            }
            .stats-banner {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .hero-inner {
                flex-direction: column;
                gap: 28px;
                padding: 36px 20px;
            }
            .hero-stats-panel {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
            }
            .hero-stat-card {
                min-width: 130px;
            }
            .hero-text h1 {
                font-size: 2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 68px;
                left: 0;
                right: 0;
                background: linear-gradient(180deg, #0A4D3C 0%, #0B2B2E 100%);
                flex-direction: column;
                padding: 12px 20px;
                gap: 2px;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
                z-index: 999;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links a {
                padding: 12px 16px;
                width: 100%;
                border-radius: var(--radius-sm);
            }
            .mobile-toggle {
                display: block;
            }
            .header-ctas .btn-secondary-outline {
                display: none;
            }
            .header-ctas .btn-primary-gradient {
                padding: 8px 14px;
                font-size: 0.8rem;
            }
            .team-cards-grid {
                grid-template-columns: 1fr;
            }
            .player-showcase-grid {
                grid-template-columns: 1fr;
            }
            .hero-text h1 {
                font-size: 1.7rem;
            }
            .hero-stats-panel {
                flex-direction: column;
                width: 100%;
            }
            .hero-stat-card {
                min-width: auto;
            }
            .section-header h2 {
                font-size: 1.5rem;
            }
            .stats-banner {
                grid-template-columns: 1fr 1fr;
                padding: 28px 20px;
            }
            .stats-banner-item .big-num {
                font-size: 2rem;
            }
            .cta-banner {
                padding: 30px 20px;
            }
            .cta-banner h2 {
                font-size: 1.4rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
            .comparison-cards {
                grid-template-columns: 1fr;
            }
            .spotlight-content {
                padding: 24px 20px;
            }
            .timeline-list::before {
                left: 14px;
            }
            .timeline-item {
                padding-left: 40px;
            }
            .timeline-item::before {
                left: 6px;
                width: 16px;
                height: 16px;
            }
        }

        @media (max-width: 520px) {
            body {
                padding-top: 56px;
            }
            .site-header {
                height: 56px;
            }
            .nav-links {
                top: 56px;
            }
            .logo-text {
                font-size: 1.05rem;
            }
            .logo-icon {
                width: 32px;
                height: 32px;
                font-size: 16px;
                border-radius: 8px;
            }
            .hero-text h1 {
                font-size: 1.4rem;
            }
            .hero-text .hero-subtitle {
                font-size: 0.9rem;
            }
            .hero-stats-panel {
                flex-direction: column;
            }
            .hero-stat-card {
                padding: 14px 16px;
            }
            .hero-stat-card .stat-number {
                font-size: 1.5rem;
            }
            .btn-hero-primary,
            .btn-hero-outline {
                padding: 10px 18px;
                font-size: 0.85rem;
            }
            .section-padding {
                padding: 36px 0;
            }
            .stats-banner {
                grid-template-columns: 1fr 1fr;
                padding: 20px 14px;
                gap: 10px;
            }
            .stats-banner-item .big-num {
                font-size: 1.6rem;
            }
            .stats-banner-item .big-label {
                font-size: 0.75rem;
            }
            .player-card {
                flex-direction: column;
                text-align: center;
                padding: 16px;
            }
            .container-custom {
                padding: 0 14px;
            }
        }

/* roulang page: category6 */
:root {
            --brand-dark: #0A4D3C;
            --brand-deeper: #0B2B2E;
            --brand-accent: #00C853;
            --brand-gold: #FFB300;
            --bg-page: #F5F7FA;
            --bg-white: #FFFFFF;
            --text-primary: #1a1a2e;
            --text-secondary: #4a4a5e;
            --text-muted: #7a7a8e;
            --border-light: #e8ecf1;
            --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.14);
            --radius-card: 16px;
            --radius-btn: 8px;
            --radius-badge: 20px;
            --radius-sm: 6px;
            --font-stack: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-stack);
            background: var(--bg-page);
            color: var(--text-primary);
            line-height: 1.6;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-top: 68px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: var(--brand-accent);
        }

        button,
        .btn {
            cursor: pointer;
            font-family: var(--font-stack);
            transition: all var(--transition-fast);
            border: none;
            outline: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        button:focus-visible,
        .btn:focus-visible,
        a:focus-visible {
            outline: 2px solid var(--brand-accent);
            outline-offset: 3px;
            border-radius: var(--radius-sm);
        }

        .container-custom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ========== HEADER / NAV ========== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: linear-gradient(135deg, var(--brand-dark) 0%, #0C3D30 40%, var(--brand-deeper) 100%);
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
            height: 68px;
            display: flex;
            align-items: center;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            gap: 16px;
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--brand-accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #fff;
            font-weight: 700;
            flex-shrink: 0;
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.88);
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            font-weight: 500;
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #fff;
            background: rgba(255, 255, 255, 0.12);
        }

        .nav-links a.active {
            background: rgba(255, 255, 255, 0.18);
            font-weight: 600;
        }

        .header-ctas {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .btn-secondary-outline {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.7);
            color: #fff;
            padding: 9px 18px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .btn-secondary-outline:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: #fff;
            color: #fff;
        }

        .btn-primary-gradient {
            background: linear-gradient(135deg, var(--brand-accent) 0%, #00a844 100%);
            color: #fff;
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 0.9rem;
            white-space: nowrap;
            box-shadow: 0 4px 14px rgba(0, 200, 83, 0.35);
        }

        .btn-primary-gradient:hover {
            box-shadow: 0 6px 20px rgba(0, 200, 83, 0.5);
            transform: translateY(-1px);
            color: #fff;
            filter: brightness(1.08);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 6px;
            line-height: 1;
        }

        /* ========== BREADCRUMB ========== */
        .breadcrumb-bar {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border-light);
            padding: 14px 0;
            margin-bottom: 0;
        }

        .breadcrumb-list {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
            font-size: 0.9rem;
            flex-wrap: wrap;
        }

        .breadcrumb-list li {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
        }

        .breadcrumb-list li a {
            color: var(--text-secondary);
            font-weight: 500;
        }

        .breadcrumb-list li a:hover {
            color: var(--brand-accent);
        }

        .breadcrumb-list li.current {
            color: var(--brand-dark);
            font-weight: 700;
        }

        .breadcrumb-sep {
            color: #c5c9d0;
            font-size: 0.75rem;
        }

        /* ========== PAGE BANNER ========== */
        .page-banner {
            position: relative;
            background: linear-gradient(135deg, var(--brand-dark) 0%, #0C3D30 35%, var(--brand-deeper) 100%);
            padding: 52px 0 48px;
            overflow: hidden;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            opacity: 0.22;
            z-index: 0;
        }

        .page-banner-content {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
        }

        .page-banner-text {
            flex: 1;
            min-width: 280px;
        }

        .page-banner-text h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #fff;
            margin: 0 0 12px;
            line-height: 1.25;
            letter-spacing: 0.5px;
        }

        .page-banner-text p {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.82);
            margin: 0 0 20px;
            line-height: 1.6;
            max-width: 560px;
        }

        .page-banner-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.14);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: var(--radius-badge);
            padding: 8px 16px;
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            margin-right: 12px;
            margin-bottom: 8px;
        }

        .page-banner-badge i {
            color: var(--brand-gold);
        }

        .page-banner-stats {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .banner-stat-card {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-card);
            padding: 18px 22px;
            text-align: center;
            min-width: 100px;
            backdrop-filter: blur(6px);
        }

        .banner-stat-card .stat-num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--brand-gold);
            line-height: 1;
            display: block;
        }

        .banner-stat-card .stat-label {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.75);
            margin-top: 4px;
            display: block;
        }

        /* ========== SECTION TITLES ========== */
        .section-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 8px;
            line-height: 1.3;
        }

        .section-subtitle {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin: 0 0 28px;
            line-height: 1.5;
        }

        .section-header {
            margin-bottom: 28px;
        }

        /* ========== LEAGUE FILTER TAGS ========== */
        .filter-tags-bar {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            padding: 0;
            margin: 0 0 24px;
        }

        .filter-tag {
            padding: 7px 16px;
            border-radius: var(--radius-badge);
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition-fast);
            border: 1.5px solid var(--border-light);
            background: var(--bg-white);
            color: var(--text-secondary);
            white-space: nowrap;
        }

        .filter-tag:hover {
            border-color: var(--brand-accent);
            color: var(--brand-dark);
            background: #f0faf4;
        }

        .filter-tag.active-tag {
            background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-deeper) 100%);
            color: #fff;
            border-color: transparent;
            font-weight: 600;
        }

        /* ========== CALENDAR GRID ========== */
        .calendar-section {
            background: var(--bg-white);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 24px 20px 20px;
            margin-bottom: 32px;
        }

        .calendar-month-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 18px;
            gap: 12px;
        }

        .calendar-month-nav .month-label {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .calendar-month-nav .nav-arrow {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--bg-page);
            border: 1.5px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all var(--transition-fast);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .calendar-month-nav .nav-arrow:hover {
            background: var(--brand-dark);
            color: #fff;
            border-color: var(--brand-dark);
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 4px;
            text-align: center;
        }

        .calendar-grid .day-header {
            font-weight: 700;
            font-size: 0.8rem;
            color: var(--text-muted);
            padding: 8px 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .calendar-grid .day-cell {
            aspect-ratio: 1 / 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all var(--transition-fast);
            position: relative;
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--text-primary);
            min-width: 36px;
            min-height: 36px;
        }

        .day-cell:hover {
            background: #e8f5e9;
        }

        .day-cell.has-event {
            font-weight: 700;
            color: var(--brand-dark);
        }

        .day-cell.has-event::after {
            content: '';
            position: absolute;
            bottom: 4px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--brand-accent);
        }

        .day-cell.today {
            background: var(--brand-dark);
            color: #fff;
            font-weight: 700;
            border-radius: var(--radius-sm);
        }

        .day-cell.today::after {
            background: var(--brand-gold);
            bottom: 3px;
            width: 7px;
            height: 7px;
        }

        .day-cell.selected {
            background: rgba(0, 200, 83, 0.18);
            border: 2px solid var(--brand-accent);
            font-weight: 700;
        }

        .day-cell.empty {
            cursor: default;
            color: #c5c9d0;
        }

        .day-cell.empty:hover {
            background: transparent;
        }

        /* ========== MATCH LIST ========== */
        .match-list-card {
            background: var(--bg-white);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 20px 22px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            transition: all var(--transition-smooth);
            border-left: 4px solid transparent;
            cursor: pointer;
        }

        .match-list-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
            border-left-color: var(--brand-accent);
        }

        .match-time-badge {
            background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-deeper) 100%);
            color: #fff;
            border-radius: var(--radius-badge);
            padding: 6px 14px;
            font-weight: 700;
            font-size: 0.85rem;
            white-space: nowrap;
            min-width: 72px;
            text-align: center;
        }

        .match-league-tag {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            white-space: nowrap;
        }

        .match-teams {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--text-primary);
            flex: 1;
            min-width: 160px;
        }

        .match-teams .vs {
            color: var(--brand-accent);
            margin: 0 8px;
            font-weight: 800;
        }

        .match-status {
            padding: 5px 12px;
            border-radius: var(--radius-badge);
            font-size: 0.78rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .match-status.upcoming {
            background: #fff8e1;
            color: #e67e00;
        }

        .match-status.live {
            background: #e8f5e9;
            color: #1b7a2d;
            animation: pulse-dot 1.5s infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        .match-status.finished {
            background: #f5f5f5;
            color: #888;
        }

        .match-reminder-btn {
            background: transparent;
            border: 1.5px solid var(--border-light);
            color: var(--text-secondary);
            padding: 7px 14px;
            border-radius: var(--radius-btn);
            font-size: 0.8rem;
            font-weight: 500;
            white-space: nowrap;
            cursor: pointer;
            transition: all var(--transition-fast);
        }

        .match-reminder-btn:hover {
            border-color: var(--brand-accent);
            color: var(--brand-dark);
            background: #f0faf4;
        }

        .match-reminder-btn i {
            color: var(--brand-gold);
            font-size: 0.85rem;
        }

        /* ========== UPCOMING CARDS GRID ========== */
        .upcoming-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 18px;
            margin-bottom: 28px;
        }

        .upcoming-match-card {
            background: var(--bg-white);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }

        .upcoming-match-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        .upcoming-card-img {
            height: 140px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .upcoming-card-img .overlay-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 4px 10px;
            border-radius: var(--radius-sm);
            font-size: 0.75rem;
            font-weight: 600;
        }

        .upcoming-card-body {
            padding: 16px 18px;
        }

        .upcoming-card-body .match-date {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 4px;
        }

        .upcoming-card-body .match-title {
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-primary);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .upcoming-card-body .match-info-row {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.8rem;
            color: var(--text-secondary);
            flex-wrap: wrap;
        }

        /* ========== CTA BANNER ========== */
        .cta-inline-banner {
            background: linear-gradient(135deg, var(--brand-dark) 0%, #0C3D30 50%, var(--brand-deeper) 100%);
            border-radius: var(--radius-card);
            padding: 36px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            margin: 32px 0;
            box-shadow: var(--shadow-lg);
        }

        .cta-inline-banner .cta-text {
            flex: 1;
            min-width: 240px;
        }

        .cta-inline-banner .cta-text h3 {
            color: #fff;
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0 0 6px;
        }

        .cta-inline-banner .cta-text p {
            color: rgba(255, 255, 255, 0.78);
            margin: 0;
            font-size: 0.9rem;
        }

        .cta-inline-banner .btn-large {
            padding: 14px 28px;
            font-size: 1rem;
            font-weight: 700;
            border-radius: var(--radius-btn);
            white-space: nowrap;
        }

        .btn-gold-gradient {
            background: linear-gradient(135deg, var(--brand-gold) 0%, #e6a200 100%);
            color: #1a1a2e;
            box-shadow: 0 4px 16px rgba(255, 179, 0, 0.4);
        }

        .btn-gold-gradient:hover {
            box-shadow: 0 6px 22px rgba(255, 179, 0, 0.55);
            transform: translateY(-1px);
            color: #1a1a2e;
            filter: brightness(1.06);
        }

        /* ========== PAGINATION ========== */
        .pagination-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            flex-wrap: wrap;
            padding: 20px 0 10px;
        }

        .page-btn {
            width: 38px;
            height: 38px;
            border-radius: var(--radius-sm);
            border: 1.5px solid var(--border-light);
            background: var(--bg-white);
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all var(--transition-fast);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .page-btn:hover {
            border-color: var(--brand-accent);
            color: var(--brand-dark);
            background: #f0faf4;
        }

        .page-btn.active-page {
            background: var(--brand-dark);
            color: #fff;
            border-color: var(--brand-dark);
            font-weight: 700;
        }

        .page-btn.disabled {
            opacity: 0.4;
            pointer-events: none;
        }

        /* ========== SIDEBAR ========== */
        .sidebar-card {
            background: var(--bg-white);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 20px 18px;
            margin-bottom: 20px;
        }

        .sidebar-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 14px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-light);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sidebar-card h4 i {
            color: var(--brand-accent);
        }

        .sidebar-event-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-light);
            transition: all var(--transition-fast);
            cursor: pointer;
        }

        .sidebar-event-item:last-child {
            border-bottom: none;
        }

        .sidebar-event-item:hover {
            padding-left: 6px;
            color: var(--brand-dark);
        }

        .sidebar-event-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--brand-accent);
            flex-shrink: 0;
        }

        .sidebar-event-info {
            flex: 1;
            min-width: 0;
        }

        .sidebar-event-info .event-teams {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .sidebar-event-info .event-time {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: linear-gradient(180deg, #0B2B2E 0%, #091f22 100%);
            color: #fff;
            padding: 48px 0 0;
            margin-top: 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            padding-bottom: 32px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

        .footer-col h4 {
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            margin: 0 0 14px;
            letter-spacing: 0.3px;
        }

        .footer-col a {
            display: block;
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.85rem;
            padding: 5px 0;
            transition: all var(--transition-fast);
        }

        .footer-col a:hover {
            color: var(--brand-accent);
            padding-left: 4px;
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            padding: 20px 0;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.8rem;
        }

        .footer-bottom a:hover {
            color: var(--brand-accent);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .page-banner-content {
                flex-direction: column;
                text-align: center;
            }

            .page-banner-text h1 {
                font-size: 1.9rem;
            }

            .page-banner-stats {
                justify-content: center;
            }

            .banner-stat-card {
                min-width: 80px;
                padding: 14px 16px;
            }

            .banner-stat-card .stat-num {
                font-size: 1.5rem;
            }

            .calendar-grid .day-cell {
                font-size: 0.78rem;
                min-width: 28px;
                min-height: 28px;
            }

            .match-list-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .upcoming-grid {
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            }

            .cta-inline-banner {
                flex-direction: column;
                text-align: center;
                padding: 28px 20px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 68px;
                left: 0;
                right: 0;
                background: var(--brand-deeper);
                flex-direction: column;
                padding: 16px;
                gap: 4px;
                z-index: 999;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-links.show {
                display: flex;
            }

            .nav-links a {
                width: 100%;
                text-align: center;
                padding: 12px 14px;
                font-size: 1rem;
            }

            .mobile-toggle {
                display: block;
            }

            .header-ctas {
                gap: 6px;
            }

            .btn-secondary-outline {
                padding: 7px 12px;
                font-size: 0.78rem;
            }

            .btn-primary-gradient {
                padding: 8px 14px;
                font-size: 0.78rem;
            }

            .page-banner-text h1 {
                font-size: 1.6rem;
            }

            .calendar-grid {
                gap: 2px;
            }

            .calendar-grid .day-cell {
                font-size: 0.7rem;
                min-width: 24px;
                min-height: 24px;
                border-radius: 4px;
            }

            .calendar-grid .day-header {
                font-size: 0.65rem;
                padding: 4px 2px;
            }

            .day-cell.has-event::after {
                width: 4px;
                height: 4px;
                bottom: 2px;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 6px;
            }

            body {
                padding-top: 56px;
            }

            .site-header {
                height: 56px;
            }

            .logo-icon {
                width: 32px;
                height: 32px;
                font-size: 16px;
                border-radius: 8px;
            }

            .logo-text {
                font-size: 1.05rem;
            }

            .banner-stat-card {
                min-width: 70px;
                padding: 10px 12px;
            }

            .banner-stat-card .stat-num {
                font-size: 1.2rem;
            }

            .banner-stat-card .stat-label {
                font-size: 0.7rem;
            }
        }

        @media (max-width: 520px) {
            .container-custom {
                padding: 0 10px;
            }

            .page-banner {
                padding: 32px 0 28px;
            }

            .page-banner-text h1 {
                font-size: 1.35rem;
            }

            .page-banner-text p {
                font-size: 0.85rem;
            }

            .calendar-section {
                padding: 14px 10px 12px;
            }

            .calendar-grid .day-cell {
                font-size: 0.65rem;
                min-width: 20px;
                min-height: 20px;
                border-radius: 3px;
            }

            .calendar-grid .day-header {
                font-size: 0.6rem;
            }

            .match-list-card {
                padding: 14px 12px;
                gap: 8px;
            }

            .match-teams {
                font-size: 0.9rem;
            }

            .upcoming-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .filter-tag {
                padding: 5px 10px;
                font-size: 0.75rem;
            }

            .cta-inline-banner {
                padding: 20px 16px;
                border-radius: 12px;
            }

            .cta-inline-banner .cta-text h3 {
                font-size: 1.1rem;
            }

            .btn-large {
                padding: 10px 20px;
                font-size: 0.85rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }
