/* roulang page: index */
:root {
            --primary: #1466B8;
            --primary-hover: #0C4F9E;
            --secondary: #0FA3A3;
            --secondary-hover: #0E8C8C;
            --accent: #F06A3A;
            --bg: #F5F8FC;
            --bg-alt: #F7FAFD;
            --card: #FFFFFF;
            --border: #E1E9F2;
            --border-light: #E4EDF8;
            --input-border: #D1DCE8;
            --text-dark: #14243D;
            --text-body: #2A3B52;
            --text-secondary: #5A6B7E;
            --text-muted: #8295AB;
            --shadow-sm: 0 6px 18px rgba(20, 36, 61, 0.06);
            --shadow-md: 0 10px 28px rgba(20, 36, 61, 0.12);
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-tag: 20px;
            --radius-input: 8px;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            --font-num: 'DIN', 'Inter', 'Roboto', 'PingFang SC', sans-serif;
            --max-width: 1200px;
            --nav-height: 68px;
            --section-gap: 72px;
            --transition: 0.2s ease;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-body);
            background-color: var(--bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border: 0;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--secondary);
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        button,
        input,
        textarea,
        select {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }
        button:focus-visible,
        a:focus-visible,
        input:focus-visible,
        textarea:focus-visible {
            outline: 2px solid var(--secondary);
            outline-offset: 2px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-sans);
            color: var(--text-dark);
            line-height: 1.35;
            font-weight: 700;
            margin: 0 0 12px;
        }
        h1 {
            font-size: 42px;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 28px;
            letter-spacing: -0.3px;
        }
        h3 {
            font-size: 20px;
        }
        p {
            margin-bottom: 16px;
        }
        .container-main {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-gap {
            padding: var(--section-gap) 0;
        }
        .section-gap-sm {
            padding: 48px 0;
        }
        .text-center {
            text-align: center;
        }
        .text-primary {
            color: var(--primary);
        }
        .text-secondary {
            color: var(--secondary);
        }
        .text-muted {
            color: var(--text-muted);
        }
        .font-num {
            font-family: var(--font-num);
            letter-spacing: 0.5px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Header & Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: #FFFFFF;
            border-bottom: 1px solid rgba(20, 36, 61, 0.08);
            height: var(--nav-height);
            display: flex;
            align-items: center;
        }
        .site-header .container-main {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 22px;
            color: var(--text-dark);
            text-decoration: none;
            letter-spacing: -0.3px;
            flex-shrink: 0;
        }
        .nav-logo:hover {
            color: var(--primary);
            text-decoration: none;
        }
        .nav-logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            flex-shrink: 0;
        }
        .nav-logo-sub {
            font-size: 16px;
            font-weight: 600;
            background: var(--bg-alt);
            border-radius: 20px;
            padding: 4px 12px;
            color: var(--primary);
            margin-left: 6px;
            letter-spacing: 0;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-menu>li {
            position: relative;
            margin: 0 4px;
        }
        .nav-menu a {
            display: block;
            padding: 8px 14px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-body);
            text-decoration: none;
            border-radius: 6px;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .nav-menu a:hover {
            color: var(--primary);
            background: #F0F6FD;
            text-decoration: none;
        }
        .nav-menu a.active {
            color: var(--primary);
            background: #F0F6FD;
            font-weight: 600;
        }
        .nav-menu a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 14px;
            right: 14px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px 2px 0 0;
        }
        .nav-cta {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-cta .btn-sm {
            padding: 7px 16px;
            font-size: 14px;
            border-radius: var(--radius-btn);
            font-weight: 500;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }
        .nav-cta .btn-primary-sm {
            background: var(--primary);
            color: #fff;
        }
        .nav-cta .btn-primary-sm:hover {
            background: var(--primary-hover);
            color: #fff;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-dark);
            cursor: pointer;
            padding: 6px 10px;
            border-radius: 6px;
        }
        .nav-toggle:hover {
            background: #F0F6FD;
            color: var(--primary);
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            font-size: 16px;
            font-weight: 600;
            border-radius: var(--radius-btn);
            border: 2px solid transparent;
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
            line-height: 1.4;
        }
        .btn:focus-visible {
            outline: 2px solid var(--secondary);
            outline-offset: 2px;
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
        .btn-primary:hover {
            background: var(--primary-hover);
            border-color: var(--primary-hover);
            color: #fff;
            text-decoration: none;
            box-shadow: 0 6px 18px rgba(20, 102, 184, 0.28);
        }
        .btn-secondary-outline {
            background: transparent;
            color: var(--primary);
            border-color: var(--primary);
        }
        .btn-secondary-outline:hover {
            background: #E9F1FA;
            color: var(--primary);
            border-color: var(--primary);
            text-decoration: none;
        }
        .btn-accent {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
        }
        .btn-accent:hover {
            background: #d94f1f;
            border-color: #d94f1f;
            color: #fff;
            text-decoration: none;
        }
        .btn-sm {
            padding: 7px 16px;
            font-size: 14px;
            border-radius: var(--radius-btn);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
        }
        .btn-sm.btn-primary {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
        .btn-sm.btn-primary:hover {
            background: var(--primary-hover);
            text-decoration: none;
            color: #fff;
        }
        .btn-sm.btn-outline {
            background: transparent;
            color: var(--primary);
            border-color: var(--input-border);
        }
        .btn-sm.btn-outline:hover {
            background: #E9F1FA;
            border-color: var(--primary);
            text-decoration: none;
            color: var(--primary);
        }
        .btn-sm.btn-text {
            background: none;
            color: var(--primary);
            border: none;
            padding: 4px 0;
            font-weight: 600;
        }
        .btn-sm.btn-text:hover {
            color: var(--secondary);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        /* Badge & Tag */
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            font-size: 12px;
            font-weight: 600;
            border-radius: var(--radius-tag);
            letter-spacing: 0.3px;
            line-height: 1.5;
            white-space: nowrap;
        }
        .badge-live {
            background: rgba(240, 106, 58, 0.12);
            color: var(--accent);
        }
        .badge-live .dot {
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse-dot 1.4s ease-in-out infinite;
            display: inline-block;
        }
        .badge-secondary {
            background: rgba(15, 163, 163, 0.12);
            color: var(--secondary);
        }
        .badge-primary {
            background: rgba(20, 102, 184, 0.1);
            color: var(--primary);
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(0.8);
            }
        }

        /* Cards */
        .card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-sm);
            padding: 24px;
            transition: all var(--transition);
        }
        .card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            border-color: var(--border-light);
        }
        .card-flat {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 20px;
        }
        .card-highlight {
            border: 2px solid var(--primary);
            box-shadow: 0 8px 26px rgba(20, 102, 184, 0.18);
            background: linear-gradient(135deg, #FFFFFF 55%, #F0F6FD 100%);
        }

        /* Hero */
        .hero-section {
            background-image: linear-gradient(180deg, rgba(245, 248, 252, 0.92) 0%, rgba(245, 248, 252, 0.7) 50%, rgba(245, 248, 252, 0.95) 100%), url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 64px 0 48px;
            border-bottom: 1px solid var(--border-light);
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .hero-title {
            font-size: 42px;
            font-weight: 700;
            letter-spacing: -0.5px;
            line-height: 1.3;
            margin-bottom: 18px;
            color: var(--text-dark);
        }
        .hero-title .highlight {
            color: var(--primary);
        }
        .hero-desc {
            font-size: 17px;
            line-height: 1.85;
            color: var(--text-body);
            margin-bottom: 24px;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 20px;
        }
        .hero-tip {
            font-size: 14px;
            color: var(--text-secondary);
            padding: 10px 14px;
            background: rgba(255, 255, 255, 0.75);
            border-radius: 8px;
            border-left: 3px solid var(--secondary);
            display: inline-block;
        }
        .hero-cta-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-md);
            padding: 28px 24px;
            position: relative;
        }
        .hero-cta-card .rec-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background: var(--primary);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 20px;
            letter-spacing: 0.5px;
        }
        .hero-cta-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .hero-cta-card .price-line {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            font-family: var(--font-num);
            margin-bottom: 6px;
        }
        .hero-cta-card .price-line .unit {
            font-size: 14px;
            font-weight: 400;
            color: var(--text-secondary);
        }
        .hero-cta-card ul {
            list-style: none;
            padding: 0;
            margin: 16px 0 20px;
        }
        .hero-cta-card ul li {
            padding: 6px 0;
            font-size: 14px;
            color: var(--text-body);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .hero-cta-card ul li i {
            color: var(--secondary);
            font-size: 14px;
            width: 18px;
            text-align: center;
        }

        /* Trust bar */
        .trust-bar {
            background: var(--card);
            border-bottom: 1px solid var(--border);
            padding: 20px 0;
        }
        .trust-bar-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
        }
        .trust-item .trust-num {
            font-size: 32px;
            font-weight: 700;
            font-family: var(--font-num);
            color: var(--primary);
            letter-spacing: 0.5px;
        }
        .trust-item .trust-label {
            font-size: 14px;
            color: var(--text-secondary);
            margin-top: 2px;
        }

        /* Feature section — asymmetric grid */
        .feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }
        .feature-main-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-sm);
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: all var(--transition);
        }
        .feature-main-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .feature-main-card .icon-lg {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            background: rgba(20, 102, 184, 0.1);
            color: var(--primary);
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }
        .feature-main-card h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }
        .feature-main-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
        }
        .feature-side-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .feature-side-item {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 18px 16px;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .feature-side-item:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .feature-side-item .icon-sm {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            flex-shrink: 0;
        }
        .feature-side-item h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
        }
        .feature-side-item p {
            font-size: 13px;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.6;
        }
        .icon-blue {
            background: var(--primary);
        }
        .icon-teal {
            background: var(--secondary);
        }
        .icon-orange {
            background: var(--accent);
        }
        .icon-slate {
            background: var(--text-secondary);
        }

        /* Brand intro */
        .brand-intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .brand-intro-text h2 {
            margin-bottom: 16px;
        }
        .brand-intro-text p {
            color: var(--text-body);
            line-height: 1.85;
            margin-bottom: 12px;
        }
        .brand-intro-img {
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }
        .brand-intro-img img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        /* Use scenarios */
        .scenario-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .scenario-item {
            display: grid;
            grid-template-columns: 56px 1fr;
            gap: 18px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 20px 22px;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            align-items: start;
        }
        .scenario-item:hover {
            box-shadow: var(--shadow-md);
        }
        .scenario-num {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--bg-alt);
            border: 2px solid var(--primary);
            color: var(--primary);
            font-size: 22px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-num);
        }
        .scenario-item h3 {
            font-size: 18px;
            margin-bottom: 6px;
        }
        .scenario-item p {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.7;
        }
        .scenario-item .scenario-audience {
            display: inline-block;
            margin-top: 8px;
            font-size: 12px;
            color: var(--text-muted);
            background: var(--bg-alt);
            padding: 2px 10px;
            border-radius: 20px;
        }

        /* Long-form content */
        .longform-wrapper {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 36px 32px;
            box-shadow: var(--shadow-sm);
        }
        .longform-wrapper h2 {
            font-size: 24px;
            margin-bottom: 20px;
        }
        .longform-wrapper h3 {
            font-size: 19px;
            margin-top: 24px;
            margin-bottom: 12px;
            color: var(--primary);
        }
        .longform-wrapper p {
            font-size: 15px;
            line-height: 1.9;
            color: var(--text-body);
            margin-bottom: 16px;
        }
        .longform-wrapper .inline-stat {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-alt);
            border-radius: 8px;
            padding: 6px 14px;
            font-family: var(--font-num);
            font-weight: 600;
            color: var(--primary);
            font-size: 15px;
            border: 1px solid var(--border-light);
            margin: 0 4px;
        }

        /* News section */
        .news-layout {
            display: grid;
            grid-template-columns: 1.8fr 1fr;
            gap: 28px;
        }
        .news-main-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .news-item {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 18px 20px;
            box-shadow: var(--shadow-sm);
            display: grid;
            grid-template-columns: 80px 1fr auto;
            gap: 18px;
            align-items: center;
            transition: all var(--transition);
        }
        .news-item:hover {
            box-shadow: var(--shadow-md);
        }
        .news-date {
            width: 80px;
            height: 80px;
            background: var(--bg-alt);
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-family: var(--font-num);
            color: var(--primary);
            border: 1px solid var(--border-light);
        }
        .news-date .day {
            font-size: 28px;
            font-weight: 700;
            line-height: 1;
        }
        .news-date .month {
            font-size: 13px;
            color: var(--text-secondary);
        }
        .news-item h3 {
            font-size: 17px;
            margin: 0 0 4px;
        }
        .news-item h3 a {
            color: var(--text-dark);
            text-decoration: none;
        }
        .news-item h3 a:hover {
            color: var(--primary);
        }
        .news-item .news-summary {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.6;
        }
        .news-sidebar {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .news-sidebar-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 20px;
            box-shadow: var(--shadow-sm);
        }
        .news-sidebar-card h3 {
            font-size: 17px;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--border-light);
        }
        .hot-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .hot-list li {
            padding: 8px 0;
            border-bottom: 1px dashed var(--border-light);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .hot-list li:last-child {
            border-bottom: none;
        }
        .hot-list li .rank {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--bg-alt);
            color: var(--primary);
            font-size: 12px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-family: var(--font-num);
        }
        .hot-list li a {
            color: var(--text-body);
            text-decoration: none;
            font-weight: 500;
        }
        .hot-list li a:hover {
            color: var(--primary);
        }

        /* Success cases */
        .case-scroll {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding-bottom: 16px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }
        .case-scroll::-webkit-scrollbar {
            height: 6px;
        }
        .case-scroll::-webkit-scrollbar-track {
            background: var(--border-light);
            border-radius: 10px;
        }
        .case-scroll::-webkit-scrollbar-thumb {
            background: var(--input-border);
            border-radius: 10px;
        }
        .case-card {
            min-width: 320px;
            max-width: 360px;
            flex: 0 0 auto;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 22px;
            box-shadow: var(--shadow-sm);
            scroll-snap-align: start;
            transition: all var(--transition);
        }
        .case-card:hover {
            box-shadow: var(--shadow-md);
        }
        .case-card .case-match {
            font-family: var(--font-num);
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 8px;
        }
        .case-card h4 {
            font-size: 17px;
            margin-bottom: 8px;
        }
        .case-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.65;
            margin: 0 0 10px;
        }
        .case-card .case-data {
            display: flex;
            gap: 16px;
            font-size: 13px;
            color: var(--text-muted);
            font-family: var(--font-num);
        }
        .case-card .case-data span {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* Price section — comparison table */
        .price-compare {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        .price-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }
        .price-table th,
        .price-table td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid var(--border-light);
        }
        .price-table thead th {
            background: var(--bg-alt);
            font-weight: 700;
            color: var(--text-dark);
            font-size: 15px;
            border-bottom: 2px solid var(--border);
        }
        .price-table tbody tr:last-child td {
            border-bottom: none;
        }
        .price-table .plan-name {
            font-weight: 700;
            font-size: 16px;
            color: var(--text-dark);
        }
        .price-table .plan-price {
            font-family: var(--font-num);
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
        }
        .price-table .plan-price.free {
            color: var(--secondary);
        }
        .price-table .highlight-col {
            background: #F0F6FD;
            border-left: 3px solid var(--primary);
        }
        .price-table .highlight-col .plan-name {
            color: var(--primary);
        }
        .price-table .tag-rec {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            color: #fff;
            background: var(--primary);
            padding: 2px 8px;
            border-radius: 10px;
            margin-left: 6px;
            letter-spacing: 0.5px;
        }

        /* Changelog */
        .changelog-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .changelog-item {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 18px 20px;
            box-shadow: var(--shadow-sm);
            display: grid;
            grid-template-columns: 70px 1fr;
            gap: 16px;
        }
        .changelog-version {
            font-family: var(--font-num);
            font-weight: 700;
            color: var(--primary);
            font-size: 15px;
            background: var(--bg-alt);
            border-radius: 8px;
            padding: 8px 10px;
            text-align: center;
            align-self: start;
        }
        .changelog-item h4 {
            font-size: 16px;
            margin-bottom: 4px;
        }
        .changelog-item p {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.65;
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }
        .faq-item:hover {
            border-color: var(--input-border);
        }
        .faq-question {
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            padding: 18px 20px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            transition: all var(--transition);
            font-family: var(--font-sans);
        }
        .faq-question:hover {
            color: var(--primary);
        }
        .faq-question .faq-icon {
            font-size: 14px;
            color: var(--text-muted);
            transition: transform var(--transition);
            flex-shrink: 0;
        }
        .faq-item.open .faq-question .faq-icon {
            transform: rotate(180deg);
            color: var(--primary);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 20px;
            border-left: 3px solid transparent;
        }
        .faq-item.open .faq-answer {
            max-height: 500px;
            padding: 0 20px 18px;
            border-left-color: var(--primary);
        }
        .faq-answer p {
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.8;
            margin: 0;
        }

        /* Bottom CTA */
        .bottom-cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 60%, var(--secondary) 100%);
            border-radius: var(--radius-card);
            padding: 48px 40px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .bottom-cta::after {
            content: '';
            position: absolute;
            top: -60%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 50%;
            pointer-events: none;
        }
        .bottom-cta h2 {
            color: #fff;
            font-size: 28px;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }
        .bottom-cta p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 16px;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
            max-width: 600px;
        }
        .cta-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            position: relative;
            z-index: 1;
        }
        .cta-form input {
            flex: 1 1 260px;
            padding: 12px 16px;
            border-radius: var(--radius-input);
            border: 1px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            font-size: 15px;
            backdrop-filter: blur(4px);
            transition: all var(--transition);
        }
        .cta-form input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        .cta-form input:focus {
            outline: 2px solid var(--secondary);
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
        }
        .cta-form .btn {
            background: #fff;
            color: var(--primary);
            border-color: #fff;
            font-weight: 700;
        }
        .cta-form .btn:hover {
            background: var(--bg-alt);
            border-color: var(--bg-alt);
            color: var(--primary-hover);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        .site-footer {
            background: #FFFFFF;
            border-top: 1px solid var(--border);
            padding: 48px 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 30px;
            padding-bottom: 32px;
        }
        .footer-brand p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 12px;
        }
        .footer-brand .footer-logo {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-col h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--text-dark);
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            font-size: 14px;
            color: var(--text-secondary);
            text-decoration: none;
            transition: color var(--transition);
        }
        .footer-col ul li a:hover {
            color: var(--primary);
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .footer-bottom {
            background: var(--bg-alt);
            padding: 16px 0;
            font-size: 13px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-light);
        }
        .footer-bottom .container-main {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
        }
        .footer-bottom a {
            color: var(--text-secondary);
            font-size: 13px;
        }
        .footer-bottom a:hover {
            color: var(--primary);
        }

        /* Section headers */
        .section-header {
            margin-bottom: 28px;
        }
        .section-header .section-tag {
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 8px;
            display: block;
        }
        .section-header h2 {
            font-size: 28px;
            margin-bottom: 10px;
        }
        .section-header p {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 640px;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .brand-intro-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .news-layout {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .trust-bar-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }
        @media (max-width: 768px) {
            :root {
                --nav-height: 60px;
                --section-gap: 48px;
            }
            .nav-menu {
                position: fixed;
                top: var(--nav-height);
                left: 0;
                right: 0;
                background: #FFFFFF;
                flex-direction: column;
                align-items: stretch;
                padding: 16px 20px;
                gap: 4px;
                box-shadow: 0 20px 30px rgba(20, 36, 61, 0.1);
                border-bottom: 2px solid var(--border);
                display: none;
                max-height: 80vh;
                overflow-y: auto;
                z-index: 99;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 12px 14px;
                font-size: 16px;
                border-radius: 8px;
            }
            .nav-menu a.active::after {
                display: none;
            }
            .nav-menu a.active {
                border-left: 3px solid var(--primary);
                background: #F0F6FD;
                border-radius: 0 8px 8px 0;
            }
            .nav-cta {
                display: none;
            }
            .nav-toggle {
                display: block;
            }
            h1 {
                font-size: 30px;
            }
            h2 {
                font-size: 24px;
            }
            .hero-title {
                font-size: 30px;
            }
            .hero-section {
                padding: 40px 0 32px;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .feature-side-grid {
                grid-template-columns: 1fr;
            }
            .trust-bar-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
            .news-item {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .news-date {
                width: 60px;
                height: 60px;
            }
            .news-date .day {
                font-size: 22px;
            }
            .price-table {
                font-size: 12px;
            }
            .price-table th,
            .price-table td {
                padding: 10px 12px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-bottom .container-main {
                flex-direction: column;
                text-align: center;
            }
            .bottom-cta {
                padding: 32px 22px;
            }
            .cta-form {
                flex-direction: column;
            }
            .cta-form input {
                width: 100%;
                flex: none;
            }
            .changelog-item {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            .scenario-item {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .scenario-num {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }
        @media (max-width: 520px) {
            h1 {
                font-size: 26px;
            }
            h2 {
                font-size: 21px;
            }
            .hero-title {
                font-size: 26px;
            }
            .section-gap {
                padding: 32px 0;
            }
            .container-main {
                padding: 0 16px;
            }
            .trust-bar-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .trust-item .trust-num {
                font-size: 24px;
            }
            .hero-cta-card {
                padding: 20px 16px;
            }
            .hero-cta-card .price-line {
                font-size: 26px;
            }
            .btn {
                padding: 10px 18px;
                font-size: 14px;
            }
            .longform-wrapper {
                padding: 24px 18px;
            }
            .case-card {
                min-width: 280px;
                max-width: 300px;
            }
        }

/* roulang page: category1 */
:root {
      --primary: #1466B8;
      --primary-hover: #0C4F9E;
      --secondary: #0FA3A3;
      --secondary-hover: #0E8C8C;
      --accent: #F06A3A;
      --bg: #F5F8FC;
      --bg-alt: #F7FAFD;
      --card: #FFFFFF;
      --border: #E1E9F2;
      --border-light: #E4EDF8;
      --input-border: #D1DCE8;
      --text-dark: #14243D;
      --text-body: #2A3B52;
      --text-secondary: #5A6B7E;
      --text-muted: #8295AB;
      --shadow-sm: 0 6px 18px rgba(20, 36, 61, 0.06);
      --shadow-md: 0 10px 28px rgba(20, 36, 61, 0.12);
      --radius-card: 12px;
      --radius-btn: 8px;
      --radius-tag: 20px;
      --radius-input: 8px;
      --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
      --font-num: 'DIN', 'Inter', 'Roboto', 'PingFang SC', sans-serif;
      --max-width: 1200px;
      --nav-height: 68px;
      --section-gap: 72px;
      --transition: 0.2s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: var(--font-sans);
      font-size: 16px;
      line-height: 1.75;
      color: var(--text-body);
      background-color: var(--bg);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      margin: 0;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
      border: 0;
    }

    a {
      color: var(--primary);
      text-decoration: none;
      transition: color var(--transition);
    }

    a:hover {
      color: var(--secondary);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    button,
    input,
    textarea,
    select {
      font-family: inherit;
      font-size: inherit;
      line-height: inherit;
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    textarea:focus-visible {
      outline: 2px solid var(--secondary);
      outline-offset: 2px;
    }

    .container-main {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }

    .section-gap {
      padding: var(--section-gap) 0;
    }

    .section-gap-sm {
      padding: 48px 0;
    }

    .text-center {
      text-align: center;
    }

    .text-primary {
      color: var(--primary);
    }

    .text-secondary {
      color: var(--secondary);
    }

    .text-muted {
      color: var(--text-muted);
    }

    /* Header & Navigation */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: #FFFFFF;
      border-bottom: 1px solid rgba(20, 36, 61, 0.08);
      height: var(--nav-height);
      display: flex;
      align-items: center;
    }

    .site-header .container-main {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 22px;
      color: var(--text-dark);
      text-decoration: none;
      letter-spacing: -0.3px;
      flex-shrink: 0;
    }

    .nav-logo:hover {
      color: var(--primary);
      text-decoration: none;
    }

    .nav-logo-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .nav-logo-sub {
      font-size: 16px;
      font-weight: 600;
      background: var(--bg-alt);
      border-radius: 20px;
      padding: 4px 12px;
      color: var(--primary);
      margin-left: 6px;
      letter-spacing: 0;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-menu>li {
      position: relative;
      margin: 0 4px;
    }

    .nav-menu a {
      display: block;
      padding: 8px 14px;
      font-size: 15px;
      font-weight: 500;
      color: var(--text-body);
      text-decoration: none;
      border-radius: 6px;
      transition: all var(--transition);
      white-space: nowrap;
    }

    .nav-menu a:hover {
      color: var(--primary);
      background: #F0F6FD;
      text-decoration: none;
    }

    .nav-menu a.active {
      color: var(--primary);
      background: #F0F6FD;
      font-weight: 600;
    }

    .nav-menu a.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 14px;
      right: 14px;
      height: 3px;
      background: var(--primary);
      border-radius: 2px 2px 0 0;
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-cta .btn-sm {
      padding: 7px 16px;
      font-size: 14px;
      border-radius: var(--radius-btn);
      font-weight: 500;
      border: 1px solid transparent;
      cursor: pointer;
      transition: all var(--transition);
    }

    .btn-primary {
      background: var(--primary);
      color: #fff;
      border: 1px solid var(--primary);
    }

    .btn-primary:hover {
      background: var(--primary-hover);
      border-color: var(--primary-hover);
      color: #fff;
      text-decoration: none;
    }

    .btn-secondary {
      background: transparent;
      color: var(--primary);
      border: 1px solid var(--primary);
    }

    .btn-secondary:hover {
      background: #E9F1FA;
      color: var(--primary-hover);
      text-decoration: none;
    }

    .btn-outline {
      background: transparent;
      color: var(--primary);
      border: 1px solid var(--primary);
    }

    .btn-outline:hover {
      background: #E9F1FA;
      color: var(--primary-hover);
      text-decoration: none;
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 20px;
      color: var(--text-dark);
      cursor: pointer;
      padding: 8px;
    }

    /* Hero */
    .hero-basketball {
      position: relative;
      background-image: url('/assets/images/backpic/back-1.webp');
      background-size: cover;
      background-position: center;
      min-height: 420px;
      display: flex;
      align-items: center;
      color: #fff;
      overflow: hidden;
    }

    .hero-basketball::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(20, 36, 61, 0.82) 0%, rgba(20, 102, 184, 0.62) 55%, rgba(255, 255, 255, 0.15) 100%);
      z-index: 1;
    }

    .hero-basketball .container-main {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }

    .hero-text {
      max-width: 620px;
    }

    .hero-text h1 {
      font-size: 42px;
      line-height: 1.25;
      font-weight: 700;
      color: #fff;
      margin: 0 0 16px;
      letter-spacing: -0.5px;
    }

    .hero-text p {
      font-size: 18px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 24px;
      max-width: 580px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-actions .btn-white {
      background: #fff;
      color: var(--primary);
      border: 1px solid #fff;
      padding: 10px 22px;
      border-radius: var(--radius-btn);
      font-weight: 600;
      font-size: 16px;
      cursor: pointer;
      transition: all var(--transition);
    }

    .hero-actions .btn-white:hover {
      background: #F0F6FD;
      color: var(--primary-hover);
      text-decoration: none;
    }

    .hero-actions .btn-outline-white {
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.8);
      padding: 10px 22px;
      border-radius: var(--radius-btn);
      font-weight: 600;
      font-size: 16px;
      cursor: pointer;
      transition: all var(--transition);
    }

    .hero-actions .btn-outline-white:hover {
      background: rgba(255, 255, 255, 0.15);
      text-decoration: none;
      color: #fff;
    }

    .hero-stats {
      display: flex;
      gap: 30px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(8px);
      border-radius: var(--radius-card);
      padding: 20px 28px;
      border: 1px solid rgba(255, 255, 255, 0.25);
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-family: var(--font-num);
      font-size: 28px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.5px;
    }

    .stat-label {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.8);
    }

    /* Section titles */
    .section-title {
      font-size: 28px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 12px;
      letter-spacing: -0.3px;
    }

    .section-subtitle {
      font-size: 16px;
      color: var(--text-secondary);
      margin-bottom: 32px;
      max-width: 700px;
    }

    /* Filter bar */
    .filter-bar {
      background: var(--card);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-sm);
      padding: 18px 20px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      margin-bottom: 32px;
      border: 1px solid var(--border);
    }

    .filter-group {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .filter-group label {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-secondary);
      white-space: nowrap;
    }

    .filter-group select,
    .filter-group input {
      border: 1px solid var(--input-border);
      border-radius: var(--radius-input);
      padding: 6px 12px;
      font-size: 14px;
      color: var(--text-body);
      background: #fff;
      min-width: 140px;
    }

    .filter-group select:focus,
    .filter-group input:focus {
      outline: 2px solid var(--secondary);
      outline-offset: 0;
    }

    /* Live list cards */
    .live-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .live-card {
      background: var(--card);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border);
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      transition: all var(--transition);
    }

    .live-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }

    .live-match-info {
      display: flex;
      align-items: center;
      gap: 18px;
      flex: 2;
    }

    .live-league {
      display: inline-block;
      padding: 4px 12px;
      border-radius: var(--radius-tag);
      background: var(--bg-alt);
      color: var(--text-secondary);
      font-size: 13px;
      font-weight: 600;
      white-space: nowrap;
    }

    .live-teams {
      font-weight: 700;
      font-size: 17px;
      color: var(--text-dark);
      letter-spacing: 0.2px;
    }

    .live-time {
      font-family: var(--font-num);
      font-size: 15px;
      color: var(--text-secondary);
      white-space: nowrap;
    }

    .live-status {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 12px;
      border-radius: var(--radius-tag);
      font-size: 13px;
      font-weight: 600;
      white-space: nowrap;
    }

    .status-live {
      background: var(--accent);
      color: #fff;
    }

    .status-upcoming {
      background: var(--secondary);
      color: #fff;
    }

    .status-finished {
      background: var(--border-light);
      color: var(--text-muted);
    }

    .live-score {
      font-family: var(--font-num);
      font-size: 24px;
      font-weight: 700;
      color: var(--text-dark);
      min-width: 80px;
      text-align: center;
    }

    .live-btn {
      flex: 0 0 auto;
    }

    .btn-watch {
      display: inline-block;
      background: var(--primary);
      color: #fff;
      border: none;
      padding: 8px 20px;
      border-radius: var(--radius-btn);
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all var(--transition);
    }

    .btn-watch:hover {
      background: var(--primary-hover);
      color: #fff;
      text-decoration: none;
    }

    /* Deep content */
    .deep-content {
      background: var(--card);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border);
      padding: 32px;
    }

    .deep-content h3 {
      font-size: 22px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 16px;
    }

    .deep-content p {
      margin-bottom: 16px;
      color: var(--text-body);
    }

    /* Sidebar */
    .sidebar-card {
      background: var(--card);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border);
      padding: 24px;
      margin-bottom: 24px;
    }

    .sidebar-card h4 {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 16px;
      border-left: 3px solid var(--primary);
      padding-left: 12px;
    }

    .sidebar-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .sidebar-list li {
      padding: 10px 0;
      border-bottom: 1px dashed var(--border-light);
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      color: var(--text-body);
    }

    .sidebar-list li:last-child {
      border-bottom: none;
    }

    .sidebar-list .badge-live {
      background: var(--accent);
      color: #fff;
      font-size: 12px;
      padding: 2px 8px;
      border-radius: 10px;
      font-weight: 600;
    }

    .sidebar-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
    }

    .sidebar-table th,
    .sidebar-table td {
      padding: 10px 8px;
      text-align: left;
      border-bottom: 1px solid var(--border-light);
    }

    .sidebar-table th {
      font-weight: 600;
      color: var(--text-secondary);
      background: var(--bg-alt);
    }

    /* FAQ */
    .accordion-custom {
      background: var(--card);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border);
      overflow: hidden;
    }

    .accordion-item {
      border-bottom: 1px solid var(--border-light);
    }

    .accordion-item:last-child {
      border-bottom: none;
    }

    .accordion-title {
      padding: 18px 24px;
      font-weight: 600;
      font-size: 16px;
      color: var(--text-dark);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff;
      transition: background var(--transition);
    }

    .accordion-title:hover {
      background: var(--bg-alt);
    }

    .accordion-title .icon {
      color: var(--primary);
      transition: transform var(--transition);
    }

    .accordion-item.is-active .accordion-title .icon {
      transform: rotate(180deg);
    }

    .accordion-content {
      display: none;
      padding: 0 24px 20px;
      font-size: 15px;
      color: var(--text-body);
      border-left: 3px solid var(--primary);
      margin-left: 24px;
      background: #fff;
    }

    .accordion-content p {
      margin: 12px 0 0;
    }

    /* Footer */
    .site-footer {
      background: var(--card);
      border-top: 1px solid var(--border);
      margin-top: 60px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      padding: 48px 0;
    }

    .footer-brand p {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.7;
      margin-top: 12px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 20px;
      color: var(--text-dark);
    }

    .footer-col h4 {
      font-size: 16px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 16px;
    }

    .footer-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-col li {
      margin-bottom: 10px;
    }

    .footer-col a {
      font-size: 14px;
      color: var(--text-secondary);
      text-decoration: none;
    }

    .footer-col a:hover {
      color: var(--primary);
      text-decoration: underline;
    }

    .footer-bottom {
      background: var(--bg-alt);
      border-top: 1px solid var(--border-light);
      padding: 16px 0;
    }

    .footer-bottom .container-main {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      font-size: 13px;
      color: var(--text-muted);
    }

    .footer-bottom a {
      color: var(--text-muted);
      text-decoration: none;
      margin: 0 8px;
    }

    .footer-bottom a:hover {
      color: var(--primary);
      text-decoration: underline;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-basketball .container-main {
        flex-direction: column;
        align-items: flex-start;
      }
      .hero-stats {
        width: 100%;
        justify-content: space-around;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
    }

    @media (max-width: 768px) {
      .nav-menu {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        z-index: 99;
      }
      .nav-menu.open {
        display: flex;
      }
      .nav-menu>li {
        margin: 0;
      }
      .nav-menu a {
        padding: 14px 24px;
        display: block;
      }
      .nav-menu a.active::after {
        display: none;
      }
      .nav-toggle {
        display: block;
      }
      .nav-cta {
        display: none;
      }
      .hero-text h1 {
        font-size: 28px;
      }
      .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
      }
      .stat-number {
        font-size: 22px;
      }
      .filter-bar {
        flex-direction: column;
        align-items: stretch;
      }
      .filter-group {
        width: 100%;
      }
      .filter-group select,
      .filter-group input {
        flex: 1;
        min-width: auto;
      }
      .live-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }
      .live-match-info {
        flex-wrap: wrap;
        gap: 10px;
      }
      .live-btn {
        align-self: stretch;
      }
      .btn-watch {
        display: block;
        text-align: center;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 0;
      }
      .footer-bottom .container-main {
        flex-direction: column;
        text-align: center;
      }
    }

    @media (max-width: 520px) {
      .hero-basketball {
        min-height: 320px;
      }
      .hero-text h1 {
        font-size: 24px;
      }
      .hero-text p {
        font-size: 15px;
      }
      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }
      .hero-actions a,
      .hero-actions button {
        width: 100%;
        text-align: center;
      }
      .deep-content {
        padding: 20px;
      }
      .sidebar-card {
        padding: 16px;
      }
    }

