/* roulang page: index */
:root {
            --primary: #1A6BD5;
            --primary-hover: #1559B5;
            --primary-light: #EEF3FA;
            --accent: #0EA5E9;
            --pitch: #10B981;
            --live: #E11D48;
            --amber: #F59E0B;
            --surface: #F8FAFC;
            --card: #FFFFFF;
            --ink: #1E293B;
            --muted: #64748B;
            --border: #E2E8F0;
            --subtle: #EEF3FA;
            --radius-card: 14px;
            --radius-btn: 8px;
            --radius-img: 12px;
            --shadow-card: 0 4px 20px rgba(15, 23, 42, 0.06);
            --shadow-card-hover: 0 8px 28px rgba(15, 23, 42, 0.10);
            --section-padding: 88px 0;
            --container-padding: 0 24px;
            --transition-base: all 0.25s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Inter", "Roboto", sans-serif;
            background-color: var(--surface);
            color: var(--ink);
            line-height: 1.7;
            font-size: 16px;
            min-height: 100vh;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-img);
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-base);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .site-container {
            max-width: var(--max-w-site, 1200px);
            margin-left: auto;
            margin-right: auto;
            padding: var(--container-padding, 0 24px);
            width: 100%;
        }

        /* Navigation */
        .site-header {
            background: #FFFFFF;
            border-bottom: 1px solid var(--border);
            height: 68px;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            background: rgba(255, 255, 255, 0.96);
        }

        .site-header .site-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }

        .nav-logo {
            font-weight: 700;
            font-size: 22px;
            letter-spacing: 0.5px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .nav-logo .logo-icon {
            width: 34px;
            height: 34px;
            background: var(--primary);
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links li a {
            font-size: 15px;
            font-weight: 500;
            color: var(--ink);
            padding: 8px 0;
            position: relative;
            white-space: nowrap;
            transition: var(--transition-base);
        }

        .nav-links li a:hover {
            color: var(--primary);
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition-base);
            border-radius: 2px;
        }

        .nav-links li a:hover::after,
        .nav-links li a.active::after {
            width: 100%;
        }

        .nav-links li a.active {
            color: var(--primary);
            font-weight: 600;
        }

        .nav-cta {
            background: var(--primary);
            color: #fff;
            padding: 10px 22px;
            border-radius: var(--radius-btn);
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .nav-cta:hover {
            background: var(--primary-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(26, 107, 213, 0.3);
        }

        .nav-cta:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--ink);
            cursor: pointer;
            padding: 4px 8px;
        }

        .hamburger:hover {
            color: var(--primary);
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 68px;
            left: 0;
            right: 0;
            background: #FFFFFF;
            border-bottom: 1px solid var(--border);
            padding: 16px 24px;
            box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
            z-index: 99;
        }

        .mobile-menu.open {
            display: block;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu ul li a {
            display: block;
            padding: 14px 8px;
            font-size: 15px;
            font-weight: 500;
            color: var(--ink);
            border-bottom: 1px solid var(--border);
            transition: var(--transition-base);
        }

        .mobile-menu ul li a:hover {
            color: var(--primary);
            background: var(--primary-light);
            border-radius: 6px;
        }

        .mobile-menu .mobile-cta {
            margin-top: 14px;
            display: block;
            width: 100%;
            text-align: center;
        }

        /* Hero */
        .hero-section {
            background: linear-gradient(135deg, #F8FAFC 0%, #EEF3FA 40%, #E8F0FB 100%);
            padding: 88px 0 64px;
            position: relative;
            overflow: hidden;
            min-height: 75vh;
            display: flex;
            align-items: center;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -180px;
            right: -180px;
            width: 480px;
            height: 480px;
            background: radial-gradient(circle, rgba(26, 107, 213, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-title {
            font-size: clamp(34px, 5vw, 52px);
            font-weight: 800;
            line-height: 1.2;
            color: var(--ink);
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .hero-title .highlight {
            color: var(--primary);
            position: relative;
        }

        .hero-subtitle {
            font-size: 17px;
            color: var(--muted);
            line-height: 1.8;
            margin-bottom: 32px;
            max-width: 520px;
        }

        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 32px;
        }

        .hero-badge {
            background: #FFFFFF;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 6px 16px;
            font-size: 13px;
            font-weight: 500;
            color: var(--ink);
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
        }

        .hero-badge .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--pitch);
            flex-shrink: 0;
        }

        .hero-badge .dot.live-dot {
            background: var(--live);
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.6;
                transform: scale(1.4);
            }
        }

        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
            padding: 14px 32px;
            border-radius: var(--radius-btn);
            font-size: 16px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition-base);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(26, 107, 213, 0.3);
        }

        .btn-primary:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        .btn-secondary {
            background: #FFFFFF;
            color: var(--primary);
            padding: 14px 32px;
            border-radius: var(--radius-btn);
            font-size: 16px;
            font-weight: 600;
            border: 1.5px solid var(--primary);
            cursor: pointer;
            transition: var(--transition-base);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-secondary:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            border-color: var(--primary);
            box-shadow: 0 4px 16px rgba(26, 107, 213, 0.15);
        }

        .btn-secondary:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        .hero-visual {
            position: relative;
            height: 420px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-card-hover);
            background: url('/assets/images/fa0cb0ea7fc6bea6.webp') center/cover no-repeat;
        }

        .hero-visual::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(26, 107, 213, 0.15) 0%, rgba(30, 41, 59, 0.35) 100%);
            border-radius: 16px;
        }

        .hero-visual .overlay-card {
            position: absolute;
            bottom: 24px;
            left: 24px;
            right: 24px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 12px;
            padding: 20px;
            z-index: 2;
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
        }

        .hero-visual .overlay-card .match-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }

        .hero-visual .overlay-card .team-name {
            font-weight: 700;
            font-size: 16px;
            color: var(--ink);
        }

        .hero-visual .overlay-card .score {
            font-weight: 800;
            font-size: 26px;
            color: var(--primary);
            letter-spacing: 2px;
        }

        .hero-visual .overlay-card .match-status {
            font-size: 12px;
            color: var(--live);
            font-weight: 600;
        }

        /* Section Base */
        .section {
            padding: var(--section-padding);
        }

        .section-alt {
            background: #FFFFFF;
        }

        .section-subtle {
            background: var(--subtle);
        }

        .section-header {
            margin-bottom: 48px;
        }

        .section-header h2 {
            font-size: clamp(26px, 3.5vw, 34px);
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 12px;
            letter-spacing: -0.3px;
        }

        .section-header p {
            font-size: 16px;
            color: var(--muted);
            max-width: 720px;
            line-height: 1.8;
        }

        /* Stats Bar */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            padding: 28px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .stat-item {
            text-align: center;
            padding: 8px 12px;
        }

        .stat-number {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.5px;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 14px;
            color: var(--muted);
            font-weight: 500;
        }

        /* Feature Cards */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }

        .feature-card {
            background: #FFFFFF;
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            padding: 28px;
            box-shadow: var(--shadow-card);
            transition: var(--transition-base);
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(26, 107, 213, 0.3);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: var(--primary-light);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 20px;
            margin-bottom: 16px;
        }

        .feature-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 8px;
        }

        .feature-card p {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.7;
        }

        /* Scene Cards */
        .scene-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }

        .scene-card {
            position: relative;
            border-radius: var(--radius-card);
            overflow: hidden;
            height: 240px;
            cursor: pointer;
            transition: var(--transition-base);
        }

        .scene-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
        }

        .scene-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
        }

        .scene-card .scene-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.15) 60%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            border-radius: var(--radius-card);
        }

        .scene-card .scene-title {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }

        .scene-card .scene-desc {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.85);
        }

        /* Demo Section */
        .demo-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .demo-visual {
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card-hover);
            background: url('/assets/images/353f2f826993d4a8.webp') center/cover no-repeat;
            height: 380px;
            position: relative;
        }

        .demo-visual::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(26, 107, 213, 0.08);
            border-radius: 14px;
        }

        .demo-steps {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .demo-step {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            background: #FFFFFF;
            border-radius: 10px;
            padding: 16px 20px;
            border: 1px solid var(--border);
            transition: var(--transition-base);
        }

        .demo-step:hover {
            border-color: rgba(26, 107, 213, 0.3);
            box-shadow: var(--shadow-card);
        }

        .step-num {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            flex-shrink: 0;
        }

        .demo-step h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 4px;
        }

        .demo-step p {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.6;
        }

        /* Brand Intro */
        .brand-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 48px;
            align-items: center;
        }

        .brand-image {
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card-hover);
            height: 320px;
            background: url('/assets/images/45ebbf228dd7be97.webp') center/cover no-repeat;
        }

        .brand-text h2 {
            font-size: clamp(24px, 3vw, 30px);
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 20px;
        }

        .brand-text p {
            font-size: 15px;
            color: var(--muted);
            line-height: 2.0;
            margin-bottom: 16px;
        }

        /* Testimonial Cards */
        .case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .case-card {
            background: #FFFFFF;
            border-radius: var(--radius-card);
            padding: 28px;
            border-left: 4px solid var(--primary);
            box-shadow: var(--shadow-card);
            transition: var(--transition-base);
        }

        .case-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-card-hover);
        }

        .case-card .case-name {
            font-weight: 700;
            font-size: 16px;
            color: var(--ink);
            margin-bottom: 4px;
        }

        .case-card .case-tag {
            font-size: 12px;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 12px;
        }

        .case-card p {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 12px;
        }

        .case-card .case-result {
            font-size: 13px;
            color: var(--pitch);
            font-weight: 600;
        }

        /* Pricing */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            align-items: stretch;
        }

        .pricing-card {
            background: #FFFFFF;
            border-radius: var(--radius-card);
            padding: 32px 28px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
            transition: var(--transition-base);
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
        }

        .pricing-card.featured {
            border: 2px solid var(--primary);
            background: var(--primary-light);
        }

        .pricing-card .plan-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--muted);
            margin-bottom: 8px;
        }

        .pricing-card .plan-price {
            font-size: 36px;
            font-weight: 800;
            color: var(--ink);
            margin-bottom: 4px;
        }

        .pricing-card .plan-price span {
            font-size: 15px;
            font-weight: 500;
            color: var(--muted);
        }

        .pricing-card .plan-tag {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--primary);
            color: #fff;
            font-size: 11px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 16px;
        }

        .pricing-card ul {
            list-style: none;
            padding: 0;
            margin: 20px 0 24px;
            flex: 1;
        }

        .pricing-card ul li {
            padding: 8px 0;
            font-size: 14px;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid var(--border);
        }

        .pricing-card ul li:last-child {
            border-bottom: none;
        }

        .pricing-card ul li i {
            color: var(--pitch);
            font-size: 14px;
            flex-shrink: 0;
        }

        .btn-price {
            background: var(--primary);
            color: #fff;
            padding: 12px 20px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition-base);
            width: 100%;
            text-align: center;
        }

        .btn-price:hover {
            background: var(--primary-hover);
            box-shadow: 0 4px 16px rgba(26, 107, 213, 0.3);
        }

        /* Review Wall */
        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }

        .review-card {
            background: #FFFFFF;
            border-radius: var(--radius-card);
            padding: 24px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            transition: var(--transition-base);
        }

        .review-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-card-hover);
        }

        .review-stars {
            color: var(--amber);
            font-size: 14px;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .review-card .review-text {
            font-size: 14px;
            color: var(--ink);
            line-height: 1.7;
            margin-bottom: 12px;
        }

        .review-card .review-author {
            font-size: 13px;
            color: var(--muted);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .review-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 14px;
            font-weight: 700;
            flex-shrink: 0;
        }

        /* Community Buzz */
        .buzz-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .buzz-tag {
            background: var(--subtle);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 8px 18px;
            font-size: 14px;
            font-weight: 500;
            color: var(--ink);
            transition: var(--transition-base);
            cursor: default;
        }

        .buzz-tag:hover {
            background: var(--primary-light);
            border-color: rgba(26, 107, 213, 0.3);
            color: var(--primary);
        }

        /* News List */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 0;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            overflow: hidden;
            background: #FFFFFF;
            box-shadow: var(--shadow-card);
        }

        .news-item {
            display: flex;
            gap: 16px;
            padding: 20px 24px;
            border-bottom: 1px solid var(--border);
            align-items: center;
            transition: var(--transition-base);
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-item:hover {
            background: var(--primary-light);
        }

        .news-thumb {
            width: 90px;
            height: 64px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .news-info {
            flex: 1;
        }

        .news-info h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 4px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-info p {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-date {
            font-size: 12px;
            color: var(--muted);
            white-space: nowrap;
            flex-shrink: 0;
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #FFFFFF;
            border-radius: 10px;
            border: 1px solid var(--border);
            overflow: hidden;
            transition: var(--transition-base);
        }

        .faq-item:hover {
            border-color: rgba(26, 107, 213, 0.3);
        }

        .faq-question {
            padding: 18px 24px;
            font-size: 15px;
            font-weight: 600;
            color: var(--ink);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            background: #FFFFFF;
            border: none;
            width: 100%;
            text-align: left;
            transition: var(--transition-base);
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-question .faq-icon {
            font-size: 14px;
            color: var(--muted);
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .faq-item.open .faq-question .faq-icon {
            transform: rotate(180deg);
            color: var(--primary);
        }

        .faq-answer {
            padding: 0 24px 18px;
            font-size: 14px;
            color: var(--muted);
            line-height: 1.8;
            display: none;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        /* CTA Section */
        .cta-section {
            background: #FFFFFF;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 56px 40px;
            text-align: center;
            box-shadow: var(--shadow-card);
            max-width: 900px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: clamp(24px, 3vw, 30px);
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 12px;
        }

        .cta-section p {
            font-size: 15px;
            color: var(--muted);
            margin-bottom: 28px;
            line-height: 1.7;
        }

        /* Footer */
        .site-footer {
            background: var(--ink);
            color: rgba(255, 255, 255, 0.85);
            padding: 48px 0 24px;
            margin-top: 64px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand .nav-logo {
            color: #FFFFFF;
            margin-bottom: 12px;
        }

        .footer-brand p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
        }

        .footer-col h4 {
            font-size: 15px;
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 16px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition-base);
        }

        .footer-col ul li a:hover {
            color: #FFFFFF;
            text-decoration: underline;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 20px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.55);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-bottom a:hover {
            color: #FFFFFF;
        }

        /* Button base */
        .btn-sm {
            padding: 8px 16px;
            font-size: 13px;
            font-weight: 600;
            border-radius: 6px;
            border: 1px solid var(--border);
            background: #FFFFFF;
            color: var(--ink);
            cursor: pointer;
            transition: var(--transition-base);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .btn-sm:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
        }

        /* Badge base */
        .badge {
            display: inline-block;
            padding: 3px 10px;
            font-size: 11px;
            font-weight: 600;
            border-radius: 6px;
            line-height: 1.4;
        }

        .badge-live {
            background: var(--live);
            color: #fff;
        }

        .badge-upcoming {
            background: var(--amber);
            color: #fff;
        }

        .badge-ended {
            background: #94A3B8;
            color: #fff;
        }

        .badge-hot {
            background: var(--primary-light);
            color: var(--primary);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero-visual {
                height: 320px;
            }
            .demo-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .brand-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .brand-image {
                height: 240px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-padding: 56px 0;
                --container-padding: 0 16px;
            }
            .site-header {
                height: 60px;
            }
            .nav-links {
                display: none;
            }
            .nav-cta-wrapper {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero-section {
                padding: 48px 0;
                min-height: auto;
            }
            .hero-title {
                font-size: 28px;
            }
            .hero-subtitle {
                font-size: 15px;
            }
            .hero-visual {
                height: 240px;
            }
            .hero-visual .overlay-card .score {
                font-size: 20px;
            }
            .section-header h2 {
                font-size: 24px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .card-grid,
            .scene-grid,
            .pricing-grid,
            .review-grid,
            .case-grid {
                grid-template-columns: 1fr;
            }
            .news-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
            .news-thumb {
                width: 100%;
                height: 160px;
            }
            .news-date {
                white-space: normal;
            }
            .cta-section {
                padding: 36px 20px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 520px) {
            .hero-title {
                font-size: 24px;
            }
            .hero-badges {
                gap: 6px;
            }
            .hero-badge {
                font-size: 11px;
                padding: 4px 10px;
            }
            .btn-primary,
            .btn-secondary {
                padding: 12px 20px;
                font-size: 14px;
                width: 100%;
                justify-content: center;
            }
            .hero-actions {
                flex-direction: column;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .stat-number {
                font-size: 24px;
            }
            .demo-visual {
                height: 200px;
            }
            .faq-question {
                padding: 14px 16px;
                font-size: 14px;
            }
            .faq-answer {
                padding: 0 16px 14px;
                font-size: 13px;
            }
        }

/* roulang page: category1 */
:root {
            --primary: #1A6BD5;
            --primary-hover: #1559B5;
            --primary-light: #EEF3FA;
            --accent: #0EA5E9;
            --pitch: #10B981;
            --live: #E11D48;
            --amber: #F59E0B;
            --surface: #F8FAFC;
            --card: #FFFFFF;
            --ink: #1E293B;
            --muted: #64748B;
            --border: #E2E8F0;
            --subtle: #EEF3FA;
            --radius-card: 14px;
            --radius-btn: 8px;
            --radius-img: 12px;
            --shadow-card: 0 4px 20px rgba(15, 23, 42, 0.06);
            --shadow-card-hover: 0 8px 28px rgba(15, 23, 42, 0.10);
            --section-padding: 76px 0;
            --container-padding: 0 24px;
            --max-w-site: 1200px;
            --transition-base: all 0.25s ease;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Inter", "Roboto", sans-serif;
            background-color: var(--surface);
            color: var(--ink);
            line-height: 1.7;
            font-size: 16px;
            min-height: 100vh;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        *,
        *::before,
        *::after {
            box-sizing: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-img);
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-base);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .site-container {
            max-width: var(--max-w-site, 1200px);
            margin-left: auto;
            margin-right: auto;
            padding: var(--container-padding, 0 24px);
            width: 100%;
        }

        /* Navigation */
        .site-header {
            background: #FFFFFF;
            border-bottom: 1px solid var(--border);
            height: 68px;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            background: rgba(255, 255, 255, 0.96);
        }

        .site-header .site-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }

        .nav-logo {
            font-weight: 700;
            font-size: 22px;
            letter-spacing: 0.5px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .nav-logo .logo-icon {
            width: 34px;
            height: 34px;
            background: var(--primary);
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links li a {
            font-size: 15px;
            font-weight: 500;
            color: var(--ink);
            padding: 8px 0;
            position: relative;
            white-space: nowrap;
            transition: var(--transition-base);
        }

        .nav-links li a:hover {
            color: var(--primary);
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition-base);
            border-radius: 2px;
        }

        .nav-links li a:hover::after,
        .nav-links li a.active::after {
            width: 100%;
        }

        .nav-links li a.active {
            color: var(--primary);
            font-weight: 600;
        }

        .nav-cta {
            background: var(--primary);
            color: #fff;
            padding: 10px 22px;
            border-radius: var(--radius-btn);
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .nav-cta:hover {
            background: var(--primary-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(26, 107, 213, 0.3);
        }

        .nav-cta:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--ink);
            cursor: pointer;
            padding: 4px 8px;
        }

        .hamburger:hover {
            color: var(--primary);
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 68px;
            left: 0;
            right: 0;
            background: #FFFFFF;
            border-bottom: 1px solid var(--border);
            padding: 16px 24px;
            box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
            z-index: 99;
        }

        .mobile-menu.open {
            display: block;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu ul li a {
            display: block;
            padding: 14px 8px;
            font-size: 15px;
            font-weight: 500;
            color: var(--ink);
            border-bottom: 1px solid var(--border);
            transition: var(--transition-base);
        }

        .mobile-menu ul li a:hover {
            color: var(--primary);
            background: var(--primary-light);
            border-radius: 6px;
        }

        .mobile-menu .mobile-cta {
            margin-top: 14px;
            display: block;
            width: 100%;
            text-align: center;
            background: var(--primary);
            color: #fff;
            padding: 12px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            border: none;
            cursor: pointer;
        }

        /* Section common */
        .section {
            padding: var(--section-padding);
        }

        .section-alt {
            background: var(--subtle);
        }

        .section-white {
            background: #FFFFFF;
        }

        /* Banner */
        .page-banner {
            background: var(--primary-light);
            border-bottom: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            min-height: 280px;
            display: flex;
            align-items: center;
            padding: 48px 0;
        }

        .page-banner .banner-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center 30%;
            opacity: 0.12;
            pointer-events: none;
        }

        .page-banner .banner-content {
            position: relative;
            z-index: 2;
        }

        .page-banner h1 {
            font-size: 44px;
            font-weight: 700;
            color: var(--ink);
            line-height: 1.2;
            margin: 0 0 12px 0;
        }

        .page-banner p {
            font-size: 17px;
            color: var(--muted);
            max-width: 640px;
            margin: 0;
            line-height: 1.8;
        }

        /* Breadcrumb */
        .breadcrumb-wrap {
            background: #FFFFFF;
            border-bottom: 1px solid var(--border);
            padding: 14px 0;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--muted);
            list-style: none;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
        }

        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .breadcrumb li a {
            color: var(--muted);
            transition: var(--transition-base);
        }

        .breadcrumb li a:hover {
            color: var(--primary);
        }

        .breadcrumb li .sep {
            color: var(--border);
            font-size: 12px;
        }

        .breadcrumb li.current {
            color: var(--primary);
            font-weight: 600;
        }

        /* Filter bar */
        .filter-bar {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }

        .filter-chip {
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            border: 1px solid var(--border);
            background: #FFFFFF;
            color: var(--muted);
            cursor: pointer;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .filter-chip:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
        }

        .filter-chip.active {
            background: var(--primary);
            color: #FFFFFF;
            border-color: var(--primary);
        }

        /* Live card grid */
        .live-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .live-card {
            background: #FFFFFF;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: var(--transition-base);
            display: flex;
            flex-direction: column;
        }

        .live-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(26, 107, 213, 0.3);
            transform: translateY(-2px);
        }

        .live-card .card-img {
            position: relative;
            height: 180px;
            overflow: hidden;
            border-radius: 0;
        }

        .live-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
        }

        .live-card .live-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .live-badge.red {
            background: var(--live);
            color: #fff;
        }

        .live-badge.amber {
            background: var(--amber);
            color: #fff;
        }

        .live-badge.gray {
            background: #64748B;
            color: #fff;
        }

        .live-card .card-body {
            padding: 20px 24px 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .live-card .league-tag {
            font-size: 13px;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 8px;
            letter-spacing: 0.3px;
        }

        .live-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--ink);
            margin: 0 0 6px 0;
            line-height: 1.4;
        }

        .live-card .matchup {
            font-size: 16px;
            color: var(--ink);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .live-card .match-time {
            font-size: 14px;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .live-card .card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            padding-top: 16px;
            border-top: 1px solid var(--border);
        }

        .live-card .watch-btn {
            padding: 8px 18px;
            border-radius: var(--radius-btn);
            font-size: 13px;
            font-weight: 600;
            border: 1px solid var(--primary);
            color: var(--primary);
            background: #fff;
            cursor: pointer;
            transition: var(--transition-base);
        }

        .live-card .watch-btn:hover {
            background: var(--primary);
            color: #fff;
        }

        .live-card .viewers {
            font-size: 13px;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* Schedule table */
        .schedule-group {
            background: #FFFFFF;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: var(--shadow-card);
        }

        .schedule-group-header {
            padding: 14px 24px;
            background: var(--primary-light);
            border-bottom: 1px solid var(--border);
            font-weight: 700;
            font-size: 16px;
            color: var(--ink);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .schedule-item {
            display: flex;
            align-items: center;
            padding: 16px 24px;
            border-bottom: 1px solid var(--border);
            transition: var(--transition-base);
            gap: 16px;
            flex-wrap: wrap;
        }

        .schedule-item:last-child {
            border-bottom: none;
        }

        .schedule-item:hover {
            background: var(--surface);
        }

        .schedule-item .s-time {
            font-size: 15px;
            font-weight: 700;
            color: var(--ink);
            min-width: 70px;
        }

        .schedule-item .s-league {
            font-size: 13px;
            color: var(--primary);
            font-weight: 600;
            min-width: 90px;
        }

        .schedule-item .s-match {
            font-size: 15px;
            color: var(--ink);
            flex: 1;
            font-weight: 500;
        }

        .schedule-item .s-status {
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 50px;
            white-space: nowrap;
        }

        .s-status.live {
            background: rgba(225, 29, 72, 0.1);
            color: var(--live);
        }

        .s-status.upcoming {
            background: rgba(245, 158, 11, 0.1);
            color: var(--amber);
        }

        .s-status.finished {
            background: rgba(100, 116, 139, 0.1);
            color: var(--muted);
        }

        /* Hot matches */
        .hot-scroll {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding-bottom: 16px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .hot-scroll::-webkit-scrollbar {
            height: 6px;
        }

        .hot-scroll::-webkit-scrollbar-track {
            background: var(--subtle);
            border-radius: 3px;
        }

        .hot-scroll::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 3px;
        }

        .hot-mini-card {
            min-width: 260px;
            scroll-snap-align: start;
            background: #FFFFFF;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: var(--transition-base);
            flex-shrink: 0;
        }

        .hot-mini-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(26, 107, 213, 0.3);
        }

        .hot-mini-card .hot-img {
            height: 130px;
            overflow: hidden;
            border-radius: 0;
        }

        .hot-mini-card .hot-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
        }

        .hot-mini-card .hot-body {
            padding: 14px 16px 16px;
        }

        .hot-mini-card .hot-body h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--ink);
            margin: 0 0 4px 0;
        }

        .hot-mini-card .hot-body p {
            font-size: 13px;
            color: var(--muted);
            margin: 0;
        }

        /* Help steps */
        .help-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .help-card {
            background: #FFFFFF;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: var(--shadow-card);
            transition: var(--transition-base);
        }

        .help-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(26, 107, 213, 0.25);
        }

        .help-card .help-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 14px;
        }

        .help-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--ink);
            margin: 0 0 8px 0;
        }

        .help-card p {
            font-size: 14px;
            color: var(--muted);
            margin: 0;
            line-height: 1.7;
        }

        /* CTA banner */
        .cta-banner {
            background: #FFFFFF;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 40px 48px;
            text-align: center;
            box-shadow: var(--shadow-card);
        }

        .cta-banner h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--ink);
            margin: 0 0 12px 0;
        }

        .cta-banner p {
            font-size: 16px;
            color: var(--muted);
            margin: 0 0 24px 0;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
            padding: 13px 32px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition-base);
            display: inline-block;
        }

        .btn-primary:hover {
            background: var(--primary-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(26, 107, 213, 0.3);
            color: #fff;
        }

        .btn-primary:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        .btn-outline {
            background: #fff;
            color: var(--primary);
            padding: 13px 32px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 600;
            border: 2px solid var(--primary);
            cursor: pointer;
            transition: var(--transition-base);
            display: inline-block;
        }

        .btn-outline:hover {
            background: var(--primary-light);
            border-color: var(--primary);
            color: var(--primary);
        }

        /* Footer */
        .site-footer {
            background: #1E293B;
            color: rgba(255, 255, 255, 0.8);
            padding: 56px 0 28px;
            margin-top: 0;
        }

        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 36px;
        }

        .site-footer .footer-brand p {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.65);
            margin-top: 14px;
            max-width: 280px;
        }

        .site-footer h4 {
            font-size: 15px;
            font-weight: 700;
            color: #FFFFFF;
            margin: 0 0 16px 0;
        }

        .site-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .site-footer ul li {
            margin-bottom: 10px;
        }

        .site-footer ul li a {
            color: rgba(255, 255, 255, 0.65);
            font-size: 14px;
            transition: var(--transition-base);
        }

        .site-footer ul li a:hover {
            color: #FFFFFF;
        }

        .site-footer .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 13px;
            color: rgba(255, 255, 255, 0.45);
            flex-wrap: wrap;
            gap: 8px;
        }

        .footer-brand .nav-logo {
            color: #FFFFFF;
            font-size: 20px;
        }

        .footer-brand .logo-icon {
            background: #FFFFFF;
            color: #1A6BD5;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            :root {
                --section-padding: 56px 0;
                --container-padding: 0 16px;
            }

            .live-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .help-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .site-footer .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: block;
            }

            .nav-cta {
                display: none;
            }

            .page-banner h1 {
                font-size: 32px;
            }

            .page-banner p {
                font-size: 15px;
            }

            .page-banner {
                min-height: 220px;
                padding: 36px 0;
            }

            .live-grid {
                grid-template-columns: 1fr;
            }

            .help-grid {
                grid-template-columns: 1fr;
            }

            .cta-banner {
                padding: 28px 20px;
            }

            .cta-banner h2 {
                font-size: 22px;
            }

            .site-footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .site-footer .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 6px;
            }

            .schedule-item {
                padding: 14px 16px;
                gap: 10px;
            }

            .schedule-item .s-match {
                font-size: 14px;
                flex-basis: 100%;
                order: 3;
            }

            .filter-bar {
                gap: 8px;
            }

            .filter-chip {
                padding: 6px 14px;
                font-size: 13px;
            }
        }

        @media (max-width: 520px) {
            .page-banner h1 {
                font-size: 26px;
            }

            .hot-mini-card {
                min-width: 220px;
            }

            .cta-banner h2 {
                font-size: 20px;
            }

            :root {
                --section-padding: 40px 0;
            }
        }