/* roulang page: category2 */
:root {
            --primary: #1466B8;
            --primary-hover: #0C4F9E;
            --secondary: #0FA3A3;
            --secondary-hover: #0E8C8C;
            --accent: #F06A3A;
            --bg: #F5F8FC;
            --bg-alt: #F7FAFD;
            --card: #FFFFFF;
            --border: #E1E9F2;
            --border-light: #E4EDF8;
            --input-border: #D1DCE8;
            --text-dark: #14243D;
            --text-body: #2A3B52;
            --text-secondary: #5A6B7E;
            --text-muted: #8295AB;
            --shadow-sm: 0 6px 18px rgba(20, 36, 61, 0.06);
            --shadow-md: 0 10px 28px rgba(20, 36, 61, 0.12);
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-tag: 20px;
            --radius-input: 8px;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            --font-num: 'DIN', 'Inter', 'Roboto', 'PingFang SC', sans-serif;
            --max-width: 1200px;
            --nav-height: 68px;
            --section-gap: 56px;
            --transition: 0.2s ease;
        }
        @media (max-width: 1023px) {
            :root {
                --nav-height: 60px;
                --section-gap: 40px;
            }
        }
        @media (max-width: 639px) {
            :root {
                --section-gap: 32px;
            }
        }
        * {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-body);
            background-color: var(--bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            margin: 0;
            padding: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border: 0;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--secondary);
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        button,
        input,
        textarea,
        select {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }
        button:focus-visible,
        a:focus-visible,
        input:focus-visible,
        textarea:focus-visible,
        select:focus-visible {
            outline: 2px solid var(--secondary);
            outline-offset: 2px;
        }
        .container-main {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-gap {
            padding: var(--section-gap) 0;
        }
        .section-gap-sm {
            padding: 36px 0;
        }
        .text-center {
            text-align: center;
        }
        .text-primary {
            color: var(--primary);
        }
        .text-secondary {
            color: var(--secondary);
        }
        .text-muted {
            color: var(--text-muted);
        }
        .bg-white {
            background: #fff;
        }
        .radius-card {
            border-radius: var(--radius-card);
        }

        /* Header & Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: #FFFFFF;
            border-bottom: 1px solid rgba(20, 36, 61, 0.08);
            height: var(--nav-height);
            display: flex;
            align-items: center;
        }
        .site-header .container-main {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 22px;
            color: var(--text-dark);
            text-decoration: none;
            letter-spacing: -0.3px;
            flex-shrink: 0;
        }
        .nav-logo:hover {
            color: var(--primary);
            text-decoration: none;
        }
        .nav-logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            flex-shrink: 0;
        }
        .nav-logo-sub {
            font-size: 16px;
            font-weight: 600;
            background: var(--bg-alt);
            border-radius: 20px;
            padding: 4px 12px;
            color: var(--primary);
            margin-left: 6px;
            letter-spacing: 0;
            display: inline-block;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-menu a {
            display: block;
            padding: 8px 14px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-body);
            text-decoration: none;
            border-radius: 6px;
            transition: all var(--transition);
            white-space: nowrap;
            position: relative;
        }
        .nav-menu a:hover {
            color: var(--primary);
            background: #F0F6FD;
            text-decoration: none;
        }
        .nav-menu a.active {
            color: var(--primary);
            background: #F0F6FD;
            font-weight: 600;
        }
        .nav-menu a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 14px;
            right: 14px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px 2px 0 0;
        }
        .nav-cta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid var(--border);
            border-radius: 6px;
            width: 40px;
            height: 40px;
            cursor: pointer;
            color: var(--text-body);
            font-size: 18px;
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
            flex-shrink: 0;
        }
        .nav-toggle:hover {
            background: #F0F6FD;
            color: var(--primary);
        }
        @media (max-width: 1023px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: var(--nav-height);
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 20px;
                border-bottom: 1px solid var(--border-light);
                box-shadow: 0 10px 24px rgba(20, 36, 61, 0.08);
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                padding: 12px 16px;
                font-size: 16px;
            }
            .nav-menu a.active::after {
                left: 0;
                right: auto;
                top: 0;
                bottom: 0;
                width: 3px;
                height: auto;
                background: var(--primary);
                border-radius: 0 2px 2px 0;
            }
            .nav-toggle {
                display: flex;
            }
            .nav-cta {
                margin-left: auto;
            }
            .nav-cta .btn-sm {
                display: none;
            }
        }
        @media (max-width: 639px) {
            .nav-logo {
                font-size: 19px;
                gap: 8px;
            }
            .nav-logo-icon {
                width: 30px;
                height: 30px;
                font-size: 15px;
                border-radius: 6px;
            }
            .nav-logo-sub {
                font-size: 13px;
                padding: 2px 8px;
                margin-left: 2px;
            }
            .nav-cta {
                display: none;
            }
            .nav-toggle {
                margin-left: auto;
            }
        }

        /* Buttons */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--primary);
            color: #fff;
            border: 1px solid var(--primary);
            padding: 10px 22px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
            line-height: 1.5;
            white-space: nowrap;
        }
        .btn-primary:hover {
            background: var(--primary-hover);
            border-color: var(--primary-hover);
            color: #fff;
            text-decoration: none;
            transform: translateY(-1px);
            box-shadow: var(--shadow-sm);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
            padding: 10px 22px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
            line-height: 1.5;
            white-space: nowrap;
        }
        .btn-secondary:hover {
            background: #E9F1FA;
            border-color: var(--primary);
            color: var(--primary);
            text-decoration: none;
            transform: translateY(-1px);
        }
        .btn-sm {
            padding: 7px 16px;
            font-size: 14px;
            border-radius: var(--radius-btn);
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
            line-height: 1.6;
        }
        .btn-sm.btn-primary {
            border: 1px solid var(--primary);
        }
        .btn-sm.btn-primary:hover {
            background: var(--primary-hover);
            border-color: var(--primary-hover);
            color: #fff;
            text-decoration: none;
        }
        .btn-outline-sm {
            background: transparent;
            border: 1px solid var(--border);
            color: var(--text-body);
            padding: 7px 16px;
            font-size: 14px;
            border-radius: var(--radius-btn);
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
            line-height: 1.6;
        }
        .btn-outline-sm:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: #F0F6FD;
            text-decoration: none;
        }

        /* Tags & Badges */
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 13px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: var(--radius-tag);
            line-height: 1.5;
            white-space: nowrap;
        }
        .badge-live {
            background: rgba(240, 106, 58, 0.1);
            color: var(--accent);
            border: 1px solid rgba(240, 106, 58, 0.25);
        }
        .badge-live::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            animation: pulse-dot 1.6s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(0.8);
            }
        }
        .badge-upcoming {
            background: rgba(15, 163, 163, 0.08);
            color: var(--secondary);
            border: 1px solid rgba(15, 163, 163, 0.22);
        }
        .badge-info {
            background: rgba(20, 102, 184, 0.08);
            color: var(--primary);
            border: 1px solid rgba(20, 102, 184, 0.2);
        }
        .badge-muted {
            background: rgba(130, 149, 171, 0.1);
            color: var(--text-muted);
            border: 1px solid rgba(130, 149, 171, 0.2);
        }

        /* Hero Section */
        .hero-inner {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(20, 36, 61, 0.87) 0%, rgba(20, 102, 184, 0.75) 55%, rgba(15, 163, 163, 0.62) 100%);
            color: #fff;
            padding: 52px 40px;
            display: flex;
            align-items: center;
            gap: 32px;
            min-height: 260px;
        }
        .hero-inner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.22;
            z-index: 0;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            flex: 1;
            max-width: 720px;
        }
        .hero-content h1 {
            font-size: 38px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 12px;
            line-height: 1.3;
            letter-spacing: -0.5px;
        }
        .hero-content p {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 20px;
            line-height: 1.8;
            max-width: 640px;
        }
        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .hero-actions .btn-primary {
            background: #fff;
            color: var(--primary);
            border-color: #fff;
        }
        .hero-actions .btn-primary:hover {
            background: #F0F6FD;
            border-color: #F0F6FD;
            color: var(--primary-hover);
        }
        .hero-actions .btn-secondary {
            border-color: rgba(255, 255, 255, 0.7);
            color: #fff;
            background: transparent;
        }
        .hero-actions .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            color: #fff;
        }
        .hero-stat {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 10px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
            border-radius: 12px;
            padding: 20px 24px;
            min-width: 170px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .hero-stat .stat-num {
            font-size: 34px;
            font-weight: 700;
            font-family: var(--font-num);
            color: #fff;
            letter-spacing: 0.5px;
            line-height: 1.2;
        }
        .hero-stat .stat-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.85);
            letter-spacing: 0.3px;
        }
        @media (max-width: 1023px) {
            .hero-inner {
                padding: 36px 28px;
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            .hero-content h1 {
                font-size: 30px;
            }
            .hero-stat {
                flex-direction: row;
                min-width: 0;
                padding: 14px 20px;
                gap: 20px;
                flex-wrap: wrap;
            }
            .hero-stat .stat-num {
                font-size: 26px;
            }
        }
        @media (max-width: 639px) {
            .hero-inner {
                padding: 24px 18px;
                gap: 16px;
                border-radius: 12px;
                min-height: auto;
            }
            .hero-content h1 {
                font-size: 24px;
            }
            .hero-content p {
                font-size: 15px;
            }
            .hero-actions {
                flex-direction: column;
                width: 100%;
            }
            .hero-actions .btn-primary,
            .hero-actions .btn-secondary {
                width: 100%;
                justify-content: center;
            }
            .hero-stat {
                padding: 12px 16px;
                gap: 16px;
            }
            .hero-stat .stat-num {
                font-size: 22px;
            }
        }

        /* Filter Bar */
        .filter-bar {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            padding: 18px 22px;
            display: flex;
            align-items: flex-end;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: -32px;
            position: relative;
            z-index: 5;
        }
        .filter-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
            min-width: 160px;
            flex: 1 1 auto;
        }
        .filter-group label {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            letter-spacing: 0.3px;
        }
        .filter-group select,
        .filter-group input {
            background: #fff;
            border: 1px solid var(--input-border);
            border-radius: var(--radius-input);
            padding: 9px 14px;
            font-size: 14px;
            color: var(--text-body);
            transition: border-color var(--transition), box-shadow var(--transition);
            outline: none;
            min-height: 40px;
            appearance: auto;
        }
        .filter-group select:focus,
        .filter-group input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(20, 102, 184, 0.1);
        }
        .filter-bar .btn-primary {
            min-height: 40px;
            padding: 9px 20px;
        }
        @media (max-width: 1023px) {
            .filter-bar {
                margin-top: -28px;
                padding: 14px 16px;
                gap: 10px;
            }
            .filter-group {
                min-width: 130px;
            }
        }
        @media (max-width: 639px) {
            .filter-bar {
                flex-direction: column;
                align-items: stretch;
                margin-top: -20px;
                padding: 14px;
            }
            .filter-group {
                min-width: 100%;
            }
            .filter-bar .btn-primary {
                width: 100%;
                justify-content: center;
            }
        }

        /* Live Match Cards */
        .match-card {
            display: flex;
            align-items: center;
            gap: 20px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 18px 22px;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            margin-bottom: 14px;
        }
        .match-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            border-color: rgba(20, 102, 184, 0.25);
        }
        .match-card .match-time {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            min-width: 68px;
            flex-shrink: 0;
        }
        .match-card .match-time .date {
            font-size: 13px;
            color: var(--text-muted);
            letter-spacing: 0.2px;
        }
        .match-card .match-time .time {
            font-size: 20px;
            font-weight: 700;
            font-family: var(--font-num);
            color: var(--text-dark);
            letter-spacing: 0.3px;
        }
        .match-card .match-info {
            flex: 1;
            min-width: 0;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        .match-card .match-teams {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 17px;
            font-weight: 700;
            color: var(--text-dark);
            flex-wrap: wrap;
        }
        .match-card .match-teams .vs {
            color: var(--text-muted);
            font-weight: 500;
            font-size: 14px;
        }
        .match-card .match-score {
            font-size: 22px;
            font-weight: 700;
            font-family: var(--font-num);
            color: var(--text-dark);
            letter-spacing: 2px;
            background: var(--bg-alt);
            padding: 4px 16px;
            border-radius: 8px;
            white-space: nowrap;
        }
        .match-card .match-score.live-score {
            color: var(--accent);
            background: rgba(240, 106, 58, 0.06);
        }
        .match-card .match-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            min-width: 0;
        }
        .match-card .league-tag {
            font-size: 13px;
            color: var(--text-secondary);
            background: var(--bg-alt);
            border-radius: 20px;
            padding: 4px 12px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            white-space: nowrap;
        }
        .match-card .match-actions {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }
        @media (max-width: 1023px) {
            .match-card {
                padding: 14px 16px;
                gap: 14px;
                flex-wrap: wrap;
            }
            .match-card .match-time {
                min-width: 58px;
            }
            .match-card .match-time .time {
                font-size: 18px;
            }
        }
        @media (max-width: 639px) {
            .match-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                padding: 14px;
            }
            .match-card .match-time {
                flex-direction: row;
                gap: 8px;
                min-width: auto;
            }
            .match-card .match-info {
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
            }
            .match-card .match-teams {
                font-size: 15px;
                gap: 8px;
            }
            .match-card .match-score {
                font-size: 18px;
                padding: 3px 12px;
            }
            .match-card .match-actions {
                width: 100%;
                justify-content: flex-start;
            }
        }

        /* Sidebar */
        .sidebar-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            padding: 20px 22px;
            margin-bottom: 18px;
        }
        .sidebar-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0 0 14px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-light);
            letter-spacing: -0.2px;
        }
        .sidebar-card h3 i {
            color: var(--secondary);
            margin-right: 6px;
        }
        .hot-room-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-light);
        }
        .hot-room-item:last-child {
            border-bottom: none;
        }
        .hot-room-item .room-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(20, 102, 184, 0.1), rgba(15, 163, 163, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 16px;
            flex-shrink: 0;
        }
        .hot-room-item .room-info {
            flex: 1;
            min-width: 0;
        }
        .hot-room-item .room-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.4;
        }
        .hot-room-item .room-meta {
            font-size: 12px;
            color: var(--text-muted);
            letter-spacing: 0.2px;
        }
        .hot-room-item .room-status {
            font-size: 12px;
            font-weight: 600;
            color: var(--secondary);
            white-space: nowrap;
        }
        .schedule-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 9px 0;
            border-bottom: 1px solid var(--border-light);
        }
        .schedule-item:last-child {
            border-bottom: none;
        }
        .schedule-item .sched-time {
            font-size: 13px;
            font-weight: 600;
            font-family: var(--font-num);
            color: var(--text-secondary);
            white-space: nowrap;
            min-width: 44px;
        }
        .schedule-item .sched-match {
            flex: 1;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-body);
            min-width: 0;
        }
        .schedule-item .sched-league {
            font-size: 12px;
            color: var(--text-muted);
            white-space: nowrap;
        }

        /* Deep Content Area */
        .deep-content {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 14px;
            box-shadow: var(--shadow-sm);
            padding: 36px 40px;
            margin-top: 24px;
        }
        .deep-content h2 {
            font-size: 26px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0 0 16px;
            letter-spacing: -0.3px;
            line-height: 1.4;
        }
        .deep-content h3 {
            font-size: 19px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 24px 0 10px;
            line-height: 1.4;
        }
        .deep-content p {
            font-size: 16px;
            color: var(--text-body);
            line-height: 1.9;
            margin: 0 0 16px;
        }
        .deep-content .content-image {
            border-radius: 10px;
            overflow: hidden;
            margin: 20px 0;
        }
        .deep-content .content-image img {
            width: 100%;
            object-fit: cover;
            max-height: 280px;
        }
        .deep-content .content-note {
            background: var(--bg-alt);
            border-left: 3px solid var(--secondary);
            border-radius: 0 8px 8px 0;
            padding: 14px 18px;
            font-size: 14px;
            color: var(--text-secondary);
            margin: 16px 0;
        }
        @media (max-width: 639px) {
            .deep-content {
                padding: 22px 18px;
                border-radius: 10px;
            }
            .deep-content h2 {
                font-size: 22px;
            }
            .deep-content h3 {
                font-size: 17px;
            }
            .deep-content p {
                font-size: 15px;
            }
        }

        /* FAQ */
        .faq-item {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 10px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }
        .faq-item:hover {
            border-color: rgba(20, 102, 184, 0.25);
        }
        .faq-item .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 16px 22px;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            text-align: left;
            transition: all var(--transition);
        }
        .faq-item .faq-question:hover {
            color: var(--primary);
        }
        .faq-item .faq-question .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--bg-alt);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            color: var(--text-secondary);
            flex-shrink: 0;
            transition: all var(--transition);
        }
        .faq-item.open .faq-question .faq-icon {
            background: var(--primary);
            color: #fff;
            transform: rotate(45deg);
        }
        .faq-item .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: 500px;
            padding: 0 22px 20px;
        }
        .faq-item .faq-answer p {
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.85;
            margin: 0;
            padding-left: 14px;
            border-left: 3px solid var(--primary);
        }

        /* CTA Section */
        .cta-box {
            background: linear-gradient(135deg, #1466B8 0%, #0C4F9E 55%, #0FA3A3 100%);
            border-radius: 16px;
            padding: 44px 40px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 32px;
            flex-wrap: wrap;
            box-shadow: 0 16px 36px rgba(20, 36, 61, 0.18);
        }
        .cta-box .cta-text {
            flex: 1;
            min-width: 260px;
        }
        .cta-box .cta-text h2 {
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 8px;
            letter-spacing: -0.3px;
        }
        .cta-box .cta-text p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }
        .cta-box .cta-form {
            flex-shrink: 0;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            min-width: 280px;
        }
        .cta-box .cta-form input {
            background: #fff;
            border: none;
            border-radius: var(--radius-input);
            padding: 11px 16px;
            font-size: 14px;
            min-width: 220px;
            flex: 1;
            color: var(--text-body);
            outline: none;
        }
        .cta-box .cta-form input::placeholder {
            color: var(--text-muted);
        }
        .cta-box .cta-form button {
            background: #fff;
            color: var(--primary);
            border: none;
            padding: 11px 24px;
            border-radius: var(--radius-input);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .cta-box .cta-form button:hover {
            background: #F0F6FD;
            transform: translateY(-1px);
        }
        @media (max-width: 1023px) {
            .cta-box {
                padding: 28px 24px;
                gap: 20px;
                flex-direction: column;
                align-items: flex-start;
            }
            .cta-box .cta-form {
                width: 100%;
                min-width: 0;
            }
            .cta-box .cta-form input {
                min-width: auto;
                flex: 1 1 180px;
            }
        }
        @media (max-width: 639px) {
            .cta-box {
                padding: 22px 16px;
                border-radius: 12px;
            }
            .cta-box .cta-text h2 {
                font-size: 21px;
            }
            .cta-box .cta-form {
                flex-direction: column;
            }
            .cta-box .cta-form input {
                flex: none;
                width: 100%;
            }
            .cta-box .cta-form button {
                width: 100%;
            }
        }

        /* Footer */
        .site-footer {
            background: #fff;
            border-top: 1px solid var(--border-light);
            padding-top: 48px;
            margin-top: 56px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 32px;
            padding-bottom: 36px;
        }
        .footer-brand .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }
        .footer-logo .nav-logo-icon {
            width: 30px;
            height: 30px;
            font-size: 14px;
            border-radius: 6px;
        }
        .footer-brand p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin: 0;
        }
        .footer-col h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0 0 14px;
            letter-spacing: -0.2px;
        }
        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            font-size: 14px;
            color: var(--text-secondary);
            text-decoration: none;
            transition: color var(--transition);
        }
        .footer-col ul li a:hover {
            color: var(--primary);
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .footer-bottom {
            background: var(--bg-alt);
            border-top: 1px solid var(--border-light);
            padding: 16px 0;
            font-size: 13px;
            color: var(--text-muted);
        }
        .footer-bottom .container-main {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: space-between;
        }
        .footer-bottom a {
            color: var(--text-secondary);
            font-size: 13px;
            text-decoration: none;
        }
        .footer-bottom a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        @media (max-width: 1023px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
        }
        @media (max-width: 639px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-bottom .container-main {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
            .site-footer {
                padding-top: 32px;
                margin-top: 36px;
            }
        }

        /* Section title */
        .section-head {
            margin-bottom: 24px;
        }
        .section-head h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0 0 6px;
            letter-spacing: -0.3px;
            line-height: 1.35;
        }
        .section-head p {
            font-size: 15px;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.7;
        }
        @media (max-width: 639px) {
            .section-head h2 {
                font-size: 22px;
            }
        }

        /* Related links */
        .related-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 14px;
        }
        .related-links a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 6px 16px;
            font-size: 13px;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all var(--transition);
        }
        .related-links a:hover {
            color: var(--primary);
            border-color: var(--primary);
            text-decoration: none;
            background: #F0F6FD;
        }