/* roulang page: category2 */
:root {
            --primary: #1A6BD5;
            --primary-hover: #1559B5;
            --primary-light: #EEF3FA;
            --accent: #0EA5E9;
            --pitch: #10B981;
            --live: #E11D48;
            --amber: #F59E0B;
            --surface: #F8FAFC;
            --card: #FFFFFF;
            --ink: #1E293B;
            --muted: #64748B;
            --border: #E2E8F0;
            --subtle: #EEF3FA;
            --radius-card: 14px;
            --radius-btn: 8px;
            --radius-img: 12px;
            --shadow-card: 0 4px 20px rgba(15, 23, 42, 0.06);
            --shadow-card-hover: 0 8px 28px rgba(15, 23, 42, 0.10);
            --section-padding: 72px 0;
            --container-padding: 0 24px;
            --transition-base: all 0.25s ease;
        }

        @media (max-width: 640px) {
            :root {
                --section-padding: 44px 0;
                --container-padding: 0 16px;
            }
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Inter", "Roboto", sans-serif;
            background-color: var(--surface);
            color: var(--ink);
            line-height: 1.7;
            font-size: 16px;
            min-height: 100vh;
            margin: 0;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-img);
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-base);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .site-container {
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding: var(--container-padding);
            width: 100%;
        }

        /* Navigation */
        .site-header {
            background: #FFFFFF;
            border-bottom: 1px solid var(--border);
            height: 68px;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            background: rgba(255, 255, 255, 0.96);
        }

        .site-header .site-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }

        .nav-logo {
            font-weight: 700;
            font-size: 22px;
            letter-spacing: 0.5px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .nav-logo .logo-icon {
            width: 34px;
            height: 34px;
            background: var(--primary);
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links li a {
            font-size: 15px;
            font-weight: 500;
            color: var(--ink);
            padding: 8px 0;
            position: relative;
            white-space: nowrap;
            transition: var(--transition-base);
        }

        .nav-links li a:hover {
            color: var(--primary);
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition-base);
            border-radius: 2px;
        }

        .nav-links li a:hover::after,
        .nav-links li a.active::after {
            width: 100%;
        }

        .nav-links li a.active {
            color: var(--primary);
            font-weight: 600;
        }

        .nav-cta {
            background: var(--primary);
            color: #fff;
            padding: 10px 22px;
            border-radius: var(--radius-btn);
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition-base);
            white-space: nowrap;
            display: inline-block;
        }

        .nav-cta:hover {
            background: var(--primary-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(26, 107, 213, 0.3);
        }

        .nav-cta:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--ink);
            cursor: pointer;
            padding: 4px 8px;
        }

        .hamburger:hover {
            color: var(--primary);
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 68px;
            left: 0;
            right: 0;
            background: #FFFFFF;
            border-bottom: 1px solid var(--border);
            padding: 16px 24px;
            box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
            z-index: 99;
        }

        .mobile-menu.open {
            display: block;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu ul li a {
            display: block;
            padding: 14px 8px;
            font-size: 15px;
            font-weight: 500;
            color: var(--ink);
            border-bottom: 1px solid var(--border);
            transition: var(--transition-base);
        }

        .mobile-menu ul li a:hover {
            color: var(--primary);
            background: var(--primary-light);
            border-radius: 6px;
        }

        .mobile-menu .mobile-cta {
            margin-top: 14px;
            display: block;
            width: 100%;
            text-align: center;
        }

        /* Sections */
        section {
            padding: var(--section-padding);
        }

        .section-alt {
            background: #FFFFFF;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .section-subtle {
            background: var(--subtle);
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--ink);
            line-height: 1.3;
            margin-bottom: 8px;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--muted);
            margin-bottom: 32px;
            line-height: 1.6;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 600;
            border-radius: var(--radius-btn);
            padding: 10px 22px;
            font-size: 15px;
            cursor: pointer;
            transition: var(--transition-base);
            border: none;
            text-decoration: none;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--primary-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(26, 107, 213, 0.3);
        }

        .btn-outline {
            background: #fff;
            color: var(--primary);
            border: 1.5px solid var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary-light);
        }

        .btn-ghost {
            background: transparent;
            color: var(--primary);
            padding: 8px 16px;
        }

        .btn-ghost:hover {
            background: var(--primary-light);
        }

        .btn:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        /* Cards */
        .card {
            background: var(--card);
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            padding: 24px;
            transition: var(--transition-base);
        }

        .card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(26, 107, 213, 0.3);
        }

        /* Badges */
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 12px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
        }

        .badge-live {
            background: rgba(225, 29, 72, 0.1);
            color: var(--live);
        }

        .badge-soon {
            background: rgba(245, 158, 11, 0.15);
            color: #B45309;
        }

        .badge-ended {
            background: #F1F5F9;
            color: var(--muted);
        }

        .badge-primary {
            background: var(--primary-light);
            color: var(--primary);
        }

        /* Breadcrumb */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--muted);
            padding: 16px 0;
            flex-wrap: wrap;
        }

        .breadcrumb a {
            color: var(--muted);
            transition: var(--transition-base);
        }

        .breadcrumb a:hover {
            color: var(--primary);
        }

        .breadcrumb .separator {
            color: #CBD5E1;
        }

        .breadcrumb .current {
            color: var(--ink);
            font-weight: 500;
        }

        /* Scoreboard */
        .scoreboard {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 20px 24px;
            box-shadow: var(--shadow-card);
        }

        .score-team {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            font-size: 17px;
            min-width: 0;
        }

        .score-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 50%;
            font-size: 16px;
        }

        .score-value {
            font-size: 28px;
            font-weight: 700;
            color: var(--ink);
            letter-spacing: 0.5px;
            text-align: center;
            min-width: 60px;
        }

        /* Ranking bar */
        .rank-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }

        .rank-bar:last-child {
            border-bottom: none;
        }

        .rank-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 6px;
            font-weight: 700;
            font-size: 14px;
            flex-shrink: 0;
        }

        .rank-name {
            font-weight: 500;
            color: var(--ink);
            font-size: 15px;
            flex: 1;
            margin-left: 12px;
            min-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .rank-value {
            font-weight: 700;
            color: var(--primary);
            font-size: 15px;
        }

        /* FAQ */
        .faq-item {
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            background: #fff;
            margin-bottom: 12px;
            overflow: hidden;
            transition: var(--transition-base);
        }

        .faq-question {
            padding: 16px 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-weight: 600;
            color: var(--ink);
            background: #fff;
            border: none;
            width: 100%;
            text-align: left;
            font-size: 15px;
            transition: var(--transition-base);
        }

        .faq-question:hover {
            color: var(--primary);
            background: var(--primary-light);
        }

        .faq-question i {
            transition: var(--transition-base);
            color: var(--muted);
            font-size: 14px;
            flex-shrink: 0;
        }

        .faq-question.active i {
            transform: rotate(180deg);
            color: var(--primary);
        }

        .faq-answer {
            padding: 0 20px 16px;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7;
            display: none;
        }

        .faq-answer.open {
            display: block;
        }

        /* CTA banner */
        .cta-banner {
            background: var(--primary-light);
            border: 1px solid rgba(26, 107, 213, 0.2);
            border-radius: var(--radius-card);
            padding: 36px;
            text-align: center;
            box-shadow: var(--shadow-card);
        }

        .cta-banner h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 8px;
        }

        .cta-banner p {
            color: var(--muted);
            margin-bottom: 20px;
        }

        /* Forms */
        .form-input {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            padding: 10px 16px;
            font-size: 15px;
            color: var(--ink);
            width: 100%;
            transition: var(--transition-base);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 107, 213, 0.12);
        }

        .form-select {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            padding: 10px 16px;
            font-size: 15px;
            color: var(--ink);
            width: 100%;
            transition: var(--transition-base);
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
        }

        .form-select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 107, 213, 0.12);
        }

        /* Footer */
        .site-footer {
            background: #1E293B;
            color: #CBD5E1;
            padding: 48px 0 24px;
            margin-top: 0;
        }

        .site-footer .site-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand p {
            font-size: 14px;
            color: #94A3B8;
            margin-top: 12px;
            line-height: 1.7;
            max-width: 340px;
        }

        .footer-col h4 {
            font-size: 15px;
            font-weight: 600;
            color: #F1F5F9;
            margin-bottom: 16px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            font-size: 14px;
            color: #94A3B8;
            transition: var(--transition-base);
        }

        .footer-col ul li a:hover {
            color: #FFFFFF;
        }

        .footer-bottom {
            border-top: 1px solid #334155;
            padding-top: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: #64748B;
            flex-wrap: wrap;
            gap: 8px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-links {
                gap: 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .scoreboard {
                padding: 16px 18px;
            }
            .score-value {
                font-size: 24px;
                min-width: 50px;
            }
            .score-team {
                font-size: 15px;
            }
        }

        @media (max-width: 768px) {
            .site-header {
                height: 60px;
            }
            .nav-links {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .mobile-menu {
                top: 60px;
            }
            .nav-cta-desktop {
                display: none;
            }
            .site-header .site-container {
                gap: 12px;
            }
            .nav-logo {
                font-size: 19px;
            }
            .nav-logo .logo-icon {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }
            .section-title {
                font-size: 22px;
            }
            .section-subtitle {
                font-size: 15px;
            }
            .scoreboard {
                flex-direction: column;
                gap: 12px;
                padding: 16px;
            }
            .score-value {
                font-size: 22px;
            }
            .score-team {
                width: 100%;
                justify-content: space-between;
            }
            .cta-banner {
                padding: 24px 16px;
            }
            .cta-banner h3 {
                font-size: 19px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 520px) {
            .section-title {
                font-size: 20px;
            }
            .score-badge {
                width: 30px;
                height: 30px;
                font-size: 13px;
            }
            .score-value {
                font-size: 20px;
            }
            .score-team {
                font-size: 14px;
            }
            .btn {
                padding: 8px 16px;
                font-size: 14px;
            }
            .badge {
                font-size: 12px;
                padding: 3px 8px;
            }
        }

/* roulang page: category3 */
:root {
            --primary: #1A6BD5;
            --primary-hover: #1559B5;
            --primary-light: #EEF3FA;
            --accent: #0EA5E9;
            --pitch: #10B981;
            --live: #E11D48;
            --amber: #F59E0B;
            --surface: #F8FAFC;
            --card: #FFFFFF;
            --ink: #1E293B;
            --muted: #64748B;
            --border: #E2E8F0;
            --subtle: #EEF3FA;
            --radius-card: 14px;
            --radius-btn: 8px;
            --radius-img: 12px;
            --shadow-card: 0 4px 20px rgba(15, 23, 42, 0.06);
            --shadow-card-hover: 0 8px 28px rgba(15, 23, 42, 0.10);
            --section-padding: 88px 0;
            --container-padding: 0 24px;
            --max-w-site: 1200px;
            --transition-base: all 0.25s ease;
        }

        @media (max-width: 768px) {
            :root {
                --section-padding: 56px 0;
                --container-padding: 0 16px;
            }
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Inter", "Roboto", sans-serif;
            background-color: var(--surface);
            color: var(--ink);
            line-height: 1.7;
            font-size: 16px;
            min-height: 100vh;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-img);
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-base);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .site-container {
            max-width: var(--max-w-site);
            margin-left: auto;
            margin-right: auto;
            padding: var(--container-padding);
            width: 100%;
        }

        .site-header {
            background: rgba(255, 255, 255, 0.96);
            border-bottom: 1px solid var(--border);
            height: 68px;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
        }

        .site-header .site-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }

        .nav-logo {
            font-weight: 700;
            font-size: 22px;
            letter-spacing: 0.5px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .nav-logo .logo-icon {
            width: 34px;
            height: 34px;
            background: var(--primary);
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links li a {
            font-size: 15px;
            font-weight: 500;
            color: var(--ink);
            padding: 8px 0;
            position: relative;
            white-space: nowrap;
            transition: var(--transition-base);
        }

        .nav-links li a:hover {
            color: var(--primary);
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition-base);
            border-radius: 2px;
        }

        .nav-links li a:hover::after,
        .nav-links li a.active::after {
            width: 100%;
        }

        .nav-links li a.active {
            color: var(--primary);
            font-weight: 600;
        }

        .nav-cta {
            background: var(--primary);
            color: #fff;
            padding: 10px 22px;
            border-radius: var(--radius-btn);
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition-base);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .nav-cta:hover {
            background: var(--primary-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(26, 107, 213, 0.3);
        }

        .nav-cta:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--ink);
            cursor: pointer;
            padding: 4px 8px;
        }

        .hamburger:hover {
            color: var(--primary);
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 68px;
            left: 0;
            right: 0;
            background: #FFFFFF;
            border-bottom: 1px solid var(--border);
            padding: 16px 24px;
            box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
            z-index: 99;
        }

        .mobile-menu.open {
            display: block;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu ul li a {
            display: block;
            padding: 14px 8px;
            font-size: 15px;
            font-weight: 500;
            color: var(--ink);
            border-bottom: 1px solid var(--border);
            transition: var(--transition-base);
        }

        .mobile-menu ul li a:hover {
            color: var(--primary);
            background: var(--primary-light);
            border-radius: 6px;
        }

        .mobile-menu .mobile-cta {
            margin-top: 14px;
            display: block;
            width: 100%;
            background: var(--primary);
            color: #fff;
            padding: 12px 20px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 600;
            text-align: center;
            border: none;
            cursor: pointer;
            transition: var(--transition-base);
        }

        .mobile-menu .mobile-cta:hover {
            background: var(--primary-hover);
        }

        .breadcrumb {
            background: #FFFFFF;
            border-bottom: 1px solid var(--border);
            padding: 12px 0;
        }

        .breadcrumb .site-container {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--muted);
        }

        .breadcrumb .breadcrumb-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .breadcrumb .breadcrumb-item a {
            color: var(--muted);
            transition: var(--transition-base);
        }

        .breadcrumb .breadcrumb-item a:hover {
            color: var(--primary);
        }

        .breadcrumb .breadcrumb-item.current {
            color: var(--ink);
            font-weight: 500;
        }

        .breadcrumb .breadcrumb-separator {
            font-size: 12px;
            color: var(--border);
        }

        .category-banner {
            background: linear-gradient(180deg, var(--primary-light) 0%, #F0F5FC 100%);
            padding: 48px 0 56px;
            border-bottom: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        .category-banner::after {
            content: '';
            position: absolute;
            top: -60px;
            right: -40px;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: rgba(26, 107, 213, 0.08);
            pointer-events: none;
        }

        .category-banner::before {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -50px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(16, 185, 129, 0.06);
            pointer-events: none;
        }

        .category-banner .site-container {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .category-banner h1 {
            font-size: 40px;
            font-weight: 700;
            color: var(--ink);
            line-height: 1.25;
            letter-spacing: 0.5px;
        }

        .category-banner p {
            font-size: 17px;
            color: var(--muted);
            max-width: 640px;
            line-height: 1.8;
        }

        .category-banner .banner-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 8px;
        }

        .category-banner .banner-tag {
            background: #FFFFFF;
            color: var(--primary);
            border: 1px solid rgba(26, 107, 213, 0.25);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .schedule-toolbar {
            background: #FFFFFF;
            padding: 18px 0;
            border-bottom: 1px solid var(--border);
            position: relative;
            z-index: 5;
        }

        .schedule-toolbar .site-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 14px;
        }

        .schedule-toolbar .filter-group {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .filter-pill {
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            border: 1px solid var(--border);
            background: #FFFFFF;
            color: var(--muted);
            transition: var(--transition-base);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .filter-pill:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
        }

        .filter-pill.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            font-weight: 600;
        }

        .filter-pill .fa-solid {
            font-size: 12px;
        }

        .date-nav-arrow {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid var(--border);
            background: #FFFFFF;
            color: var(--muted);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-base);
            font-size: 14px;
        }

        .date-nav-arrow:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
        }

        .date-display {
            font-size: 15px;
            font-weight: 600;
            color: var(--ink);
            min-width: 100px;
            text-align: center;
        }

        .schedule-date-section {
            margin-bottom: 36px;
        }

        .schedule-date-heading {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

        .schedule-date-heading .date-badge {
            background: var(--primary);
            color: #fff;
            padding: 6px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .schedule-date-heading .date-info {
            font-size: 14px;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .schedule-card-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
        }

        .schedule-card {
            background: #FFFFFF;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            box-shadow: var(--shadow-card);
            transition: var(--transition-base);
        }

        .schedule-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(26, 107, 213, 0.35);
        }

        .schedule-card .match-teams {
            display: flex;
            align-items: center;
            gap: 16px;
            flex: 1;
            min-width: 200px;
        }

        .schedule-card .team-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--ink);
            white-space: nowrap;
        }

        .schedule-card .vs-text {
            font-size: 13px;
            color: var(--muted);
            font-weight: 500;
            letter-spacing: 1px;
            padding: 4px 10px;
            background: var(--subtle);
            border-radius: 4px;
        }

        .schedule-card .match-score {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 2px;
            white-space: nowrap;
        }

        .schedule-card .match-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .schedule-card .meta-item {
            font-size: 13px;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .status-badge {
            padding: 5px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .status-badge.live {
            background: rgba(225, 29, 72, 0.1);
            color: var(--live);
            border: 1px solid rgba(225, 29, 72, 0.3);
        }

        .status-badge.upcoming {
            background: rgba(245, 158, 11, 0.1);
            color: var(--amber);
            border: 1px solid rgba(245, 158, 11, 0.3);
        }

        .status-badge.finished {
            background: rgba(100, 116, 139, 0.1);
            color: var(--muted);
            border: 1px solid rgba(100, 116, 139, 0.25);
        }

        .schedule-btn {
            padding: 8px 18px;
            border-radius: var(--radius-btn);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-base);
            border: 1px solid var(--primary);
            background: #FFFFFF;
            color: var(--primary);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .schedule-btn:hover {
            background: var(--primary-light);
            border-color: var(--primary);
        }

        .schedule-btn.solid {
            background: var(--primary);
            color: #fff;
        }

        .schedule-btn.solid:hover {
            background: var(--primary-hover);
        }

        .focus-match-card {
            background: #FFFFFF;
            border-radius: var(--radius-card);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 260px;
        }

        .focus-match-card .focus-bg {
            background-size: cover;
            background-position: center;
            position: relative;
            min-height: 260px;
            border-radius: 0;
        }

        .focus-match-card .focus-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.65) 0%, rgba(26, 107, 213, 0.45) 100%);
            border-radius: 0;
        }

        .focus-match-card .focus-bg .focus-tag {
            position: absolute;
            top: 16px;
            left: 16px;
            z-index: 2;
            background: rgba(225, 29, 72, 0.9);
            color: #fff;
            padding: 5px 14px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .focus-match-card .focus-content {
            padding: 28px 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 10px;
        }

        .focus-match-card .focus-content h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--ink);
            line-height: 1.4;
        }

        .focus-match-card .focus-content .focus-meta {
            font-size: 14px;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .category-quick-links {
            background: #FFFFFF;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 28px 32px;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
            justify-content: space-between;
        }

        .category-quick-links .quick-links-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--ink);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .category-quick-links .quick-links-group {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .quick-link-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: 20px;
            border: 1px solid var(--border);
            background: var(--surface);
            color: var(--muted);
            font-size: 13px;
            font-weight: 500;
            transition: var(--transition-base);
        }

        .quick-link-chip:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
        }

        .quick-link-chip .fa-solid {
            font-size: 12px;
        }

        .subscribe-cta {
            background: linear-gradient(135deg, var(--primary-light) 0%, #E8F0FA 100%);
            border: 1px solid rgba(26, 107, 213, 0.2);
            border-radius: var(--radius-card);
            padding: 40px 32px;
            text-align: center;
            box-shadow: var(--shadow-card);
        }

        .subscribe-cta h2 {
            font-size: 26px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 8px;
        }

        .subscribe-cta p {
            font-size: 15px;
            color: var(--muted);
            max-width: 540px;
            margin: 0 auto 24px;
            line-height: 1.8;
        }

        .subscribe-form {
            display: flex;
            align-items: center;
            gap: 10px;
            max-width: 480px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }

        .subscribe-form input[type="email"],
        .subscribe-form input[type="text"] {
            flex: 1;
            min-width: 220px;
            padding: 12px 18px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--border);
            background: #FFFFFF;
            font-size: 14px;
            color: var(--ink);
            transition: var(--transition-base);
            outline: none;
        }

        .subscribe-form input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 107, 213, 0.15);
        }

        .subscribe-form .subscribe-btn {
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            background: var(--primary);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition-base);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .subscribe-form .subscribe-btn:hover {
            background: var(--primary-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(26, 107, 213, 0.3);
        }

        .site-footer {
            background: #1E293B;
            color: #CBD5E1;
            padding: 52px 0 24px;
            margin-top: 0;
        }

        .site-footer .site-container {
            max-width: var(--max-w-site);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr;
            gap: 36px;
            margin-bottom: 36px;
        }

        .footer-brand .nav-logo {
            color: #FFFFFF;
            font-size: 20px;
            margin-bottom: 14px;
            display: inline-flex;
        }

        .footer-brand .nav-logo .logo-icon {
            background: #FFFFFF;
            color: var(--primary);
        }

        .footer-brand p {
            font-size: 14px;
            color: #94A3B8;
            line-height: 1.8;
            max-width: 360px;
        }

        .footer-col h4 {
            font-size: 15px;
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            font-size: 14px;
            color: #94A3B8;
            transition: var(--transition-base);
        }

        .footer-col ul li a:hover {
            color: #FFFFFF;
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            padding-top: 20px;
            border-top: 1px solid rgba(148, 163, 184, 0.25);
            font-size: 13px;
            color: #94A3B8;
        }

        .section-pad {
            padding: 56px 0;
        }

        .section-pad-sm {
            padding: 32px 0;
        }

        .section-pad-lg {
            padding: 72px 0;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 4px;
            line-height: 1.35;
        }

        .section-subtitle {
            font-size: 15px;
            color: var(--muted);
            margin-bottom: 28px;
            max-width: 600px;
            line-height: 1.8;
        }

        .section-heading-row {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 24px;
        }

        .section-heading-row .section-title {
            margin-bottom: 0;
        }

        .text-link {
            color: var(--primary);
            font-weight: 500;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: var(--transition-base);
        }

        .text-link:hover {
            color: var(--primary-hover);
            gap: 8px;
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
            .focus-match-card {
                grid-template-columns: 1fr;
            }
            .focus-match-card .focus-bg {
                min-height: 180px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .nav-cta {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .category-banner h1 {
                font-size: 30px;
            }
            .category-banner p {
                font-size: 15px;
            }
            .section-title {
                font-size: 23px;
            }
            .schedule-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding: 16px 18px;
            }
            .schedule-card .match-teams {
                min-width: 100%;
            }
            .schedule-card .match-meta {
                width: 100%;
                justify-content: space-between;
            }
            .schedule-toolbar .site-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .focus-match-card .focus-content {
                padding: 20px 22px;
            }
            .category-quick-links {
                flex-direction: column;
                align-items: flex-start;
                gap: 14px;
                padding: 20px 22px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
            .subscribe-cta {
                padding: 28px 20px;
            }
            .subscribe-cta h2 {
                font-size: 22px;
            }
        }

        @media (max-width: 520px) {
            .site-container {
                padding: 0 14px;
            }
            .category-banner {
                padding: 32px 0 40px;
            }
            .category-banner h1 {
                font-size: 26px;
            }
            .filter-pill {
                padding: 6px 14px;
                font-size: 12px;
            }
            .schedule-card .match-score {
                font-size: 18px;
            }
            .schedule-card .team-name {
                font-size: 14px;
            }
            .section-pad {
                padding: 40px 0;
            }
            .section-pad-lg {
                padding: 48px 0;
            }
        }

/* roulang page: category4 */
:root {
            --primary: #1A6BD5;
            --primary-hover: #1559B5;
            --primary-light: #EEF3FA;
            --accent: #0EA5E9;
            --pitch: #10B981;
            --live: #E11D48;
            --amber: #F59E0B;
            --surface: #F8FAFC;
            --card: #FFFFFF;
            --ink: #1E293B;
            --muted: #64748B;
            --border: #E2E8F0;
            --subtle: #EEF3FA;
            --radius-card: 14px;
            --radius-btn: 8px;
            --radius-img: 12px;
            --shadow-card: 0 4px 20px rgba(15, 23, 42, 0.06);
            --shadow-card-hover: 0 8px 28px rgba(15, 23, 42, 0.10);
            --section-padding: 72px 0;
            --container-padding: 0 24px;
            --transition-base: all 0.25s ease;
            --max-w-site: 1200px;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        body {
            font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Inter", "Roboto", sans-serif;
            background-color: var(--surface);
            color: var(--ink);
            line-height: 1.7;
            font-size: 16px;
            min-height: 100vh;
            margin: 0;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-img);
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-base);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .site-container {
            max-width: var(--max-w-site);
            margin-left: auto;
            margin-right: auto;
            padding: var(--container-padding);
            width: 100%;
        }

        /* Navigation */
        .site-header {
            background: #FFFFFF;
            border-bottom: 1px solid var(--border);
            height: 68px;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            background: rgba(255, 255, 255, 0.96);
        }

        .site-header .site-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }

        .nav-logo {
            font-weight: 700;
            font-size: 22px;
            letter-spacing: 0.5px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .nav-logo .logo-icon {
            width: 34px;
            height: 34px;
            background: var(--primary);
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links li a {
            font-size: 15px;
            font-weight: 500;
            color: var(--ink);
            padding: 8px 0;
            position: relative;
            white-space: nowrap;
            transition: var(--transition-base);
        }

        .nav-links li a:hover {
            color: var(--primary);
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition-base);
            border-radius: 2px;
        }

        .nav-links li a:hover::after,
        .nav-links li a.active::after {
            width: 100%;
        }

        .nav-links li a.active {
            color: var(--primary);
            font-weight: 600;
        }

        .nav-cta {
            background: var(--primary);
            color: #fff;
            padding: 10px 22px;
            border-radius: var(--radius-btn);
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .nav-cta:hover {
            background: var(--primary-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(26, 107, 213, 0.3);
        }

        .nav-cta:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--ink);
            cursor: pointer;
            padding: 4px 8px;
        }

        .hamburger:hover {
            color: var(--primary);
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 68px;
            left: 0;
            right: 0;
            background: #FFFFFF;
            border-bottom: 1px solid var(--border);
            padding: 16px 24px;
            box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
            z-index: 99;
        }

        .mobile-menu.open {
            display: block;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu ul li a {
            display: block;
            padding: 14px 8px;
            font-size: 15px;
            font-weight: 500;
            color: var(--ink);
            border-bottom: 1px solid var(--border);
            transition: var(--transition-base);
        }

        .mobile-menu ul li a:hover,
        .mobile-menu ul li a.active {
            color: var(--primary);
            background: var(--primary-light);
            border-radius: 6px;
        }

        .mobile-menu .mobile-cta {
            margin-top: 14px;
            display: block;
            width: 100%;
            background: var(--primary);
            color: #fff;
            padding: 12px 20px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 600;
            text-align: center;
            border: none;
            cursor: pointer;
        }

        /* Breadcrumb */
        .breadcrumb-wrapper {
            padding: 18px 0 4px;
            background: transparent;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: var(--muted);
            list-style: none;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
        }

        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .breadcrumb li a {
            color: var(--primary);
        }

        .breadcrumb li a:hover {
            color: var(--primary-hover);
            text-decoration: underline;
        }

        .breadcrumb li.current {
            color: var(--muted);
        }

        .breadcrumb li:not(:last-child)::after {
            content: '/';
            color: var(--border);
            margin-left: 2px;
        }

        /* Category Banner */
        .category-banner {
            background: var(--primary-light);
            padding: 56px 0 48px;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--border);
        }

        .category-banner::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 60%;
            height: 200%;
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(26, 107, 213, 0.10));
            transform: skewX(-15deg);
            pointer-events: none;
        }

        .category-banner .site-container {
            position: relative;
            z-index: 1;
        }

        .banner-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--primary);
            color: #fff;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }

        .category-banner h1 {
            font-size: 38px;
            font-weight: 700;
            color: var(--ink);
            margin: 0 0 10px;
            letter-spacing: 0.3px;
            line-height: 1.3;
        }

        .banner-desc {
            font-size: 16px;
            color: var(--muted);
            max-width: 680px;
            margin: 0;
            line-height: 1.75;
        }

        /* Filter tags */
        .filter-section {
            padding: 28px 0 0;
        }

        .filter-tags {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            flex-wrap: wrap;
        }

        .filter-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--ink);
            padding-top: 7px;
            margin-right: 4px;
        }

        .filter-chip {
            padding: 8px 20px;
            border-radius: 20px;
            background: var(--card);
            border: 1px solid var(--border);
            color: var(--muted);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .filter-chip:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
        }

        .filter-chip.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            font-weight: 600;
        }

        .filter-chip:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        /* Video cards grid */
        .videos-grid-section {
            padding: 32px 0 72px;
        }

        .videos-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .video-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: var(--transition-base);
            display: flex;
            flex-direction: column;
        }

        .video-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(26, 107, 213, 0.35);
            transform: translateY(-3px);
        }

        .video-thumb {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 9;
            background: var(--surface);
            border-radius: 0;
            flex-shrink: 0;
        }

        .video-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
            transition: var(--transition-base);
        }

        .video-card:hover .video-thumb img {
            transform: scale(1.04);
        }

        .video-thumb .play-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(15, 23, 42, 0.25);
            opacity: 0;
            transition: var(--transition-base);
        }

        .video-card:hover .play-overlay {
            opacity: 1;
        }

        .play-overlay .play-icon {
            width: 52px;
            height: 52px;
            background: rgba(255, 255, 255, 0.92);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 20px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
        }

        .video-duration {
            position: absolute;
            bottom: 8px;
            right: 8px;
            background: rgba(15, 23, 42, 0.78);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 3px 9px;
            border-radius: 6px;
            letter-spacing: 0.3px;
        }

        .video-type-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background: var(--primary);
            color: #fff;
            font-size: 12px;
            font-weight: 500;
            padding: 3px 10px;
            border-radius: 6px;
            letter-spacing: 0.3px;
        }

        .video-body {
            padding: 16px 18px 18px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .video-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--ink);
            line-height: 1.5;
            margin: 0 0 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 48px;
        }

        .video-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 13px;
            color: var(--muted);
            margin-top: auto;
        }

        .video-meta span {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .video-meta i {
            font-size: 13px;
            color: var(--accent);
        }

        /* Weekly recommendations */
        .weekly-section {
            background: var(--primary-light);
            padding: 64px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .weekly-heading {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 28px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .weekly-heading h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--ink);
            margin: 0;
            letter-spacing: 0.2px;
        }

        .weekly-heading .more-link {
            font-size: 14px;
            font-weight: 500;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .weekly-heading .more-link:hover {
            color: var(--primary-hover);
        }

        .weekly-feature {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 24px;
            margin-bottom: 24px;
        }

        .weekly-feature-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
        }

        .weekly-feature-img {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            border-radius: 0;
        }

        .weekly-feature-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
        }

        .weekly-feature-img .video-duration {
            bottom: 12px;
            right: 12px;
            font-size: 13px;
            padding: 4px 12px;
        }

        .weekly-feature-body {
            padding: 20px 22px;
        }

        .weekly-feature-body h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--ink);
            margin: 0 0 8px;
            line-height: 1.4;
        }

        .weekly-feature-body p {
            font-size: 14px;
            color: var(--muted);
            margin: 0 0 12px;
            line-height: 1.6;
        }

        .weekly-list {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        .weekly-list-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 18px;
            border-bottom: 1px solid var(--border);
            transition: var(--transition-base);
        }

        .weekly-list-item:last-child {
            border-bottom: none;
        }

        .weekly-list-item:hover {
            background: var(--primary-light);
        }

        .weekly-list-thumb {
            width: 84px;
            height: 52px;
            flex-shrink: 0;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }

        .weekly-list-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        .weekly-list-info {
            flex: 1;
            min-width: 0;
        }

        .weekly-list-info h4 {
            font-size: 15px;
            font-weight: 500;
            color: var(--ink);
            margin: 0 0 3px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .weekly-list-info .meta {
            font-size: 13px;
            color: var(--muted);
        }

        .weekly-list-action {
            color: var(--primary);
            font-size: 13px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 4px;
            flex-shrink: 0;
        }

        .weekly-list-action:hover {
            color: var(--primary-hover);
        }

        /* Watching help */
        .help-section {
            padding: 64px 0;
        }

        .help-heading {
            margin-bottom: 32px;
        }

        .help-heading h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--ink);
            margin: 0 0 6px;
        }

        .help-heading p {
            font-size: 15px;
            color: var(--muted);
            margin: 0;
        }

        .help-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .help-step {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 24px 22px;
            box-shadow: var(--shadow-card);
            position: relative;
        }

        .help-step-number {
            width: 36px;
            height: 36px;
            background: var(--primary-light);
            color: var(--primary);
            font-weight: 700;
            font-size: 16px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
        }

        .help-step h3 {
            font-size: 17px;
            font-weight: 600;
            color: var(--ink);
            margin: 0 0 8px;
        }

        .help-step p {
            font-size: 14px;
            color: var(--muted);
            margin: 0;
            line-height: 1.7;
        }

        /* Watch history */
        .history-section {
            padding: 0 0 72px;
        }

        .history-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 28px 30px;
            box-shadow: var(--shadow-card);
        }

        .history-card h2 {
            font-size: 20px;
            font-weight: 600;
            color: var(--ink);
            margin: 0 0 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .history-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 10px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .history-links li a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--muted);
            padding: 10px 14px;
            border-radius: var(--radius-btn);
            border: 1px solid transparent;
            transition: var(--transition-base);
        }

        .history-links li a:hover {
            color: var(--primary);
            background: var(--primary-light);
            border-color: rgba(26, 107, 213, 0.18);
        }

        .history-links li a i {
            font-size: 14px;
            color: var(--accent);
            width: 18px;
        }

        /* Footer */
        .site-footer {
            background: #1E293B;
            color: #CBD5E1;
            padding: 52px 0 24px;
            margin-top: 0;
        }

        .site-footer .site-container {
            max-width: var(--max-w-site);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
            gap: 32px;
            margin-bottom: 36px;
        }

        .footer-brand p {
            font-size: 14px;
            color: #94A3B8;
            line-height: 1.7;
            margin: 14px 0 0;
            max-width: 300px;
        }

        .footer-col h4 {
            font-size: 15px;
            font-weight: 600;
            color: #E2E8F0;
            margin: 0 0 14px;
            letter-spacing: 0.3px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 9px;
        }

        .footer-col ul li a {
            font-size: 14px;
            color: #94A3B8;
            transition: var(--transition-base);
        }

        .footer-col ul li a:hover {
            color: #FFFFFF;
        }

        .footer-bottom {
            border-top: 1px solid rgba(148, 163, 184, 0.2);
            padding-top: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 13px;
            color: #64748B;
            flex-wrap: wrap;
            gap: 8px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .videos-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .weekly-feature {
                grid-template-columns: 1fr;
            }
            .help-steps {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .nav-cta {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .category-banner {
                padding: 36px 0 32px;
            }
            .category-banner h1 {
                font-size: 28px;
            }
            .banner-desc {
                font-size: 15px;
            }
            .videos-grid {
                grid-template-columns: 1fr;
            }
            .help-steps {
                grid-template-columns: 1fr;
            }
            .weekly-heading h2 {
                font-size: 24px;
            }
            .weekly-feature-body h3 {
                font-size: 18px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
            .history-links {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 520px) {
            :root {
                --section-padding: 48px 0;
                --container-padding: 0 16px;
            }
            .category-banner h1 {
                font-size: 24px;
            }
            .filter-tags {
                gap: 8px;
            }
            .filter-chip {
                padding: 6px 14px;
                font-size: 13px;
            }
            .video-body {
                padding: 14px 14px 16px;
            }
            .video-title {
                font-size: 15px;
                min-height: 44px;
            }
            .help-section,
            .weekly-section,
            .videos-grid-section {
                padding: 40px 0;
            }
            .history-card {
                padding: 20px 18px;
            }
            .breadcrumb {
                font-size: 13px;
            }
        }

/* roulang page: category5 */
:root {
      --primary: #1A6BD5;
      --primary-hover: #1559B5;
      --primary-light: #EEF3FA;
      --accent: #0EA5E9;
      --pitch: #10B981;
      --live: #E11D48;
      --amber: #F59E0B;
      --surface: #F8FAFC;
      --card: #FFFFFF;
      --ink: #1E293B;
      --muted: #64748B;
      --border: #E2E8F0;
      --subtle: #EEF3FA;
      --radius-card: 14px;
      --radius-btn: 8px;
      --radius-img: 12px;
      --shadow-card: 0 4px 20px rgba(15, 23, 42, 0.06);
      --shadow-card-hover: 0 8px 28px rgba(15, 23, 42, 0.10);
      --section-padding: 88px 0;
      --container-padding: 0 24px;
      --transition-base: all 0.25s ease;
      --max-w-site: 1200px;
    }
    @media (max-width: 768px) {
      :root {
        --section-padding: 56px 0;
        --container-padding: 0 16px;
      }
    }
    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    body {
      font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Inter", "Roboto", sans-serif;
      background-color: var(--surface);
      color: var(--ink);
      line-height: 1.7;
      font-size: 16px;
      min-height: 100vh;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: var(--radius-img);
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition-base);
    }
    button,
    input,
    select,
    textarea {
      font-family: inherit;
      font-size: inherit;
      line-height: inherit;
    }
    .site-container {
      max-width: var(--max-w-site, 1200px);
      margin-left: auto;
      margin-right: auto;
      padding: var(--container-padding, 0 24px);
      width: 100%;
    }
    .site-header {
      background: #FFFFFF;
      border-bottom: 1px solid var(--border);
      height: 68px;
      display: flex;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(12px);
      background: rgba(255, 255, 255, 0.96);
    }
    .site-header .site-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
    }
    .nav-logo {
      font-weight: 700;
      font-size: 22px;
      letter-spacing: 0.5px;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }
    .nav-logo .logo-icon {
      width: 34px;
      height: 34px;
      background: var(--primary);
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 16px;
      flex-shrink: 0;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .nav-links li a {
      font-size: 15px;
      font-weight: 500;
      color: var(--ink);
      padding: 8px 0;
      position: relative;
      white-space: nowrap;
      transition: var(--transition-base);
    }
    .nav-links li a:hover {
      color: var(--primary);
    }
    .nav-links li a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: var(--transition-base);
      border-radius: 2px;
    }
    .nav-links li a:hover::after,
    .nav-links li a.active::after {
      width: 100%;
    }
    .nav-links li a.active {
      color: var(--primary);
      font-weight: 600;
    }
    .nav-cta {
      background: var(--primary);
      color: #fff;
      padding: 10px 22px;
      border-radius: var(--radius-btn);
      font-size: 14px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: var(--transition-base);
      white-space: nowrap;
    }
    .nav-cta:hover {
      background: var(--primary-hover);
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(26, 107, 213, 0.3);
    }
    .nav-cta:focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 2px;
    }
    .hamburger {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      color: var(--ink);
      cursor: pointer;
      padding: 4px 8px;
    }
    .hamburger:hover {
      color: var(--primary);
    }
    .mobile-menu {
      display: none;
      position: absolute;
      top: 68px;
      left: 0;
      right: 0;
      background: #FFFFFF;
      border-bottom: 1px solid var(--border);
      padding: 16px 24px;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
      z-index: 99;
    }
    .mobile-menu.open {
      display: block;
    }
    .mobile-menu ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .mobile-menu ul li a {
      display: block;
      padding: 14px 8px;
      font-size: 15px;
      font-weight: 500;
      color: var(--ink);
      border-bottom: 1px solid var(--border);
      transition: var(--transition-base);
    }
    .mobile-menu ul li a:hover {
      color: var(--primary);
      background: var(--primary-light);
      border-radius: 6px;
    }
    .mobile-menu .mobile-cta {
      margin-top: 14px;
      display: block;
      width: 100%;
    }
    .section {
      padding: var(--section-padding);
    }
    .section-alt {
      background: var(--subtle);
    }
    .section-title {
      font-size: 28px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 12px;
      line-height: 1.4;
    }
    .section-subtitle {
      font-size: 16px;
      color: var(--muted);
      max-width: 640px;
      line-height: 1.8;
    }
    .card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-card);
      transition: var(--transition-base);
    }
    .card:hover {
      box-shadow: var(--shadow-card-hover);
      border-color: rgba(26, 107, 213, 0.3);
      transform: translateY(-2px);
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 24px;
      border-radius: var(--radius-btn);
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition-base);
      border: 1px solid transparent;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--primary);
      color: #fff;
    }
    .btn-primary:hover {
      background: var(--primary-hover);
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(26, 107, 213, 0.3);
    }
    .btn-outline {
      background: #fff;
      color: var(--primary);
      border-color: var(--primary);
    }
    .btn-outline:hover {
      background: var(--primary-light);
      transform: translateY(-1px);
    }
    .btn-ghost {
      background: transparent;
      color: var(--primary);
      padding: 8px 12px;
    }
    .btn-ghost:hover {
      background: var(--primary-light);
    }
    .btn:focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 2px;
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 4px 12px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 600;
      line-height: 1.4;
    }
    .badge-live {
      background: #FEE2E2;
      color: var(--live);
    }
    .badge-upcoming {
      background: #FEF3C7;
      color: var(--amber);
    }
    .badge-ended {
      background: #F1F5F9;
      color: #64748B;
    }
    .badge-hot {
      background: var(--primary-light);
      color: var(--primary);
    }
    .badge-green {
      background: #D1FAE5;
      color: #047857;
    }
    .tag {
      display: inline-block;
      padding: 6px 14px;
      background: var(--primary-light);
      color: var(--primary);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      transition: var(--transition-base);
      border: 1px solid transparent;
    }
    .tag:hover {
      background: #DCE7F7;
    }
    .tag.active {
      background: var(--primary);
      color: #fff;
    }
    .filter-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 18px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 999px;
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
      cursor: pointer;
      transition: var(--transition-base);
    }
    .filter-chip:hover {
      border-color: var(--primary);
      color: var(--primary);
    }
    .filter-chip.active {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }
    .input {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid var(--border);
      border-radius: var(--radius-btn);
      font-size: 15px;
      color: var(--ink);
      transition: var(--transition-base);
      background: #fff;
    }
    .input:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(26, 107, 213, 0.1);
    }
    .select {
      padding: 12px 16px;
      border: 1px solid var(--border);
      border-radius: var(--radius-btn);
      font-size: 15px;
      color: var(--ink);
      background: #fff;
      transition: var(--transition-base);
      cursor: pointer;
      min-width: 140px;
    }
    .select:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(26, 107, 213, 0.1);
    }
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: var(--muted);
      padding: 16px 0;
      flex-wrap: wrap;
    }
    .breadcrumb a {
      color: var(--primary);
      font-weight: 500;
    }
    .breadcrumb a:hover {
      text-decoration: underline;
    }
    .breadcrumb i {
      font-size: 10px;
      color: #94A3B8;
    }
    .category-banner {
      background: var(--primary-light);
      padding: 56px 0;
      position: relative;
      overflow: hidden;
    }
    .category-banner::after {
      content: '';
      position: absolute;
      right: -80px;
      top: 50%;
      transform: translateY(-50%);
      width: 320px;
      height: 320px;
      background: rgba(26, 107, 213, 0.04);
      border-radius: 50%;
      pointer-events: none;
    }
    .category-banner h1 {
      font-size: 40px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 12px;
      line-height: 1.3;
    }
    .category-banner p {
      font-size: 16px;
      color: var(--muted);
      max-width: 560px;
      line-height: 1.8;
    }
    .team-card {
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    .team-card .team-cover {
      height: 160px;
      width: 100%;
      object-fit: cover;
    }
    .team-card .team-body {
      padding: 18px 20px 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .team-card .team-name {
      font-size: 18px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 4px;
    }
    .team-card .team-league {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 10px;
    }
    .team-card .team-form {
      display: flex;
      gap: 6px;
      margin-bottom: 14px;
      flex-wrap: wrap;
    }
    .team-card .form-dot {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      color: #fff;
    }
    .form-win {
      background: var(--pitch);
    }
    .form-draw {
      background: var(--amber);
    }
    .form-loss {
      background: #94A3B8;
    }
    .team-card .team-stats {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 14px;
      border-top: 1px solid var(--border);
      padding-top: 12px;
    }
    .team-card .team-stats span {
      text-align: center;
    }
    .team-card .team-stats strong {
      display: block;
      color: var(--ink);
      font-size: 16px;
    }
    .btn-follow {
      margin-top: auto;
      width: 100%;
      padding: 10px;
      border-radius: var(--radius-btn);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition-base);
      background: var(--primary-light);
      color: var(--primary);
      border: 1px solid transparent;
    }
    .btn-follow:hover {
      background: var(--primary);
      color: #fff;
      transform: translateY(-1px);
    }
    .player-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
      transition: var(--transition-base);
    }
    .player-item:hover {
      background: var(--primary-light);
      padding-left: 12px;
      border-radius: 8px;
    }
    .player-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
    }
    .player-info {
      flex: 1;
      min-width: 0;
    }
    .player-name {
      font-size: 16px;
      font-weight: 600;
      color: var(--ink);
    }
    .player-pos {
      font-size: 13px;
      color: var(--muted);
    }
    .player-stat {
      font-size: 16px;
      font-weight: 700;
      color: var(--primary);
      white-space: nowrap;
    }
    .mini-stat-card {
      padding: 20px 24px;
      text-align: center;
    }
    .mini-stat-card .stat-value {
      font-size: 32px;
      font-weight: 700;
      color: var(--primary);
      line-height: 1.2;
    }
    .mini-stat-card .stat-label {
      font-size: 14px;
      color: var(--muted);
      margin-top: 4px;
    }
    .news-list-item {
      display: flex;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
      transition: var(--transition-base);
    }
    .news-list-item:hover {
      background: var(--primary-light);
      border-radius: 8px;
      padding-left: 12px;
    }
    .news-thumb {
      width: 80px;
      height: 56px;
      object-fit: cover;
      border-radius: 8px;
      flex-shrink: 0;
    }
    .news-item-content {
      flex: 1;
      min-width: 0;
    }
    .news-item-title {
      font-size: 15px;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .news-item-title:hover {
      color: var(--primary);
    }
    .news-item-meta {
      font-size: 13px;
      color: var(--muted);
      margin-top: 4px;
    }
    .faq-item {
      border-bottom: 1px solid var(--border);
    }
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 4px;
      cursor: pointer;
      font-weight: 600;
      font-size: 16px;
      color: var(--ink);
      transition: var(--transition-base);
    }
    .faq-question:hover {
      color: var(--primary);
    }
    .faq-answer {
      padding: 0 4px 18px;
      font-size: 15px;
      color: var(--muted);
      line-height: 1.8;
      display: none;
    }
    .faq-item.open .faq-answer {
      display: block;
    }
    .faq-item.open .faq-question i {
      transform: rotate(180deg);
    }
    .faq-question i {
      transition: var(--transition-base);
      color: var(--muted);
    }
    .cta-banner {
      background: var(--primary-light);
      border-radius: var(--radius-card);
      padding: 48px 40px;
      border: 1px solid rgba(26, 107, 213, 0.15);
      text-align: center;
    }
    .cta-banner h2 {
      font-size: 28px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 12px;
    }
    .cta-banner p {
      font-size: 16px;
      color: var(--muted);
      margin-bottom: 24px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.2fr;
      gap: 32px;
      padding: 48px 0 32px;
    }
    .footer-brand p {
      font-size: 14px;
      color: #94A3B8;
      margin-top: 12px;
      max-width: 320px;
      line-height: 1.7;
    }
    .footer-col h4 {
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 16px;
    }
    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-col ul li {
      margin-bottom: 10px;
    }
    .footer-col ul li a {
      font-size: 14px;
      color: #94A3B8;
      transition: var(--transition-base);
    }
    .footer-col ul li a:hover {
      color: #fff;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding: 16px 0;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      font-size: 13px;
      color: #94A3B8;
    }
    .site-footer {
      background: #1E293B;
      margin-top: 0;
    }
    @media (max-width: 1024px) {
      .nav-links {
        gap: 18px;
      }
      .nav-links li a {
        font-size: 14px;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }
      .hamburger {
        display: block;
      }
      .category-banner h1 {
        font-size: 30px;
      }
      .section-title {
        font-size: 24px;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 0 24px;
      }
      .team-card .team-cover {
        height: 140px;
      }
      .cta-banner {
        padding: 32px 20px;
      }
      .cta-banner h2 {
        font-size: 22px;
      }
      .mini-stat-card .stat-value {
        font-size: 24px;
      }
      .player-avatar {
        width: 40px;
        height: 40px;
      }
      .news-thumb {
        width: 64px;
        height: 44px;
      }
    }
    @media (max-width: 520px) {
      .category-banner {
        padding: 40px 0;
      }
      .category-banner h1 {
        font-size: 26px;
      }
      .section {
        padding: 40px 0;
      }
      .filter-chip {
        padding: 6px 12px;
        font-size: 13px;
      }
    }