/* roulang page: category3 */
:root {
            --primary: #1466B8;
            --primary-hover: #0C4F9E;
            --secondary: #0FA3A3;
            --secondary-hover: #0E8C8C;
            --accent: #F06A3A;
            --bg: #F5F8FC;
            --bg-alt: #F7FAFD;
            --card: #FFFFFF;
            --border: #E1E9F2;
            --border-light: #E4EDF8;
            --input-border: #D1DCE8;
            --text-dark: #14243D;
            --text-body: #2A3B52;
            --text-secondary: #5A6B7E;
            --text-muted: #8295AB;
            --shadow-sm: 0 6px 18px rgba(20, 36, 61, 0.06);
            --shadow-md: 0 10px 28px rgba(20, 36, 61, 0.12);
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-tag: 20px;
            --radius-input: 8px;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            --font-num: 'DIN', 'Inter', 'Roboto', 'PingFang SC', sans-serif;
            --max-width: 1200px;
            --nav-height: 68px;
            --section-gap: 72px;
            --transition: 0.2s ease;
        }
        :root {
            --nav-height: 60px;
            --section-gap: 48px;
        }
        :root {
            --primary: #1466B8;
            --primary-hover: #0C4F9E;
            --secondary: #0FA3A3;
            --secondary-hover: #0E8C8C;
            --accent: #F06A3A;
            --bg: #F5F8FC;
            --bg-alt: #F7FAFD;
            --card: #FFFFFF;
            --border: #E1E9F2;
            --border-light: #E4EDF8;
            --input-border: #D1DCE8;
            --text-dark: #14243D;
            --text-body: #2A3B52;
            --text-secondary: #5A6B7E;
            --text-muted: #8295AB;
            --shadow-sm: 0 6px 18px rgba(20, 36, 61, 0.06);
            --shadow-md: 0 10px 28px rgba(20, 36, 61, 0.12);
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-tag: 20px;
            --radius-input: 8px;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            --font-num: 'DIN', 'Inter', 'Roboto', 'PingFang SC', sans-serif;
            --max-width: 1200px;
            --nav-height: 68px;
            --section-gap: 72px;
            --transition: 0.2s ease;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-body);
            background-color: var(--bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border: 0;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--secondary);
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        button,
        input,
        textarea,
        select {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }
        button:focus-visible,
        a:focus-visible,
        input:focus-visible,
        textarea:focus-visible {
            outline: 2px solid var(--secondary);
            outline-offset: 2px;
        }
        ul,
        ol {
            list-style: none;
        }
        .container-main {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-gap {
            padding: var(--section-gap) 0;
        }
        .section-gap-sm {
            padding: 48px 0;
        }
        .section-gap-xs {
            padding: 32px 0;
        }
        .text-center {
            text-align: center;
        }
        .text-primary {
            color: var(--primary);
        }
        .text-secondary {
            color: var(--secondary);
        }
        .text-muted {
            color: var(--text-muted);
        }
        .text-dark {
            color: var(--text-dark);
        }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            white-space: nowrap;
            border: 0;
        }

        /* Header & Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: #FFFFFF;
            border-bottom: 1px solid rgba(20, 36, 61, 0.08);
            height: var(--nav-height);
            display: flex;
            align-items: center;
            box-shadow: 0 2px 8px rgba(20, 36, 61, 0.03);
        }
        .site-header .container-main {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 22px;
            color: var(--text-dark);
            text-decoration: none;
            letter-spacing: -0.3px;
            flex-shrink: 0;
        }
        .nav-logo:hover {
            color: var(--primary);
            text-decoration: none;
        }
        .nav-logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            flex-shrink: 0;
            letter-spacing: 0.5px;
        }
        .nav-logo-sub {
            font-size: 16px;
            font-weight: 600;
            background: var(--bg-alt);
            border-radius: 20px;
            padding: 4px 12px;
            color: var(--primary);
            margin-left: 6px;
            letter-spacing: 0;
            border: 1px solid var(--border-light);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 0;
            padding: 0;
        }
        .nav-menu li {
            position: relative;
            margin: 0 4px;
        }
        .nav-menu a {
            display: block;
            padding: 8px 14px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-body);
            text-decoration: none;
            border-radius: 6px;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .nav-menu a:hover {
            color: var(--primary);
            background: #F0F6FD;
            text-decoration: none;
        }
        .nav-menu a.active {
            color: var(--primary);
            background: #F0F6FD;
            font-weight: 600;
        }
        .nav-menu a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 14px;
            right: 14px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px 2px 0 0;
        }
        .nav-cta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .nav-cta .btn-sm {
            padding: 7px 16px;
            font-size: 14px;
            border-radius: var(--radius-btn);
            font-weight: 500;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
            border: 1px solid var(--primary);
        }
        .btn-primary:hover {
            background: var(--primary-hover);
            border-color: var(--primary-hover);
            color: #fff;
            text-decoration: none;
        }
        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }
        .btn-secondary:hover {
            background: #E9F1FA;
            color: var(--primary);
            text-decoration: none;
            border-color: var(--primary);
        }
        .btn-sm {
            padding: 7px 16px;
            font-size: 14px;
            border-radius: var(--radius-btn);
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
            display: inline-block;
        }
        .btn-md {
            padding: 10px 22px;
            font-size: 15px;
            border-radius: var(--radius-btn);
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
            display: inline-block;
        }
        .btn-lg {
            padding: 12px 28px;
            font-size: 16px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
            display: inline-block;
        }
        .nav-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text-dark);
            font-size: 20px;
            width: 40px;
            height: 40px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
            flex-shrink: 0;
            padding: 0;
        }
        .nav-toggle:hover {
            background: #F0F6FD;
            border-color: var(--primary);
            color: var(--primary);
        }

        /* Hero Section */
        .hero-large {
            position: relative;
            background-image: linear-gradient(135deg, rgba(245,248,252,0.92), rgba(230,240,250,0.82)), url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            padding: 72px 0 56px;
            border-bottom: 1px solid var(--border-light);
        }
        .hero-large .hero-content {
            max-width: 720px;
        }
        .hero-large h1 {
            font-size: 40px;
            line-height: 1.25;
            color: var(--text-dark);
            font-weight: 700;
            margin-bottom: 18px;
            letter-spacing: -0.5px;
        }
        .hero-large h1 .highlight {
            color: var(--primary);
        }
        .hero-large .hero-subtitle {
            font-size: 17px;
            color: var(--text-secondary);
            margin-bottom: 28px;
            max-width: 620px;
            line-height: 1.85;
        }
        .hero-large .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .hero-badge-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 14px;
            border-radius: var(--radius-tag);
            font-size: 13px;
            font-weight: 500;
            background: #fff;
            border: 1px solid var(--border);
            color: var(--text-secondary);
        }
        .hero-badge.live-badge {
            background: #FFF3EE;
            border-color: #FAD9CC;
            color: var(--accent);
        }

        /* Section headings */
        .section-header {
            margin-bottom: 32px;
        }
        .section-header h2 {
            font-size: 28px;
            color: var(--text-dark);
            font-weight: 700;
            letter-spacing: -0.3px;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        .section-header p {
            color: var(--text-secondary);
            font-size: 15px;
            max-width: 680px;
            line-height: 1.8;
        }
        .section-header .section-tag {
            display: inline-block;
            padding: 4px 14px;
            border-radius: var(--radius-tag);
            font-size: 13px;
            font-weight: 600;
            background: #E9F1FA;
            color: var(--primary);
            margin-bottom: 10px;
        }

        /* Sports type grouping list */
        .sports-type-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .sports-type-item {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 24px 26px;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            display: flex;
            align-items: flex-start;
            gap: 18px;
        }
        .sports-type-item:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            border-color: var(--border-light);
        }
        .sports-type-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            background: linear-gradient(135deg, #E9F1FA, #F0F6FD);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--primary);
            flex-shrink: 0;
        }
        .sports-type-item h3 {
            font-size: 19px;
            color: var(--text-dark);
            font-weight: 600;
            margin-bottom: 6px;
        }
        .sports-type-item p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 8px;
        }
        .sports-type-item .type-link {
            font-size: 14px;
            color: var(--primary);
            font-weight: 500;
        }
        .sports-type-item .type-link:hover {
            color: var(--secondary);
        }
        .sports-type-item .type-events {
            display: inline-block;
            padding: 3px 10px;
            border-radius: var(--radius-tag);
            font-size: 12px;
            background: #F0F6FD;
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 6px;
        }

        /* Featured match cards */
        .featured-match-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 20px;
        }
        .match-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }
        .match-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .match-card .match-cover {
            height: 160px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .match-card .match-cover .cover-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: linear-gradient(to top, rgba(20,36,61,0.7), transparent);
            display: flex;
            align-items: flex-end;
            padding: 12px 18px;
        }
        .match-card .match-cover .league-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 4px 12px;
            border-radius: var(--radius-tag);
            font-size: 12px;
            font-weight: 600;
            background: #fff;
            color: var(--primary);
            box-shadow: 0 2px 6px rgba(20,36,61,0.1);
        }
        .match-card .match-cover .live-now {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 4px 12px;
            border-radius: var(--radius-tag);
            font-size: 12px;
            font-weight: 600;
            background: var(--accent);
            color: #fff;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .match-card .match-body {
            padding: 18px 20px 20px;
        }
        .match-card .match-teams {
            font-size: 17px;
            color: var(--text-dark);
            font-weight: 600;
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .match-card .match-time {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .match-card .match-score-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 14px;
            background: var(--bg-alt);
            border-radius: 8px;
            margin-bottom: 14px;
            font-size: 14px;
            color: var(--text-dark);
            font-weight: 500;
        }
        .match-card .match-score {
            font-family: var(--font-num);
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 1px;
        }
        .match-card .btn-md {
            width: 100%;
            text-align: center;
        }

        /* Two-column layout for main content + sidebar */
        .two-col-layout {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 32px;
            align-items: start;
        }
        .main-col {
            min-width: 0;
        }
        .sidebar-col {
            position: sticky;
            top: 88px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        /* Deep content area */
        .deep-content-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 32px 34px;
            box-shadow: var(--shadow-sm);
        }
        .deep-content-card h3 {
            font-size: 22px;
            color: var(--text-dark);
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.35;
        }
        .deep-content-card h4 {
            font-size: 18px;
            color: var(--text-dark);
            font-weight: 600;
            margin: 24px 0 10px;
            line-height: 1.4;
        }
        .deep-content-card p {
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.9;
            margin-bottom: 14px;
        }
        .deep-content-card ul {
            margin-bottom: 16px;
            padding-left: 4px;
        }
        .deep-content-card ul li {
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.8;
            padding-left: 22px;
            position: relative;
            margin-bottom: 6px;
        }
        .deep-content-card ul li::before {
            content: '';
            position: absolute;
            left: 6px;
            top: 12px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--secondary);
        }

        /* Sidebar cards */
        .sidebar-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 20px 22px;
            box-shadow: var(--shadow-sm);
        }
        .sidebar-card h3 {
            font-size: 17px;
            color: var(--text-dark);
            font-weight: 600;
            margin-bottom: 14px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-light);
        }
        .sidebar-card .side-match-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-light);
        }
        .sidebar-card .side-match-item:last-child {
            border-bottom: none;
        }
        .sidebar-card .side-match-icon {
            width: 38px;
            height: 38px;
            border-radius: 8px;
            background: #F0F6FD;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--primary);
            flex-shrink: 0;
        }
        .sidebar-card .side-match-info {
            flex: 1;
            min-width: 0;
        }
        .sidebar-card .side-match-teams {
            font-size: 14px;
            color: var(--text-dark);
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .sidebar-card .side-match-time {
            font-size: 12px;
            color: var(--text-muted);
        }
        .sidebar-card .side-live-badge {
            padding: 3px 8px;
            border-radius: var(--radius-tag);
            font-size: 11px;
            font-weight: 600;
            background: #FFF3EE;
            color: var(--accent);
            flex-shrink: 0;
        }

        /* Schedule table */
        .schedule-table-wrap {
            overflow-x: auto;
            margin-top: 12px;
        }
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }
        .schedule-table th {
            text-align: left;
            padding: 10px 14px;
            background: var(--bg-alt);
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 13px;
            border-bottom: 1px solid var(--border);
            white-space: nowrap;
        }
        .schedule-table td {
            padding: 12px 14px;
            color: var(--text-body);
            border-bottom: 1px solid var(--border-light);
            white-space: nowrap;
        }
        .schedule-table tr:last-child td {
            border-bottom: none;
        }
        .schedule-table .status-live {
            color: var(--accent);
            font-weight: 600;
            font-size: 13px;
        }
        .schedule-table .status-upcoming {
            color: var(--secondary);
            font-weight: 500;
            font-size: 13px;
        }

        /* FAQ custom accordion */
        .custom-accordion {
            margin-top: 12px;
        }
        .custom-accordion .accordion-item {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 10px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: all var(--transition);
        }
        .custom-accordion .accordion-item.is-active {
            border-left: 3px solid var(--primary);
            box-shadow: var(--shadow-sm);
        }
        .custom-accordion .accordion-title {
            padding: 16px 20px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            background: var(--card);
            border: none;
            width: 100%;
            text-align: left;
            transition: all var(--transition);
            line-height: 1.5;
        }
        .custom-accordion .accordion-title:hover {
            background: var(--bg-alt);
            color: var(--primary);
        }
        .custom-accordion .accordion-title .acc-icon {
            font-size: 14px;
            color: var(--text-muted);
            transition: transform var(--transition);
            flex-shrink: 0;
        }
        .custom-accordion .accordion-item.is-active .acc-icon {
            transform: rotate(180deg);
            color: var(--primary);
        }
        .custom-accordion .accordion-content {
            padding: 0 20px 18px;
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.85;
            display: none;
        }
        .custom-accordion .accordion-item.is-active .accordion-content {
            display: block;
        }

        /* CTA subscribe */
        .cta-subscribe {
            background: linear-gradient(135deg, #E9F1FA, #F0F6FD);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 36px 40px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 28px;
            align-items: center;
        }
        .cta-subscribe h2 {
            font-size: 22px;
            color: var(--text-dark);
            font-weight: 700;
            margin-bottom: 8px;
        }
        .cta-subscribe p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 0;
        }
        .cta-subscribe .subscribe-form {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .cta-subscribe .subscribe-form input[type="email"],
        .cta-subscribe .subscribe-form input[type="text"] {
            padding: 10px 16px;
            border: 1px solid var(--input-border);
            border-radius: var(--radius-input);
            font-size: 14px;
            min-width: 220px;
            background: #fff;
            color: var(--text-dark);
            transition: border-color var(--transition);
        }
        .cta-subscribe .subscribe-form input:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(20,102,184,0.1);
        }

        /* Footer */
        .site-footer {
            background: #FFFFFF;
            border-top: 1px solid var(--border);
            padding-top: 52px;
            margin-top: 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 32px;
            padding-bottom: 36px;
        }
        .footer-brand .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 22px;
            color: var(--text-dark);
            margin-bottom: 14px;
        }
        .footer-brand .footer-logo .nav-logo-icon {
            width: 30px;
            height: 30px;
            font-size: 14px;
        }
        .footer-brand p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 360px;
        }
        .footer-col h4 {
            font-size: 15px;
            color: var(--text-dark);
            font-weight: 600;
            margin-bottom: 14px;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            font-size: 14px;
            color: var(--text-secondary);
            text-decoration: none;
            transition: color var(--transition);
        }
        .footer-col ul li a:hover {
            color: var(--primary);
            text-decoration: none;
        }
        .footer-bottom {
            background: var(--bg-alt);
            padding: 16px 0;
            border-top: 1px solid var(--border-light);
        }
        .footer-bottom .container-main {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 24px;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            color: var(--text-muted);
        }
        .footer-bottom a {
            color: var(--text-secondary);
        }
        .footer-bottom a:hover {
            color: var(--primary);
        }

        /* Responsive */
        @media screen and (max-width: 1023px) {
            :root {
                --section-gap: 48px;
                --nav-height: 60px;
            }
            .hero-large h1 {
                font-size: 32px;
            }
            .two-col-layout {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .sidebar-col {
                position: static;
                flex-direction: row;
                flex-wrap: wrap;
            }
            .sidebar-card {
                flex: 1 1 calc(50% - 12px);
                min-width: 280px;
            }
            .cta-subscribe {
                grid-template-columns: 1fr;
                padding: 28px 24px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
        }
        @media screen and (max-width: 767px) {
            :root {
                --section-gap: 36px;
                --nav-height: 56px;
            }
            .nav-menu {
                display: none;
                position: absolute;
                top: var(--nav-height);
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 12px 16px 16px;
                border-bottom: 1px solid var(--border);
                box-shadow: 0 12px 20px rgba(20,36,61,0.08);
                z-index: 99;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li {
                margin: 0;
            }
            .nav-menu a {
                padding: 12px 16px;
                font-size: 16px;
                border-radius: 0;
                display: block;
                border-bottom: 1px solid var(--border-light);
            }
            .nav-menu a.active::after {
                display: none;
            }
            .nav-menu a.active {
                border-left: 3px solid var(--primary);
                background: #F0F6FD;
            }
            .nav-cta {
                display: none;
            }
            .nav-toggle {
                display: flex;
            }
            .hero-large {
                padding: 48px 0 36px;
            }
            .hero-large h1 {
                font-size: 27px;
                line-height: 1.3;
            }
            .hero-large .hero-subtitle {
                font-size: 15px;
            }
            .hero-large .hero-actions {
                flex-direction: column;
                gap: 10px;
            }
            .hero-large .hero-actions .btn-md,
            .hero-large .hero-actions .btn-lg {
                width: 100%;
                text-align: center;
            }
            .sports-type-list {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .featured-match-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .deep-content-card {
                padding: 22px 20px;
            }
            .deep-content-card h3 {
                font-size: 19px;
            }
            .cta-subscribe {
                padding: 24px 20px;
            }
            .cta-subscribe .subscribe-form {
                flex-direction: column;
                width: 100%;
            }
            .cta-subscribe .subscribe-form input[type="email"],
            .cta-subscribe .subscribe-form input[type="text"] {
                min-width: 100%;
                width: 100%;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .sidebar-col {
                flex-direction: column;
            }
            .sidebar-card {
                min-width: 100%;
                flex: 1 1 100%;
            }
            .section-header h2 {
                font-size: 22px;
            }
            .nav-logo-sub {
                display: none;
            }
        }
        @media screen and (max-width: 520px) {
            .hero-large h1 {
                font-size: 23px;
            }
            .hero-large .hero-subtitle {
                font-size: 14px;
                line-height: 1.7;
            }
            .hero-badge-row {
                gap: 6px;
            }
            .hero-badge {
                font-size: 11px;
                padding: 3px 10px;
            }
            .match-card .match-teams {
                font-size: 15px;
            }
            .match-card .match-score {
                font-size: 18px;
            }
            .schedule-table {
                font-size: 12px;
            }
            .schedule-table th,
            .schedule-table td {
                padding: 8px 10px;
            }
            .cta-subscribe h2 {
                font-size: 18px;
            }
            .site-header .container-main {
                padding: 0 14px;
            }
        }

/* roulang page: category4 */
:root {
            --primary: #1466B8;
            --primary-hover: #0C4F9E;
            --secondary: #0FA3A3;
            --secondary-hover: #0E8C8C;
            --accent: #F06A3A;
            --bg: #F5F8FC;
            --bg-alt: #F7FAFD;
            --card: #FFFFFF;
            --border: #E1E9F2;
            --border-light: #E4EDF8;
            --input-border: #D1DCE8;
            --text-dark: #14243D;
            --text-body: #2A3B52;
            --text-secondary: #5A6B7E;
            --text-muted: #8295AB;
            --shadow-sm: 0 6px 18px rgba(20, 36, 61, 0.06);
            --shadow-md: 0 10px 28px rgba(20, 36, 61, 0.12);
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-tag: 20px;
            --radius-input: 8px;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            --font-num: 'DIN', 'Inter', 'Roboto', 'PingFang SC', sans-serif;
            --max-width: 1200px;
            --nav-height: 68px;
            --section-gap: 72px;
            --transition: 0.2s ease;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-body);
            background-color: var(--bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            border: 0;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--secondary);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        button,
        input,
        textarea,
        select {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible,
        textarea:focus-visible {
            outline: 2px solid var(--secondary);
            outline-offset: 2px;
        }

        .container-main {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-gap {
            padding: var(--section-gap) 0;
        }

        .section-gap-sm {
            padding: 48px 0;
        }

        .text-center {
            text-align: center;
        }

        .text-primary {
            color: var(--primary);
        }
        .text-secondary {
            color: var(--secondary);
        }
        .text-muted {
            color: var(--text-muted);
        }

        /* Header & Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: #FFFFFF;
            border-bottom: 1px solid rgba(20, 36, 61, 0.08);
            height: var(--nav-height);
            display: flex;
            align-items: center;
        }

        .site-header .container-main {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 22px;
            color: var(--text-dark);
            text-decoration: none;
            letter-spacing: -0.3px;
            flex-shrink: 0;
        }

        .nav-logo:hover {
            color: var(--primary);
            text-decoration: none;
        }

        .nav-logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .nav-logo-sub {
            font-size: 14px;
            font-weight: 500;
            background: var(--bg-alt);
            border-radius: 14px;
            padding: 3px 10px;
            color: var(--primary);
            margin-left: 2px;
            letter-spacing: 0;
            white-space: nowrap;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 16px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-menu>li {
            position: relative;
            margin: 0;
        }

        .nav-menu a {
            display: block;
            padding: 8px 14px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-body);
            text-decoration: none;
            border-radius: 6px;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .nav-menu a:hover {
            color: var(--primary);
            background: #F0F6FD;
            text-decoration: none;
        }

        .nav-menu a.active {
            color: var(--primary);
            background: #F0F6FD;
            font-weight: 600;
        }

        .nav-menu a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 14px;
            right: 14px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px 2px 0 0;
        }

        .nav-cta {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-cta .btn-sm {
            padding: 7px 16px;
            font-size: 14px;
            border-radius: var(--radius-btn);
            font-weight: 500;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .btn-sm.btn-primary {
            background: var(--primary);
            color: #fff;
        }

        .btn-sm.btn-primary:hover {
            background: var(--primary-hover);
            color: #fff;
            text-decoration: none;
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-dark);
            cursor: pointer;
            padding: 4px 8px;
        }

        /* Buttons */
        .btn-primary {
            background: var(--primary);
            color: #fff;
            border: 1px solid var(--primary);
            border-radius: var(--radius-btn);
            padding: 10px 20px;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition);
            display: inline-block;
            text-decoration: none;
            text-align: center;
            font-size: 15px;
        }

        .btn-primary:hover {
            background: var(--primary-hover);
            border-color: var(--primary-hover);
            color: #fff;
            text-decoration: none;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(20, 102, 184, 0.2);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
            border-radius: var(--radius-btn);
            padding: 10px 20px;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition);
            display: inline-block;
            text-decoration: none;
            text-align: center;
            font-size: 15px;
        }

        .btn-secondary:hover {
            background: #E9F1FA;
            border-color: var(--primary);
            color: var(--primary);
            text-decoration: none;
        }

        .btn-sm {
            padding: 6px 14px;
            font-size: 13px;
            border-radius: var(--radius-btn);
        }

        /* Hero */
        .page-hero {
            padding: 64px 0 40px;
            background-color: var(--bg-alt);
            background-image: linear-gradient(150deg, rgba(245, 248, 252, 0.92) 0%, rgba(230, 240, 250, 0.85) 55%, rgba(240, 246, 253, 0.75) 100%);
            border-bottom: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 420px;
            height: 100%;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.16;
            z-index: 0;
            pointer-events: none;
        }

        .page-hero .container-main {
            position: relative;
            z-index: 1;
        }

        .page-hero h1 {
            font-size: 38px;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: -0.5px;
            margin-bottom: 16px;
            line-height: 1.35;
        }

        .page-hero .hero-sub {
            font-size: 17px;
            color: var(--text-secondary);
            max-width: 680px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .hero-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 18px;
            flex-wrap: wrap;
        }

        .hero-breadcrumb a {
            color: var(--text-secondary);
            text-decoration: none;
        }

        .hero-breadcrumb a:hover {
            color: var(--primary);
        }

        /* Filter Bar */
        .filter-bar {
            background: var(--card);
            border-radius: var(--radius-card);
            padding: 16px 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 28px;
        }

        .filter-bar label {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            margin-bottom: 0;
            white-space: nowrap;
        }

        .filter-bar select,
        .filter-bar input[type="date"] {
            height: 38px;
            border: 1px solid var(--input-border);
            border-radius: var(--radius-input);
            padding: 6px 10px;
            font-size: 14px;
            background: #fff;
            color: var(--text-body);
            min-width: 130px;
        }

        .filter-bar select:focus,
        .filter-bar input[type="date"]:focus {
            border-color: var(--primary);
            outline: 2px solid var(--secondary);
            outline-offset: 0;
        }

        .filter-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            border-radius: var(--radius-tag);
            font-size: 13px;
            font-weight: 500;
            background: #F0F6FD;
            color: var(--primary);
            border: 1px solid #D6E4F5;
        }

        .filter-tag.live {
            background: #FEF3EE;
            color: var(--accent);
            border-color: #FCD9CB;
        }

        .filter-tag.upcoming {
            background: #EAF7F6;
            color: var(--secondary);
            border-color: #C5EAE7;
        }

        /* Main Content - Two Column Layout */
        .score-layout {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 28px;
            margin-top: 32px;
        }

        /* Left Column - Match List */
        .match-list-col {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .section-card {
            background: var(--card);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            overflow: hidden;
        }

        .section-card-header {
            padding: 16px 20px;
            border-bottom: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }

        .section-card-header h2 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0;
        }

        .section-card-header .date-group {
            font-size: 13px;
            color: var(--text-muted);
        }

        .match-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .match-item {
            display: flex;
            align-items: center;
            padding: 18px 20px;
            border-bottom: 1px solid var(--border-light);
            transition: all var(--transition);
            gap: 16px;
            flex-wrap: wrap;
        }

        .match-item:hover {
            background: #F8FBFF;
        }

        .match-item:last-child {
            border-bottom: none;
        }

        .match-status {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            min-width: 56px;
        }

        .match-status .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
        }

        .match-status .status-dot.live {
            background: var(--accent);
            animation: pulse-dot 1.6s ease-in-out infinite;
        }

        .match-status .status-dot.finished {
            background: #8295AB;
        }

        .match-status .status-dot.upcoming {
            background: var(--secondary);
        }

        .match-status .status-text {
            font-size: 12px;
            font-weight: 500;
            color: var(--text-muted);
            white-space: nowrap;
        }

        .match-status .status-text.live-text {
            color: var(--accent);
        }
        .match-status .status-text.upcoming-text {
            color: var(--secondary);
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }

        .match-info {
            flex: 1;
            min-width: 180px;
        }

        .match-league {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            margin-bottom: 6px;
        }

        .match-teams {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.5;
        }

        .match-time {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .match-score-box {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-num);
            font-weight: 700;
            font-size: 20px;
            color: var(--text-dark);
            letter-spacing: 0.5px;
        }

        .match-score-box .score-sep {
            color: var(--text-muted);
            font-weight: 400;
            font-size: 16px;
        }

        .match-score-box .live-score {
            color: var(--accent);
        }

        .match-action .btn-sm {
            font-size: 13px;
            padding: 6px 14px;
        }

        /* Right Column - Match Detail */
        .detail-col {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .detail-card {
            background: var(--card);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            overflow: hidden;
        }

        .detail-card-header {
            padding: 16px 20px;
            border-bottom: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .detail-card-header h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0;
        }

        .detail-card-body {
            padding: 20px;
        }

        .detail-score-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            font-family: var(--font-num);
            font-weight: 700;
            font-size: 28px;
            color: var(--text-dark);
            padding: 10px 0 16px;
            border-bottom: 1px dashed var(--border-light);
            margin-bottom: 16px;
        }

        .detail-score-row .team-name {
            font-family: var(--font-sans);
            font-size: 15px;
            font-weight: 500;
            color: var(--text-secondary);
        }

        .detail-events {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .detail-events li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px dashed var(--border-light);
            font-size: 14px;
            color: var(--text-body);
        }

        .detail-events li:last-child {
            border-bottom: none;
        }

        .event-time {
            font-family: var(--font-num);
            font-weight: 600;
            font-size: 14px;
            color: var(--primary);
            min-width: 40px;
            white-space: nowrap;
        }

        .replay-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .replay-link-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            background: #F8FBFF;
            border: 1px solid var(--border-light);
            border-radius: 8px;
            font-size: 14px;
            color: var(--text-body);
            text-decoration: none;
            transition: all var(--transition);
        }

        .replay-link-item:hover {
            background: #EEF5FC;
            border-color: var(--primary);
            color: var(--primary);
            text-decoration: none;
        }

        .replay-link-item i {
            color: var(--primary);
            font-size: 14px;
            width: 18px;
            text-align: center;
        }

        /* Sidebar Widgets */
        .widget-card {
            background: var(--card);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            padding: 20px;
        }

        .widget-card h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 14px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-light);
        }

        .widget-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .widget-list li {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-light);
            font-size: 14px;
            color: var(--text-body);
        }

        .widget-list li:last-child {
            border-bottom: none;
        }

        .widget-list .tag-sm {
            font-size: 12px;
            padding: 3px 10px;
            border-radius: var(--radius-tag);
            background: #F0F6FD;
            color: var(--primary);
            font-weight: 500;
            white-space: nowrap;
        }

        .widget-list .tag-sm.live {
            background: #FEF3EE;
            color: var(--accent);
        }

        /* Deep Content */
        .deep-content {
            background: var(--card);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            padding: 40px 36px;
        }

        .deep-content h2 {
            font-size: 26px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
            letter-spacing: -0.3px;
        }

        .deep-content h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-dark);
            margin: 28px 0 14px;
        }

        .deep-content p {
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.85;
            margin-bottom: 16px;
        }

        .deep-content ul,
        .deep-content ol {
            padding-left: 24px;
            margin-bottom: 16px;
        }

        .deep-content li {
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.8;
            margin-bottom: 8px;
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: var(--card);
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 22px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
            transition: all var(--transition);
            user-select: none;
            gap: 12px;
        }

        .faq-question:hover {
            background: #F8FBFF;
        }

        .faq-question .fa-chevron-down {
            font-size: 14px;
            color: var(--text-muted);
            transition: transform var(--transition);
            flex-shrink: 0;
        }

        .faq-item.open .faq-question .fa-chevron-down {
            transform: rotate(180deg);
            color: var(--primary);
        }

        .faq-answer {
            display: none;
            padding: 0 22px 20px;
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.8;
        }

        .faq-item.open .faq-answer {
            display: block;
            border-left: 3px solid var(--primary);
            margin-left: 22px;
            padding-left: 16px;
            padding-right: 16px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, #1A6DD4 40%, var(--secondary) 100%);
            border-radius: var(--radius-card);
            padding: 48px 40px;
            color: #fff;
            box-shadow: var(--shadow-md);
        }

        .cta-section h2 {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: -0.3px;
        }

        .cta-section p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.88);
            line-height: 1.75;
            margin-bottom: 24px;
            max-width: 600px;
        }

        .cta-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            max-width: 540px;
        }

        .cta-form input {
            flex: 1;
            min-width: 200px;
            height: 44px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: var(--radius-input);
            padding: 8px 14px;
            font-size: 15px;
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            transition: all var(--transition);
        }

        .cta-form input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .cta-form input:focus {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.6);
            outline: 2px solid rgba(255, 255, 255, 0.5);
            outline-offset: 0;
        }

        .cta-form .btn-light {
            background: #fff;
            color: var(--primary);
            border: none;
            border-radius: var(--radius-btn);
            padding: 10px 22px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .cta-form .btn-light:hover {
            background: #F0F6FD;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }

        /* Footer */
        .site-footer {
            background: #FFFFFF;
            border-top: 1px solid var(--border-light);
            padding-top: 48px;
            margin-top: 48px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            padding-bottom: 32px;
        }

        .footer-brand p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-top: 12px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-dark);
        }

        .footer-col h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 14px;
        }

        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            font-size: 14px;
            color: var(--text-secondary);
            text-decoration: none;
            transition: color var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--primary);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .footer-bottom {
            background: var(--bg-alt);
            border-top: 1px solid var(--border-light);
            padding: 16px 0;
        }

        .footer-bottom .container-main {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .footer-bottom a {
            color: var(--text-muted);
            font-size: 13px;
            text-decoration: none;
        }

        .footer-bottom a:hover {
            color: var(--primary);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            :root {
                --section-gap: 56px;
            }

            .page-hero h1 {
                font-size: 32px;
            }

            .score-layout {
                grid-template-columns: 1fr;
            }

            .detail-col {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }

            .detail-col .widget-card {
                grid-column: span 2;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: var(--nav-height);
                left: 0;
                right: 0;
                background: #FFFFFF;
                border-bottom: 1px solid var(--border);
                flex-direction: column;
                padding: 16px 20px;
                gap: 4px;
                box-shadow: var(--shadow-md);
                z-index: 99;
            }

            .nav-menu.open {
                display: flex;
            }

            .nav-menu a {
                padding: 12px 14px;
                border-radius: 6px;
                width: 100%;
                font-size: 15px;
            }

            .nav-menu a.active::after {
                display: none;
            }

            .nav-menu a.active {
                border-left: 3px solid var(--primary);
                border-radius: 0 6px 6px 0;
            }

            .nav-toggle {
                display: block;
            }

            .nav-cta .btn-sm {
                display: none;
            }

            .page-hero {
                padding: 40px 0 28px;
            }

            .page-hero h1 {
                font-size: 26px;
            }

            .page-hero .hero-sub {
                font-size: 15px;
            }

            .filter-bar {
                padding: 14px 16px;
                gap: 8px;
            }

            .filter-bar select,
            .filter-bar input[type="date"] {
                min-width: 100%;
                width: 100%;
            }

            .match-item {
                padding: 14px 16px;
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .match-status {
                flex-direction: row;
                gap: 8px;
            }

            .match-score-box {
                font-size: 18px;
            }

            .detail-col {
                grid-template-columns: 1fr;
            }

            .detail-col .widget-card {
                grid-column: span 1;
            }

            .deep-content {
                padding: 28px 20px;
            }

            .deep-content h2 {
                font-size: 22px;
            }

            .cta-section {
                padding: 32px 24px;
            }

            .cta-section h2 {
                font-size: 22px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-bottom .container-main {
                flex-direction: column;
                text-align: center;
                gap: 4px;
            }
        }

        @media (max-width: 520px) {
            :root {
                --section-gap: 40px;
            }

            .page-hero h1 {
                font-size: 22px;
            }

            .detail-score-row {
                font-size: 22px;
                gap: 8px;
            }

            .match-score-box {
                font-size: 16px;
            }

            .cta-form input {
                min-width: 100%;
            }

            .cta-form .btn-light {
                width: 100%;
            }
        }

/* roulang page: category5 */
:root {
        --primary: #1466B8;
        --primary-hover: #0C4F9E;
        --secondary: #0FA3A3;
        --secondary-hover: #0E8C8C;
        --accent: #F06A3A;
        --bg: #F5F8FC;
        --bg-alt: #F7FAFD;
        --card: #FFFFFF;
        --border: #E1E9F2;
        --border-light: #E4EDF8;
        --input-border: #D1DCE8;
        --text-dark: #14243D;
        --text-body: #2A3B52;
        --text-secondary: #5A6B7E;
        --text-muted: #8295AB;
        --shadow-sm: 0 6px 18px rgba(20, 36, 61, 0.06);
        --shadow-md: 0 10px 28px rgba(20, 36, 61, 0.12);
        --radius-card: 12px;
        --radius-btn: 8px;
        --radius-tag: 20px;
        --radius-input: 8px;
        --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
        --font-num: 'DIN', 'Inter', 'Roboto', 'PingFang SC', sans-serif;
        --max-width: 1200px;
        --nav-height: 60px;
        --section-gap: 48px;
        --transition: 0.2s ease;
    }

    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
    }

    body {
        font-family: var(--font-sans);
        font-size: 16px;
        line-height: 1.75;
        color: var(--text-body);
        background-color: var(--bg);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
        border: 0;
    }

    a {
        color: var(--primary);
        text-decoration: none;
        transition: color var(--transition);
    }

    a:hover {
        color: var(--secondary);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    button,
    input,
    textarea,
    select {
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    textarea:focus-visible {
        outline: 2px solid var(--secondary);
        outline-offset: 2px;
    }

    .container-main {
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 0 20px;
    }

    .section-gap {
        padding: var(--section-gap) 0;
    }

    .section-gap-sm {
        padding: 36px 0;
    }

    .text-center {
        text-align: center;
    }

    .text-primary {
        color: var(--primary);
    }

    .text-secondary {
        color: var(--secondary);
    }

    .text-muted {
        color: var(--text-muted);
    }

    /* Header & Navigation */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 100;
        background: #FFFFFF;
        border-bottom: 1px solid rgba(20, 36, 61, 0.08);
        height: var(--nav-height);
        display: flex;
        align-items: center;
    }

    .site-header .container-main {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 700;
        font-size: 22px;
        color: var(--text-dark);
        text-decoration: none;
        letter-spacing: -0.3px;
        flex-shrink: 0;
    }

    .nav-logo:hover {
        color: var(--primary);
        text-decoration: none;
    }

    .nav-logo-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        flex-shrink: 0;
    }

    .nav-logo-sub {
        font-size: 16px;
        font-weight: 600;
        background: var(--bg-alt);
        border-radius: 20px;
        padding: 4px 12px;
        color: var(--primary);
        margin-left: 6px;
        letter-spacing: 0;
    }

    .nav-menu {
        display: flex;
        align-items: center;
        gap: 8px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-menu>li {
        position: relative;
        margin: 0 4px;
    }

    .nav-menu a {
        display: block;
        padding: 8px 14px;
        font-size: 15px;
        font-weight: 500;
        color: var(--text-body);
        text-decoration: none;
        border-radius: 6px;
        transition: all var(--transition);
        white-space: nowrap;
    }

    .nav-menu a:hover {
        color: var(--primary);
        background: #F0F6FD;
        text-decoration: none;
    }

    .nav-menu a.active {
        color: var(--primary);
        background: #F0F6FD;
        font-weight: 600;
    }

    .nav-menu a.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 14px;
        right: 14px;
        height: 3px;
        background: var(--primary);
        border-radius: 2px 2px 0 0;
    }

    .nav-cta {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav-cta .btn-sm {
        padding: 7px 16px;
        font-size: 14px;
        border-radius: var(--radius-btn);
        font-weight: 500;
        border: 1px solid transparent;
        cursor: pointer;
        transition: all var(--transition);
        text-decoration: none;
        display: inline-block;
    }

    .nav-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 22px;
        color: var(--text-dark);
        cursor: pointer;
        padding: 6px 10px;
        border-radius: 6px;
        transition: all var(--transition);
    }

    .nav-toggle:hover {
        background: #F0F6FD;
        color: var(--primary);
    }

    /* Buttons */
    .btn-primary {
        background: var(--primary);
        color: #FFFFFF;
        border: 1px solid var(--primary);
        cursor: pointer;
        transition: all var(--transition);
        text-decoration: none;
        display: inline-block;
        border-radius: var(--radius-btn);
        padding: 10px 20px;
        font-weight: 500;
        font-size: 15px;
        line-height: 1.5;
        text-align: center;
    }

    .btn-primary:hover {
        background: var(--primary-hover);
        border-color: var(--primary-hover);
        color: #FFFFFF;
        text-decoration: none;
        transform: translateY(-1px);
        box-shadow: var(--shadow-sm);
    }

    .btn-sm.btn-primary {
        padding: 7px 16px;
        font-size: 14px;
    }

    .btn-secondary {
        background: transparent;
        color: var(--primary);
        border: 1px solid var(--primary);
        cursor: pointer;
        transition: all var(--transition);
        text-decoration: none;
        display: inline-block;
        border-radius: var(--radius-btn);
        padding: 10px 20px;
        font-weight: 500;
        font-size: 15px;
        line-height: 1.5;
        text-align: center;
    }

    .btn-secondary:hover {
        background: #E9F1FA;
        color: var(--primary);
        text-decoration: none;
        transform: translateY(-1px);
        box-shadow: var(--shadow-sm);
    }

    .btn-xs {
        padding: 5px 12px;
        font-size: 13px;
        border-radius: 6px;
        font-weight: 500;
        border: 1px solid transparent;
        cursor: pointer;
        transition: all var(--transition);
        text-decoration: none;
        display: inline-block;
    }

    .btn-xs.btn-outline {
        background: transparent;
        color: var(--primary);
        border: 1px solid var(--primary);
    }

    .btn-xs.btn-outline:hover {
        background: #E9F1FA;
        color: var(--primary);
        text-decoration: none;
    }

    /* Tags / Badges */
    .tag {
        display: inline-block;
        padding: 3px 10px;
        border-radius: var(--radius-tag);
        font-size: 12px;
        font-weight: 600;
        line-height: 1.6;
        letter-spacing: 0.2px;
    }

    .tag-blue {
        background: #E9F1FA;
        color: var(--primary);
    }

    .tag-green {
        background: #E0F4F4;
        color: var(--secondary-hover);
    }

    .tag-orange {
        background: #FDEAE3;
        color: var(--accent);
    }

    .tag-gray {
        background: #F0F3F8;
        color: var(--text-secondary);
    }

    /* Cards */
    .card {
        background: var(--card);
        border-radius: var(--radius-card);
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
        padding: 20px;
        transition: all var(--transition);
    }

    .card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
        border-color: var(--border-light);
    }

    /* Page Hero */
    .page-hero {
        background: linear-gradient(135deg, #FFFFFF 0%, #F0F6FD 55%, #E8F3FA 100%);
        border-bottom: 1px solid var(--border-light);
        padding: 36px 0 28px;
        position: relative;
        overflow: hidden;
    }

    .page-hero::before {
        content: '';
        position: absolute;
        top: -40px;
        right: -60px;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: rgba(20, 102, 184, 0.06);
        pointer-events: none;
    }

    .page-hero::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: 15%;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(15, 163, 163, 0.05);
        pointer-events: none;
    }

    .page-hero .container-main {
        position: relative;
        z-index: 1;
    }

    .page-hero h1 {
        font-size: 28px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 10px;
        letter-spacing: -0.5px;
        line-height: 1.35;
    }

    .page-hero .hero-sub {
        font-size: 16px;
        color: var(--text-secondary);
        max-width: 780px;
        line-height: 1.7;
        margin-bottom: 0;
    }

    .page-hero .hero-meta {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-top: 14px;
        flex-wrap: wrap;
    }

    .page-hero .hero-meta span {
        font-size: 13px;
        color: var(--text-muted);
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .page-hero .hero-meta i {
        color: var(--secondary);
        font-size: 14px;
    }

    /* News Layout */
    .news-layout {
        display: grid;
        grid-template-columns: 1fr 340px;
        gap: 28px;
        align-items: start;
    }

    .news-main {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .news-item {
        background: var(--card);
        border-radius: var(--radius-card);
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
        padding: 22px 24px;
        transition: all var(--transition);
        display: flex;
        gap: 18px;
        align-items: flex-start;
    }

    .news-item:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
        border-color: #C9DCF5;
    }

    .news-date {
        flex-shrink: 0;
        width: 64px;
        text-align: center;
        background: var(--bg-alt);
        border-radius: 10px;
        padding: 8px 6px;
        border: 1px solid var(--border-light);
    }

    .news-date .day {
        font-family: var(--font-num);
        font-size: 24px;
        font-weight: 700;
        color: var(--primary);
        display: block;
        line-height: 1.2;
    }

    .news-date .month {
        font-size: 12px;
        color: var(--text-secondary);
        display: block;
        margin-top: 2px;
    }

    .news-date .year {
        font-size: 11px;
        color: var(--text-muted);
        display: block;
        margin-top: 2px;
    }

    .news-content {
        flex: 1;
        min-width: 0;
    }

    .news-content .news-tags {
        display: flex;
        gap: 6px;
        flex-wrap: wrap;
        margin-bottom: 8px;
    }

    .news-content h2 {
        font-size: 17px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 8px;
        line-height: 1.5;
        letter-spacing: -0.2px;
    }

    .news-content h2 a {
        color: var(--text-dark);
        text-decoration: none;
        transition: color var(--transition);
    }

    .news-content h2 a:hover {
        color: var(--primary);
        text-decoration: none;
    }

    .news-content .news-excerpt {
        font-size: 14px;
        color: var(--text-secondary);
        line-height: 1.75;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-content .news-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 8px;
    }

    .news-content .news-meta {
        font-size: 12px;
        color: var(--text-muted);
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .news-content .news-meta i {
        color: var(--secondary);
    }

    .news-content .btn-xs {
        flex-shrink: 0;
    }

    /* Sidebar */
    .news-sidebar {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .sidebar-card {
        background: var(--card);
        border-radius: var(--radius-card);
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
        padding: 18px 20px;
    }

    .sidebar-card h3 {
        font-size: 16px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 14px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--border-light);
        position: relative;
        letter-spacing: -0.2px;
    }

    .sidebar-card h3::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 48px;
        height: 2px;
        background: var(--primary);
        border-radius: 1px;
    }

    .hot-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .hot-tags .tag {
        cursor: pointer;
        transition: all var(--transition);
        text-decoration: none;
    }

    .hot-tags .tag:hover {
        transform: translateY(-1px);
        box-shadow: var(--shadow-sm);
        text-decoration: none;
    }

    .hot-room-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hot-room-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 10px;
        border-radius: 8px;
        background: var(--bg-alt);
        border: 1px solid var(--border-light);
        transition: all var(--transition);
        font-size: 13px;
        color: var(--text-body);
    }

    .hot-room-list li:hover {
        background: #E9F1FA;
        border-color: #C9DCF5;
        transform: translateX(3px);
    }

    .hot-room-list li i {
        color: var(--accent);
        font-size: 12px;
        flex-shrink: 0;
    }

    .hot-room-list li span {
        flex: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hot-room-list li .status-badge {
        flex-shrink: 0;
        font-size: 11px;
        padding: 2px 8px;
        border-radius: 10px;
        background: #E0F4F4;
        color: var(--secondary-hover);
        font-weight: 600;
    }

    .hot-room-list li .status-badge.live {
        background: #FDEAE3;
        color: var(--accent);
    }

    .schedule-mini {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .schedule-mini li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        color: var(--text-body);
        padding: 7px 4px;
        border-bottom: 1px dashed var(--border-light);
    }

    .schedule-mini li:last-child {
        border-bottom: none;
    }

    .schedule-mini .time {
        font-family: var(--font-num);
        font-weight: 700;
        color: var(--primary);
        flex-shrink: 0;
        font-size: 13px;
        min-width: 40px;
    }

    .schedule-mini .matchup {
        flex: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .schedule-mini .league {
        font-size: 11px;
        color: var(--text-muted);
        flex-shrink: 0;
    }

    /* Filter bar */
    .filter-bar {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 18px;
        padding: 12px 16px;
        background: var(--card);
        border-radius: 10px;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
    }

    .filter-bar .filter-label {
        font-size: 13px;
        color: var(--text-secondary);
        font-weight: 500;
        margin-right: 4px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .filter-bar .filter-label i {
        color: var(--primary);
    }

    .filter-bar .filter-btn {
        padding: 5px 14px;
        font-size: 13px;
        border-radius: 20px;
        border: 1px solid var(--border);
        background: #FFFFFF;
        color: var(--text-secondary);
        cursor: pointer;
        transition: all var(--transition);
        text-decoration: none;
        display: inline-block;
        font-weight: 500;
        line-height: 1.6;
    }

    .filter-bar .filter-btn:hover {
        border-color: var(--primary);
        color: var(--primary);
        background: #F0F6FD;
        text-decoration: none;
    }

    .filter-bar .filter-btn.active {
        background: var(--primary);
        color: #FFFFFF;
        border-color: var(--primary);
        font-weight: 600;
    }

    /* Deep content section */
    .deep-content {
        background: var(--card);
        border-radius: var(--radius-card);
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
        padding: 28px 30px;
        margin-top: 24px;
    }

    .deep-content h2 {
        font-size: 20px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 14px;
        letter-spacing: -0.3px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .deep-content h2 i {
        color: var(--secondary);
        font-size: 20px;
    }

    .deep-content p {
        font-size: 15px;
        color: var(--text-body);
        line-height: 1.85;
        margin-bottom: 14px;
        text-align: justify;
    }

    .deep-content p:last-child {
        margin-bottom: 0;
    }

    .deep-content .highlight-inline {
        color: var(--primary);
        font-weight: 600;
    }

    .deep-content .highlight-accent {
        color: var(--accent);
        font-weight: 600;
    }

    /* Footer */
    .site-footer {
        background: #FFFFFF;
        border-top: 1px solid var(--border-light);
        padding: 40px 0 0;
        margin-top: 30px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 30px;
        padding-bottom: 30px;
    }

    .footer-brand p {
        font-size: 14px;
        color: var(--text-secondary);
        line-height: 1.75;
        margin-top: 12px;
        max-width: 340px;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 700;
        font-size: 20px;
        color: var(--text-dark);
        text-decoration: none;
    }

    .footer-logo:hover {
        color: var(--primary);
        text-decoration: none;
    }

    .footer-col h4 {
        font-size: 15px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 14px;
        letter-spacing: -0.2px;
    }

    .footer-col ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .footer-col ul li a {
        font-size: 14px;
        color: var(--text-secondary);
        text-decoration: none;
        transition: all var(--transition);
    }

    .footer-col ul li a:hover {
        color: var(--primary);
        text-decoration: none;
        padding-left: 4px;
    }

    .footer-bottom {
        background: var(--bg-alt);
        padding: 14px 0;
        border-top: 1px solid var(--border-light);
    }

    .footer-bottom .container-main {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        font-size: 13px;
        color: var(--text-muted);
    }

    .footer-bottom a {
        color: var(--text-muted);
        text-decoration: none;
        transition: color var(--transition);
    }

    .footer-bottom a:hover {
        color: var(--primary);
        text-decoration: none;
    }

    .footer-bottom span {
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .news-layout {
            grid-template-columns: 1fr;
            gap: 22px;
        }
        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
    }

    @media (max-width: 768px) {
        .nav-menu {
            display: none;
            position: absolute;
            top: var(--nav-height);
            left: 0;
            right: 0;
            background: #FFFFFF;
            flex-direction: column;
            align-items: flex-start;
            padding: 16px 20px;
            gap: 4px;
            border-bottom: 3px solid var(--border-light);
            box-shadow: 0 10px 24px rgba(20, 36, 61, 0.08);
            max-height: calc(100vh - var(--nav-height));
            overflow-y: auto;
        }
        .nav-menu.open {
            display: flex;
        }
        .nav-menu li {
            width: 100%;
            margin: 0;
        }
        .nav-menu a {
            padding: 10px 14px;
            font-size: 16px;
            width: 100%;
            display: block;
        }
        .nav-menu a.active::after {
            display: none;
        }
        .nav-menu a.active {
            border-left: 3px solid var(--primary);
            border-radius: 0 6px 6px 0;
        }
        .nav-cta {
            display: none;
        }
        .nav-toggle {
            display: block;
        }
        .page-hero h1 {
            font-size: 22px;
        }
        .page-hero .hero-sub {
            font-size: 15px;
        }
        .news-item {
            flex-direction: column;
            gap: 12px;
            padding: 16px 18px;
        }
        .news-date {
            width: auto;
            text-align: left;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            background: #F0F6FD;
        }
        .news-date .day {
            font-size: 18px;
        }
        .news-date .month,
        .news-date .year {
            display: inline;
            font-size: 12px;
            margin-top: 0;
        }
        .filter-bar {
            padding: 10px 12px;
            gap: 6px;
        }
        .deep-content {
            padding: 20px 18px;
        }
        .deep-content h2 {
            font-size: 18px;
        }
        .deep-content p {
            font-size: 15px;
        }
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .footer-brand p {
            max-width: 100%;
        }
        .footer-bottom .container-main {
            flex-direction: column;
            align-items: flex-start;
        }
    }

    @media (max-width: 520px) {
        .container-main {
            padding: 0 14px;
        }
        .page-hero {
            padding: 24px 0 20px;
        }
        .page-hero h1 {
            font-size: 20px;
            line-height: 1.4;
        }
        .page-hero .hero-meta {
            flex-direction: column;
            align-items: flex-start;
            gap: 6px;
        }
        .news-content h2 {
            font-size: 16px;
        }
        .news-content .news-excerpt {
            -webkit-line-clamp: 4;
        }
        .news-content .news-footer {
            flex-direction: column;
            align-items: flex-start;
        }
        .filter-bar .filter-label {
            width: 100%;
        }
        .filter-bar .filter-btn {
            padding: 4px 10px;
            font-size: 12px;
        }
        .sidebar-card {
            padding: 14px 16px;
        }
        .deep-content {
            padding: 16px 14px;
        }
    }