/* roulang page: category6 */
:root {
            --primary: #1A6BD5;
            --primary-hover: #1559B5;
            --primary-light: #EEF3FA;
            --accent: #0EA5E9;
            --pitch: #10B981;
            --live: #E11D48;
            --amber: #F59E0B;
            --surface: #F8FAFC;
            --card: #FFFFFF;
            --ink: #1E293B;
            --muted: #64748B;
            --border: #E2E8F0;
            --subtle: #EEF3FA;
            --radius-card: 14px;
            --radius-btn: 8px;
            --radius-img: 12px;
            --shadow-card: 0 4px 20px rgba(15, 23, 42, 0.06);
            --shadow-card-hover: 0 8px 28px rgba(15, 23, 42, 0.10);
            --section-padding: 88px 0;
            --container-padding: 0 24px;
            --transition-base: all 0.25s ease;
            --max-w-site: 1200px;
        }

        @media (max-width: 768px) {
            :root {
                --section-padding: 56px 0;
                --container-padding: 0 16px;
            }
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Inter", "Roboto", sans-serif;
            background-color: var(--surface);
            color: var(--ink);
            line-height: 1.7;
            font-size: 16px;
            min-height: 100vh;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-img);
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-base);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .site-container {
            max-width: var(--max-w-site);
            margin-left: auto;
            margin-right: auto;
            padding: var(--container-padding);
            width: 100%;
        }

        /* Navigation */
        .site-header {
            background: rgba(255, 255, 255, 0.96);
            border-bottom: 1px solid var(--border);
            height: 68px;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
        }

        .site-header .site-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            position: relative;
        }

        .nav-logo {
            font-weight: 700;
            font-size: 22px;
            letter-spacing: 0.5px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .nav-logo .logo-icon {
            width: 34px;
            height: 34px;
            background: var(--primary);
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links li a {
            font-size: 15px;
            font-weight: 500;
            color: var(--ink);
            padding: 8px 0;
            position: relative;
            white-space: nowrap;
            transition: var(--transition-base);
        }

        .nav-links li a:hover {
            color: var(--primary);
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition-base);
            border-radius: 2px;
        }

        .nav-links li a:hover::after,
        .nav-links li a.active::after {
            width: 100%;
        }

        .nav-links li a.active {
            color: var(--primary);
            font-weight: 600;
        }

        .nav-cta {
            background: var(--primary);
            color: #fff;
            padding: 10px 22px;
            border-radius: var(--radius-btn);
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .nav-cta:hover {
            background: var(--primary-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(26, 107, 213, 0.3);
        }

        .nav-cta:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--ink);
            cursor: pointer;
            padding: 4px 8px;
        }

        .hamburger:hover {
            color: var(--primary);
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 68px;
            left: 0;
            right: 0;
            background: #FFFFFF;
            border-bottom: 1px solid var(--border);
            padding: 16px 24px;
            box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
            z-index: 99;
        }

        .mobile-menu.open {
            display: block;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu ul li a {
            display: block;
            padding: 14px 8px;
            font-size: 15px;
            font-weight: 500;
            color: var(--ink);
            border-bottom: 1px solid var(--border);
            transition: var(--transition-base);
        }

        .mobile-menu ul li a:hover {
            color: var(--primary);
            background: var(--primary-light);
            border-radius: 6px;
        }

        .mobile-menu .mobile-cta {
            margin-top: 14px;
            display: block;
            width: 100%;
            text-align: center;
            padding: 14px;
            background: var(--primary);
            color: #fff;
            border-radius: var(--radius-btn);
            font-weight: 600;
        }

        .mobile-menu .mobile-cta:hover {
            background: var(--primary-hover);
        }

        /* Section common */
        .section {
            padding: var(--section-padding);
        }

        .section-header {
            margin-bottom: 36px;
        }

        .section-header h2 {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.35;
            color: var(--ink);
            margin: 0 0 8px;
        }

        .section-header p {
            font-size: 15px;
            color: var(--muted);
            margin: 0;
            max-width: 640px;
        }

        .section-header .section-tag {
            display: inline-block;
            padding: 4px 12px;
            background: var(--primary-light);
            color: var(--primary);
            font-size: 12px;
            font-weight: 600;
            border-radius: 20px;
            margin-bottom: 10px;
        }

        /* Cards */
        .card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 24px;
            transition: var(--transition-base);
        }

        .card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(26, 107, 213, 0.3);
        }

        .card-cover {
            overflow: hidden;
            border-radius: var(--radius-img);
            margin-bottom: 16px;
            aspect-ratio: 16/10;
            position: relative;
        }

        .card-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .card:hover .card-cover img {
            transform: scale(1.05);
        }

        /* Buttons */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--primary);
            color: #fff;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition-base);
        }

        .btn-primary:hover {
            background: var(--primary-hover);
            box-shadow: 0 5px 16px rgba(26, 107, 213, 0.35);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: #fff;
            color: var(--primary);
            padding: 11px 26px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 600;
            border: 1.5px solid var(--primary);
            cursor: pointer;
            transition: var(--transition-base);
        }

        .btn-outline:hover {
            background: var(--primary-light);
            border-color: var(--primary);
        }

        .btn-sm {
            padding: 8px 18px;
            font-size: 13px;
        }

        /* Category banner */
        .category-banner {
            background: linear-gradient(135deg, #EEF3FA 0%, #F8FAFC 60%, #FFFFFF 100%);
            padding: 56px 0 32px;
            position: relative;
            overflow: hidden;
        }

        .category-banner::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -60px;
            width: 320px;
            height: 320px;
            background: rgba(26, 107, 213, 0.05);
            border-radius: 50%;
            pointer-events: none;
        }

        .category-banner h1 {
            font-size: 40px;
            font-weight: 700;
            color: var(--ink);
            margin: 0 0 12px;
            line-height: 1.25;
        }

        .category-banner p {
            font-size: 16px;
            color: var(--muted);
            max-width: 680px;
            margin: 0;
            line-height: 1.8;
        }

        /* Breadcrumb */
        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 13px;
            color: var(--muted);
            padding: 18px 0;
            border-bottom: 1px solid var(--border);
            margin-bottom: 32px;
        }

        .breadcrumb a {
            color: var(--primary);
            font-weight: 500;
        }

        .breadcrumb a:hover {
            color: var(--primary-hover);
            text-decoration: underline;
        }

        .breadcrumb .separator {
            color: #CBD5E1;
        }

        .breadcrumb .current {
            color: var(--ink);
            font-weight: 600;
        }

        /* Filter bar */
        .filter-bar {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 14px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 16px 20px;
            box-shadow: var(--shadow-card);
        }

        .filter-bar .search-input {
            flex: 1;
            min-width: 200px;
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            padding: 10px 16px;
            transition: var(--transition-base);
        }

        .filter-bar .search-input:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 107, 213, 0.08);
        }

        .filter-bar .search-input i {
            color: var(--muted);
            font-size: 14px;
        }

        .filter-bar .search-input input {
            border: none;
            background: transparent;
            outline: none;
            flex: 1;
            font-size: 14px;
            color: var(--ink);
        }

        .filter-bar select {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            padding: 10px 16px;
            font-size: 14px;
            color: var(--ink);
            cursor: pointer;
            outline: none;
            transition: var(--transition-base);
        }

        .filter-bar select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 107, 213, 0.08);
        }

        .filter-bar .filter-btn {
            background: var(--primary);
            color: #fff;
            padding: 10px 22px;
            border-radius: var(--radius-btn);
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .filter-bar .filter-btn:hover {
            background: var(--primary-hover);
        }

        /* Team cards */
        .team-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: var(--transition-base);
        }

        .team-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(26, 107, 213, 0.3);
        }

        .team-card-cover {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
        }

        .team-card-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
            transition: transform 0.5s ease;
        }

        .team-card:hover .team-card-cover img {
            transform: scale(1.05);
        }

        .team-card-body {
            padding: 20px;
        }

        .team-card-body h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--ink);
            margin: 0 0 6px;
            line-height: 1.4;
        }

        .team-card-body .team-league {
            font-size: 13px;
            color: var(--primary);
            font-weight: 600;
            background: var(--primary-light);
            display: inline-block;
            padding: 2px 10px;
            border-radius: 20px;
            margin-bottom: 10px;
        }

        .team-card-body .team-record {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 14px;
            line-height: 1.6;
        }

        .team-record .record-stats {
            display: flex;
            gap: 16px;
            margin-top: 6px;
            font-weight: 600;
            color: var(--ink);
        }

        .record-stats span {
            font-weight: 400;
            color: var(--muted);
        }

        .btn-follow {
            width: 100%;
            padding: 9px 0;
            border-radius: var(--radius-btn);
            font-size: 14px;
            font-weight: 600;
            border: 1.5px solid var(--primary);
            background: transparent;
            color: var(--primary);
            cursor: pointer;
            transition: var(--transition-base);
        }

        .btn-follow:hover {
            background: var(--primary);
            color: #fff;
        }

        .btn-follow.followed {
            background: var(--primary);
            color: #fff;
        }

        /* Player list */
        .player-list {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
        }

        .player-row {
            display: flex;
            align-items: center;
            padding: 16px 20px;
            border-bottom: 1px solid var(--border);
            transition: var(--transition-base);
            gap: 14px;
        }

        .player-row:last-child {
            border-bottom: none;
        }

        .player-row:hover {
            background: var(--primary-light);
        }

        .player-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-weight: 700;
            font-size: 16px;
            flex-shrink: 0;
        }

        .player-info {
            flex: 1;
            min-width: 0;
        }

        .player-info h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--ink);
            margin: 0 0 2px;
        }

        .player-info .player-pos {
            font-size: 13px;
            color: var(--primary);
            font-weight: 500;
        }

        .player-stats {
            display: flex;
            gap: 20px;
            font-size: 13px;
            color: var(--muted);
            flex-shrink: 0;
        }

        .player-stats strong {
            color: var(--ink);
            font-weight: 700;
            display: block;
            font-size: 15px;
        }

        /* Stats cards */
        .stat-mini-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 20px;
            box-shadow: var(--shadow-card);
            text-align: center;
            transition: var(--transition-base);
        }

        .stat-mini-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(26, 107, 213, 0.3);
        }

        .stat-mini-card .stat-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin: 0 auto 12px;
        }

        .stat-mini-card h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--ink);
            margin: 0 0 4px;
        }

        .stat-mini-card p {
            font-size: 13px;
            color: var(--muted);
            margin: 0;
        }

        /* News list */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .news-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 16px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            transition: var(--transition-base);
        }

        .news-item:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(26, 107, 213, 0.3);
        }

        .news-item .news-thumb {
            width: 80px;
            height: 56px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .news-item .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        .news-item .news-content {
            flex: 1;
            min-width: 0;
        }

        .news-item .news-content h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--ink);
            margin: 0 0 4px;
            line-height: 1.5;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .news-item .news-content .news-meta {
            font-size: 12px;
            color: var(--muted);
        }

        /* CTA bar */
        .cta-banner {
            background: linear-gradient(135deg, #FFFFFF 0%, #F0F6FF 50%, #EEF3FA 100%);
            border: 1px solid rgba(26, 107, 213, 0.15);
            border-radius: var(--radius-card);
            padding: 36px;
            text-align: center;
            box-shadow: var(--shadow-card);
        }

        .cta-banner h2 {
            font-size: 26px;
            font-weight: 700;
            color: var(--ink);
            margin: 0 0 10px;
            line-height: 1.4;
        }

        .cta-banner p {
            font-size: 15px;
            color: var(--muted);
            margin: 0 0 20px;
        }

        .cta-banner .cta-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        /* Footer */
        .site-footer {
            background: #1E293B;
            color: #CBD5E1;
            padding: 56px 0 28px;
            margin-top: 32px;
        }

        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.4fr;
            gap: 40px;
            margin-bottom: 32px;
        }

        .site-footer .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            color: #94A3B8;
            margin-top: 14px;
            max-width: 320px;
        }

        .site-footer h4 {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 14px;
            letter-spacing: 0.5px;
        }

        .site-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .site-footer ul li {
            margin-bottom: 10px;
        }

        .site-footer ul li a {
            font-size: 14px;
            color: #CBD5E1;
            transition: var(--transition-base);
        }

        .site-footer ul li a:hover {
            color: #fff;
            text-decoration: underline;
        }

        .site-footer .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 13px;
            color: #94A3B8;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .site-footer .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .nav-links {
                gap: 18px;
            }
            .nav-links li a {
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .nav-cta {
                display: none;
            }
            .category-banner h1 {
                font-size: 30px;
            }
            .section-header h2 {
                font-size: 22px;
            }
            .filter-bar {
                flex-direction: column;
                align-items: stretch;
            }
            .filter-bar .search-input {
                min-width: auto;
            }
            .site-footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .site-footer .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .player-stats {
                gap: 12px;
                font-size: 11px;
            }
            .player-row {
                padding: 12px 14px;
            }
            .cta-banner {
                padding: 26px 18px;
            }
            .cta-banner h2 {
                font-size: 22px;
            }
        }

        @media (min-width: 768px) {
            .mobile-menu {
                display: none !important;
            }
        }

        @media (max-width: 520px) {
            .breadcrumb {
                font-size: 12px;
                gap: 4px;
            }
            .news-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .news-item .news-thumb {
                width: 100%;
                height: 140px;
            }
            .news-item .news-content h4 {
                white-space: normal;
            }
            .player-stats {
                flex-direction: column;
                gap: 4px;
            }
        }
