/* roulang page: index */
:root {
            --bg-carbon: #0C0F14;
            --bg-warm: #F5F4F0;
            --accent: #B8F330;
            --accent-cyan: #2DE1C2;
            --graphite: #1D232C;
            --warm-gray: #ECE9E2;
            --border-dark: #262B33;
            --up-green: #4ADE80;
            --down-red: #F87171;
            --draw-gray: #94A3B8;
            --text-primary: #101216;
            --text-secondary: #5C6470;
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-data: 4px;
            --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.14);
            --border-light: 1px solid var(--warm-gray);
            --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --font-mono: "Inter", "Roboto Mono", "JetBrains Mono", monospace;
            --section-gap: 96px;
            --header-height: 64px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-primary);
            background: var(--bg-warm);
            margin: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: var(--text-primary);
            text-decoration: none;
            transition: color 0.2s ease, border-color 0.2s ease;
        }

        a:hover {
            color: var(--accent);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        textarea {
            font-family: inherit;
            font-size: inherit;
        }

        button:focus,
        input:focus,
        textarea:focus {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: var(--section-gap) 0;
            position: relative;
        }

        .section-dark {
            background: var(--bg-carbon);
            color: #fff;
        }

        .section-light {
            background: var(--bg-warm);
            color: var(--text-primary);
        }

        .section-warm {
            background: #EFEDE6;
            color: var(--text-primary);
        }

        .section-title {
            font-size: clamp(28px, 4vw, 36px);
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 16px;
            color: #fff;
            letter-spacing: -0.01em;
        }

        .section-light .section-title,
        .section-warm .section-title {
            color: var(--text-primary);
        }

        .section-subtitle {
            font-size: 17px;
            color: #B8BDBF;
            max-width: 720px;
            line-height: 1.75;
            margin-bottom: 32px;
        }

        .section-light .section-subtitle,
        .section-warm .section-subtitle {
            color: var(--text-secondary);
        }

        .badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.03em;
            background: rgba(184, 243, 48, 0.12);
            color: var(--accent);
            border: 1px solid rgba(184, 243, 48, 0.3);
            margin-bottom: 12px;
        }

        .section-light .badge,
        .section-warm .badge {
            background: rgba(13, 16, 20, 0.06);
            color: var(--text-primary);
            border-color: rgba(13, 16, 20, 0.15);
        }

        /* Header Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 60;
            background: var(--bg-carbon);
            height: var(--header-height);
            display: flex;
            align-items: center;
            border-bottom: 1px solid var(--border-dark);
            padding: 0 24px;
        }

        .site-header .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .nav-logo {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.01em;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-logo .logo-mark {
            color: var(--accent);
            font-family: var(--font-mono);
            font-size: 18px;
        }

        .nav-logo:hover {
            color: var(--accent);
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: #0C0F14;
            font-weight: 600;
            font-size: 14px;
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            border: none;
            cursor: pointer;
            white-space: nowrap;
            transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
            box-shadow: 0 2px 12px rgba(184, 243, 48, 0.25);
        }

        .nav-cta:hover {
            background: #C7FF4A;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(184, 243, 48, 0.35);
            color: #0C0F14;
        }

        /* Hero Magazine Split */
        .hero {
            background: var(--bg-carbon);
            color: #fff;
            padding: 72px 0 80px;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--border-dark);
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/83c711ad1b9f09e4.webp') center/cover no-repeat;
            opacity: 0.25;
            z-index: 1;
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(12, 15, 20, 0.75) 0%, rgba(12, 15, 20, 0.9) 100%);
            z-index: 2;
            pointer-events: none;
        }

        .hero .container {
            position: relative;
            z-index: 3;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 48px;
            align-items: center;
        }

        .hero-left {
            padding-right: 16px;
        }

        .hero-title {
            font-size: clamp(42px, 5.5vw, 60px);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
            color: #fff;
        }

        .hero-title .highlight {
            color: var(--accent);
        }

        .hero-subtitle {
            font-size: 17px;
            line-height: 1.75;
            color: #CBD0D4;
            max-width: 560px;
            margin-bottom: 28px;
            letter-spacing: 0.01em;
        }

        .hero-cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: #0C0F14;
            font-weight: 700;
            font-size: 15px;
            padding: 14px 28px;
            border-radius: var(--radius-btn);
            border: none;
            cursor: pointer;
            transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
            box-shadow: 0 4px 18px rgba(184, 243, 48, 0.3);
            text-align: center;
        }

        .btn-primary:hover {
            background: #C7FF4A;
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(184, 243, 48, 0.4);
            color: #0C0F14;
        }

        .btn-outline-dark {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: #fff;
            font-weight: 500;
            font-size: 15px;
            padding: 12px 24px;
            border-radius: var(--radius-btn);
            border: 1px solid rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
        }

        .btn-outline-dark:hover {
            border-color: var(--accent);
            background: rgba(184, 243, 48, 0.1);
            color: var(--accent);
        }

        .hero-right {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .hero-featured-card {
            background: rgba(29, 35, 44, 0.9);
            border: 1px solid var(--border-dark);
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(8px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hero-featured-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
        }

        .featured-label {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .featured-match {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 12px;
        }

        .featured-team {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
        }

        .featured-score {
            font-family: var(--font-mono);
            font-size: 32px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 0.02em;
        }

        .featured-meta {
            font-size: 13px;
            color: #8E969C;
            display: flex;
            gap: 18px;
            align-items: center;
            flex-wrap: wrap;
        }

        .featured-meta .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--down-red);
            animation: pulse 1.2s infinite;
        }

        @keyframes pulse {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.4);
            }
        }

        .hero-stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .hero-stat {
            background: rgba(29, 35, 44, 0.85);
            border: 1px solid var(--border-dark);
            border-radius: var(--radius-data);
            padding: 14px 16px;
            text-align: center;
        }

        .hero-stat .stat-value {
            font-family: var(--font-mono);
            font-size: 20px;
            font-weight: 700;
            color: #fff;
        }

        .hero-stat .stat-label {
            font-size: 11px;
            color: #8E969C;
            letter-spacing: 0.04em;
            margin-top: 2px;
        }

        /* Match Ticker */
        .ticker-wrapper {
            background: #14171C;
            border-top: 1px solid var(--border-dark);
            border-bottom: 1px solid var(--border-dark);
            padding: 0;
            overflow: hidden;
            position: relative;
        }

        .ticker-track {
            display: flex;
            gap: 32px;
            white-space: nowrap;
            padding: 12px 24px;
            animation: ticker-scroll 30s linear infinite;
            width: max-content;
        }

        @keyframes ticker-scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .ticker-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #CBD0D4;
            font-size: 13px;
            font-family: var(--font-mono);
        }

        .ticker-item .ticker-score {
            color: var(--accent);
            font-weight: 700;
        }

        /* Sections common */
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .card-light {
            background: #fff;
            border: 1px solid var(--warm-gray);
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: var(--shadow-card);
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
            height: 100%;
        }

        .card-light:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(184, 243, 48, 0.4);
        }

        .card-dark {
            background: var(--graphite);
            border: 1px solid var(--border-dark);
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
            height: 100%;
        }

        .card-dark:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
            border-color: rgba(184, 243, 48, 0.35);
        }

        .card-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }

        .card-dark .card-title {
            color: #fff;
        }

        .card-text {
            font-size: 15px;
            line-height: 1.65;
            color: var(--text-secondary);
            margin-bottom: 12px;
        }

        .card-dark .card-text {
            color: #B8BDBF;
        }

        .card-icon {
            font-size: 28px;
            color: var(--accent);
            margin-bottom: 14px;
            display: block;
        }

        .card-dark .card-icon {
            color: var(--accent);
        }

        .card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            font-size: 14px;
            color: var(--accent);
            transition: gap 0.2s ease, color 0.2s ease;
        }

        .card-link:hover {
            gap: 10px;
            color: #C7FF4A;
        }

        /* Score list items */
        .score-list-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 16px;
            background: #fff;
            border: 1px solid var(--warm-gray);
            border-radius: var(--radius-data);
            margin-bottom: 8px;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .score-list-item:hover {
            border-color: rgba(184, 243, 48, 0.5);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }

        .score-list-item .match-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .score-list-item .match-event {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--text-secondary);
        }

        .score-list-item .match-teams {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .score-list-item .match-score {
            font-family: var(--font-mono);
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .score-list-item .match-status {
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 12px;
            background: rgba(74, 222, 128, 0.15);
            color: var(--up-green);
        }

        .score-list-item .match-status.live {
            background: rgba(248, 113, 113, 0.15);
            color: var(--down-red);
        }

        /* Tags cloud */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: #fff;
            border: 1px solid var(--warm-gray);
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-primary);
            transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
        }

        .tag-link:hover {
            border-color: var(--accent);
            background: rgba(184, 243, 48, 0.08);
            color: var(--text-primary);
            transform: translateY(-1px);
        }

        /* Pricing */
        .pricing-card {
            background: #fff;
            border: 1px solid var(--warm-gray);
            border-radius: var(--radius-card);
            padding: 28px 24px;
            box-shadow: var(--shadow-card);
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(184, 243, 48, 0.5);
        }

        .pricing-card.popular {
            border-color: var(--accent);
            box-shadow: 0 0 0 1px var(--accent), 0 12px 32px rgba(184, 243, 48, 0.2);
        }

        .pricing-plan {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 8px;
        }

        .pricing-price {
            font-family: var(--font-mono);
            font-size: 36px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .pricing-desc {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 16px;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0 0 20px;
            flex: 1;
        }

        .pricing-features li {
            font-size: 14px;
            color: var(--text-primary);
            padding: 6px 0;
            border-bottom: 1px solid #F0EEEA;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pricing-features li i {
            color: var(--accent);
            font-size: 12px;
        }

        /* Testimonials */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .testimonial-card {
            background: #fff;
            border: 1px solid var(--warm-gray);
            border-radius: var(--radius-card);
            padding: 20px;
            box-shadow: var(--shadow-card);
            transition: transform 0.2s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .testimonial-stars {
            color: #F5A623;
            font-size: 13px;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }

        .testimonial-text {
            font-size: 14px;
            line-height: 1.65;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .testimonial-author {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
        }

        /* News list */
        .news-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            padding: 18px 0;
            border-bottom: 1px solid var(--warm-gray);
            transition: background 0.2s ease;
        }

        .news-item:hover {
            background: rgba(255, 255, 255, 0.6);
        }

        .news-date {
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--text-secondary);
            white-space: nowrap;
            min-width: 80px;
            padding-top: 4px;
        }

        .news-content {
            flex: 1;
        }

        .news-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
            transition: color 0.2s ease;
        }

        .news-title:hover {
            color: var(--accent);
        }

        .news-summary {
            font-size: 14px;
            line-height: 1.65;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .news-readmore {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: gap 0.2s ease;
        }

        .news-readmore:hover {
            gap: 8px;
            color: #C7FF4A;
        }

        /* FAQ */
        .faq-list {
            max-width: 820px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            overflow: hidden;
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 18px 0;
            background: transparent;
            border: none;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            text-align: left;
            transition: background 0.2s ease, padding-left 0.2s ease;
        }

        .faq-question:hover {
            background: rgba(255, 255, 255, 0.04);
            padding-left: 8px;
        }

        .faq-question .faq-icon {
            font-size: 18px;
            color: var(--accent);
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding-bottom 0.35s ease;
            color: #B8BDBF;
            font-size: 15px;
            line-height: 1.7;
            padding-bottom: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding-bottom: 18px;
        }

        /* Form */
        .subscribe-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }

        .subscribe-input {
            flex: 1;
            min-width: 240px;
            padding: 14px 18px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--border-dark);
            background: rgba(29, 35, 44, 0.7);
            color: #fff;
            font-size: 15px;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .subscribe-input::placeholder {
            color: #8E969C;
        }

        .subscribe-input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(184, 243, 48, 0.2);
        }

        /* Brand intro */
        .brand-intro-text {
            font-size: 16px;
            line-height: 1.85;
            color: var(--text-secondary);
            max-width: 860px;
        }

        .brand-intro-text strong {
            color: var(--text-primary);
        }

        /* Data covers */
        .cover-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 16px;
            background: #fff;
            border: 1px solid var(--warm-gray);
            border-radius: var(--radius-data);
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .cover-item:hover {
            border-color: rgba(184, 243, 48, 0.4);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
        }

        .cover-item .cover-icon {
            font-size: 20px;
            color: var(--accent);
            margin-top: 2px;
            flex-shrink: 0;
        }

        .cover-item .cover-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .cover-item .cover-detail {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* Footer */
        .site-footer {
            background: var(--bg-carbon);
            color: #B8BDBF;
            padding: 56px 0 32px;
            border-top: 1px solid var(--border-dark);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 36px;
            margin-bottom: 32px;
        }

        .footer-brand {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            display: block;
        }

        .footer-brand:hover {
            color: var(--accent);
        }

        .footer-desc {
            font-size: 14px;
            line-height: 1.7;
            color: #8E969C;
            max-width: 380px;
        }

        .footer-subscribe {
            display: flex;
            gap: 8px;
            margin-top: 16px;
        }

        .footer-subscribe input {
            flex: 1;
            padding: 10px 16px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--border-dark);
            background: rgba(29, 35, 44, 0.6);
            color: #fff;
            font-size: 13px;
        }

        .footer-subscribe input:focus {
            outline: none;
            border-color: var(--accent);
        }

        .footer-subscribe button {
            padding: 10px 20px;
            background: var(--accent);
            color: #0C0F14;
            font-weight: 600;
            font-size: 13px;
            border: none;
            border-radius: var(--radius-btn);
            cursor: pointer;
            transition: background 0.25s ease;
        }

        .footer-subscribe button:hover {
            background: #C7FF4A;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            font-size: 14px;
            color: #B8BDBF;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-dark);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 13px;
            color: #6B7280;
        }

        .footer-bottom a {
            color: #8E969C;
        }

        .footer-bottom a:hover {
            color: var(--accent);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero-left {
                padding-right: 0;
            }
            .hero-right {
                max-width: 600px;
            }
            .grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }
            .grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-gap: 64px;
            }
            .section {
                padding: 64px 0;
            }
            .grid-2 {
                grid-template-columns: 1fr;
            }
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .grid-4 {
                grid-template-columns: 1fr;
            }
            .testimonial-grid {
                grid-template-columns: 1fr;
            }
            .hero {
                padding: 48px 0 56px;
            }
            .hero-title {
                font-size: 36px;
            }
            .hero-stats-row {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }
            .hero-stat {
                padding: 10px 8px;
            }
            .hero-stat .stat-value {
                font-size: 16px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .news-item {
                flex-direction: column;
                gap: 6px;
            }
            .news-date {
                min-width: auto;
            }
            .subscribe-form {
                flex-direction: column;
            }
            .subscribe-input {
                min-width: 100%;
                width: 100%;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .site-header {
                padding: 0 16px;
            }
            .nav-logo {
                font-size: 17px;
            }
            .nav-cta {
                font-size: 12px;
                padding: 8px 14px;
                gap: 4px;
            }
            .hero-title {
                font-size: 30px;
            }
            .hero-subtitle {
                font-size: 15px;
            }
            .btn-primary {
                font-size: 13px;
                padding: 12px 22px;
            }
            .btn-outline-dark {
                font-size: 13px;
                padding: 10px 18px;
            }
            .featured-score {
                font-size: 26px;
            }
            .section-title {
                font-size: 24px;
            }
            .card-title {
                font-size: 18px;
            }
            .pricing-price {
                font-size: 28px;
            }
            .ticker-track {
                animation-duration: 20s;
                gap: 20px;
                padding: 10px 16px;
            }
        }

/* roulang page: category2 */
:root {
            --bg-carbon: #0C0F14;
            --bg-warm: #F5F4F0;
            --accent: #B8F330;
            --accent-cyan: #2DE1C2;
            --graphite: #1D232C;
            --warm-gray: #ECE9E2;
            --border-dark: #262B33;
            --up-green: #4ADE80;
            --down-red: #F87171;
            --draw-gray: #94A3B8;
            --text-primary: #101216;
            --text-secondary: #5C6470;
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-data: 4px;
            --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.14);
            --border-light: 1px solid var(--warm-gray);
            --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --font-mono: "Inter", "Roboto Mono", "JetBrains Mono", monospace;
            --section-gap: 64px;
            --header-height: 64px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-primary);
            background: var(--bg-warm);
            margin: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: var(--text-primary);
            text-decoration: none;
            transition: color 0.2s ease, border-color 0.2s ease;
        }

        a:hover {
            color: var(--accent);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        textarea,
        select {
            font-family: inherit;
            font-size: inherit;
        }

        button:focus,
        input:focus,
        textarea:focus,
        select:focus {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: var(--section-gap) 0;
            position: relative;
        }

        .section-dark {
            background: var(--bg-carbon);
            color: #fff;
        }

        .section-light {
            background: var(--bg-warm);
            color: var(--text-primary);
        }

        .section-warm {
            background: #EFEDE6;
            color: var(--text-primary);
        }

        .section-title {
            font-size: clamp(26px, 3.5vw, 32px);
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 16px;
            color: #fff;
            letter-spacing: -0.01em;
        }

        .section-light .section-title,
        .section-warm .section-title {
            color: var(--text-primary);
        }

        .section-subtitle {
            font-size: 16px;
            color: #B8BDBF;
            max-width: 720px;
            line-height: 1.75;
            margin-bottom: 32px;
        }

        .section-light .section-subtitle,
        .section-warm .section-subtitle {
            color: var(--text-secondary);
        }

        .badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.03em;
            background: rgba(184, 243, 48, 0.12);
            color: var(--accent);
            border: 1px solid rgba(184, 243, 48, 0.3);
            margin-bottom: 12px;
        }

        .section-light .badge,
        .section-warm .badge {
            background: rgba(13, 16, 20, 0.06);
            color: var(--text-primary);
            border-color: rgba(13, 16, 20, 0.15);
        }

        /* Header Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 60;
            background: var(--bg-carbon);
            height: var(--header-height);
            display: flex;
            align-items: center;
            border-bottom: 1px solid var(--border-dark);
            padding: 0 24px;
        }

        .site-header .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .nav-logo {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.01em;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-logo .logo-mark {
            color: var(--accent);
            font-family: var(--font-mono);
            font-size: 18px;
        }

        .nav-logo:hover {
            color: var(--accent);
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: #0C0F14;
            font-weight: 600;
            font-size: 14px;
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            border: none;
            cursor: pointer;
            white-space: nowrap;
            transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
            box-shadow: 0 2px 12px rgba(184, 243, 48, 0.25);
        }

        .nav-cta:hover {
            background: #C7FF4A;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(184, 243, 48, 0.35);
            color: #0C0F14;
        }

        /* Breadcrumbs */
        .breadcrumb-bar {
            background: #EFEDE6;
            border-bottom: 1px solid var(--warm-gray);
            padding: 12px 0;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-secondary);
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .breadcrumb a {
            color: var(--text-secondary);
            font-weight: 500;
        }

        .breadcrumb a:hover {
            color: var(--text-primary);
        }

        .breadcrumb .separator {
            color: #B8BDBF;
            font-size: 12px;
        }

        .breadcrumb .current {
            color: var(--text-primary);
            font-weight: 600;
        }

        /* Page Hero */
        .page-hero {
            background: var(--bg-carbon);
            color: #fff;
            padding: 56px 0 48px;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--border-dark);
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/83c711ad1b9f09e4.webp') center/cover no-repeat;
            opacity: 0.18;
            z-index: 1;
            pointer-events: none;
        }

        .page-hero .container {
            position: relative;
            z-index: 2;
        }

        .page-hero h1 {
            font-size: clamp(34px, 5vw, 48px);
            font-weight: 700;
            line-height: 1.2;
            margin: 0 0 16px;
            letter-spacing: -0.01em;
            color: #fff;
        }

        .page-hero h1 .highlight {
            color: var(--accent);
        }

        .page-hero .hero-summary {
            font-size: 16px;
            color: #C5C9CC;
            max-width: 820px;
            line-height: 1.8;
            margin: 0;
        }

        /* Filter Toolbar */
        .filter-toolbar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            background: #fff;
            border: 1px solid var(--warm-gray);
            border-radius: var(--radius-card);
            padding: 16px 20px;
            box-shadow: var(--shadow-card);
        }

        .filter-toolbar .filter-group {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .filter-toolbar .filter-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            white-space: nowrap;
        }

        .filter-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: var(--radius-btn);
            font-size: 13px;
            font-weight: 600;
            background: var(--bg-warm);
            color: var(--text-secondary);
            border: 1px solid transparent;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .filter-btn:hover {
            background: var(--warm-gray);
            color: var(--text-primary);
            border-color: #D1CEC4;
        }

        .filter-btn.active {
            background: var(--accent);
            color: #0C0F14;
            border-color: var(--accent);
            box-shadow: 0 2px 8px rgba(184, 243, 48, 0.3);
        }

        .filter-select {
            padding: 8px 12px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--warm-gray);
            background: #fff;
            font-size: 13px;
            color: var(--text-primary);
            cursor: pointer;
            min-width: 130px;
            transition: border-color 0.2s ease;
        }

        .filter-select:hover,
        .filter-select:focus {
            border-color: var(--accent);
        }

        /* Tournament Timeline */
        .timeline-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .tournament-card {
            display: grid;
            grid-template-columns: 180px 1fr 140px;
            gap: 20px;
            align-items: center;
            background: #fff;
            border: 1px solid var(--warm-gray);
            border-radius: var(--radius-card);
            padding: 20px 24px;
            box-shadow: var(--shadow-card);
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
            position: relative;
            overflow: hidden;
        }

        .tournament-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--accent);
            opacity: 0;
            transition: opacity 0.25s ease;
        }

        .tournament-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
            border-color: #D1CEC4;
        }

        .tournament-card:hover::before {
            opacity: 1;
        }

        .tournament-card .tournament-date {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .tournament-card .tournament-date .date-day {
            font-family: var(--font-mono);
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.2;
        }

        .tournament-card .tournament-date .date-month {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .tournament-card .tournament-date .date-time {
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--text-secondary);
            background: var(--bg-warm);
            padding: 2px 8px;
            border-radius: var(--radius-data);
            display: inline-block;
            width: fit-content;
        }

        .tournament-card .tournament-info {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .tournament-card .tournament-teams {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            flex-wrap: wrap;
        }

        .tournament-card .tournament-teams .versus {
            font-family: var(--font-mono);
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
            background: var(--bg-warm);
            padding: 2px 8px;
            border-radius: var(--radius-data);
        }

        .tournament-card .tournament-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .tournament-card .tournament-meta .meta-tag {
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: var(--radius-data);
            background: var(--bg-warm);
            color: var(--text-secondary);
            letter-spacing: 0.03em;
        }

        .tournament-card .tournament-meta .meta-tag.bo3 {
            background: rgba(45, 225, 194, 0.1);
            color: #1FAE96;
            border: 1px solid rgba(45, 225, 194, 0.3);
        }

        .tournament-card .tournament-meta .meta-tag.prize {
            background: rgba(184, 243, 48, 0.1);
            color: #6D9E12;
            border: 1px solid rgba(184, 243, 48, 0.3);
        }

        .tournament-card .tournament-meta .meta-tag.region {
            background: rgba(148, 163, 184, 0.12);
            color: #5C6470;
            border: 1px solid rgba(148, 163, 184, 0.3);
        }

        .tournament-card .tournament-status {
            display: flex;
            flex-direction: column;
            gap: 8px;
            align-items: flex-end;
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 700;
            padding: 6px 12px;
            border-radius: var(--radius-data);
            letter-spacing: 0.03em;
            white-space: nowrap;
        }

        .status-badge.live {
            background: rgba(248, 113, 113, 0.12);
            color: var(--down-red);
            border: 1px solid rgba(248, 113, 113, 0.3);
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        .status-badge.upcoming {
            background: rgba(184, 243, 48, 0.1);
            color: #6D9E12;
            border: 1px solid rgba(184, 243, 48, 0.3);
        }

        .status-badge.completed {
            background: rgba(148, 163, 184, 0.12);
            color: #5C6470;
            border: 1px solid rgba(148, 163, 184, 0.3);
        }

        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.35);
            }
            50% {
                box-shadow: 0 0 0 6px rgba(248, 113, 113, 0);
            }
        }

        .detail-link {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: color 0.2s ease;
        }

        .detail-link:hover {
            color: var(--accent);
        }

        /* Bracket Section */
        .bracket-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .bracket-card {
            background: #fff;
            border: 1px solid var(--warm-gray);
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: var(--shadow-card);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .bracket-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .bracket-card .bracket-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .bracket-card .bracket-title i {
            color: var(--accent);
        }

        .bracket-match {
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding: 10px 0;
            border-bottom: 1px solid var(--warm-gray);
        }

        .bracket-match:last-child {
            border-bottom: none;
        }

        .bracket-match .match-team {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: var(--text-primary);
            font-weight: 500;
        }

        .bracket-match .match-team .team-score {
            font-family: var(--font-mono);
            font-weight: 700;
            color: var(--text-secondary);
        }

        .bracket-match .match-team.winner {
            color: #6D9E12;
            font-weight: 700;
        }

        .bracket-match .match-team.winner .team-score {
            color: #6D9E12;
        }

        /* Team Stats Summary */
        .team-summary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 16px;
        }

        .team-summary-card {
            background: #fff;
            border: 1px solid var(--warm-gray);
            border-radius: var(--radius-card);
            padding: 20px;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
            gap: 12px;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .team-summary-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .team-summary-card .team-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .team-summary-card .team-name .team-rank {
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--text-secondary);
            background: var(--bg-warm);
            padding: 2px 8px;
            border-radius: var(--radius-data);
            font-weight: 600;
        }

        .team-summary-card .team-stats-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: var(--text-secondary);
            padding: 6px 0;
            border-bottom: 1px solid #F0EFEA;
        }

        .team-summary-card .team-stats-row:last-of-type {
            border-bottom: none;
        }

        .team-summary-card .team-stats-row .stat-value {
            font-family: var(--font-mono);
            font-weight: 700;
            color: var(--text-primary);
        }

        /* CTA Section */
        .cta-section {
            background: var(--bg-carbon);
            color: #fff;
            padding: 56px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/70f0235f35184d3a.jpg') center/cover no-repeat;
            opacity: 0.15;
            z-index: 1;
            pointer-events: none;
        }

        .cta-section .container {
            position: relative;
            z-index: 2;
        }

        .cta-section .cta-title {
            font-size: clamp(24px, 3vw, 32px);
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

        .cta-section .cta-desc {
            font-size: 15px;
            color: #B8BDBF;
            max-width: 580px;
            margin-bottom: 24px;
            line-height: 1.7;
        }

        .cta-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            max-width: 480px;
        }

        .cta-form input {
            flex: 1;
            min-width: 200px;
            padding: 12px 16px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--border-dark);
            background: var(--graphite);
            color: #fff;
            font-size: 14px;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .cta-form input::placeholder {
            color: #8A939B;
        }

        .cta-form input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(184, 243, 48, 0.2);
            outline: none;
        }

        .cta-form button {
            padding: 12px 24px;
            border-radius: var(--radius-btn);
            border: none;
            background: var(--accent);
            color: #0C0F14;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            white-space: nowrap;
            transition: background 0.25s ease, transform 0.2s ease;
            box-shadow: 0 2px 12px rgba(184, 243, 48, 0.25);
        }

        .cta-form button:hover {
            background: #C7FF4A;
            transform: translateY(-1px);
        }

        /* News Cards */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .news-card {
            background: #fff;
            border: 1px solid var(--warm-gray);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .news-card .news-thumb {
            height: 180px;
            overflow: hidden;
            background: var(--warm-gray);
        }

        .news-card .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .news-card:hover .news-thumb img {
            transform: scale(1.05);
        }

        .news-card .news-body {
            padding: 18px 20px 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            flex: 1;
        }

        .news-card .news-date {
            font-size: 12px;
            color: var(--text-secondary);
            font-family: var(--font-mono);
            font-weight: 500;
        }

        .news-card .news-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.45;
            margin: 0;
        }

        .news-card .news-excerpt {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            flex: 1;
        }

        .news-card .news-link {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: color 0.2s ease;
        }

        .news-card .news-link:hover {
            color: var(--accent);
        }

        /* Footer */
        .site-footer {
            background: var(--bg-carbon);
            color: #B8BDBF;
            padding: 48px 0 24px;
            border-top: 1px solid var(--border-dark);
        }

        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }

        .site-footer .footer-brand {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            display: inline-block;
            margin-bottom: 12px;
        }

        .site-footer .footer-brand:hover {
            color: var(--accent);
        }

        .site-footer .footer-desc {
            font-size: 14px;
            color: #B8BDBF;
            line-height: 1.7;
            max-width: 420px;
            margin-bottom: 16px;
        }

        .site-footer .footer-subscribe {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            max-width: 400px;
        }

        .site-footer .footer-subscribe input {
            flex: 1;
            min-width: 160px;
            padding: 10px 14px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--border-dark);
            background: var(--graphite);
            color: #fff;
            font-size: 13px;
            transition: border-color 0.25s ease;
        }

        .site-footer .footer-subscribe input::placeholder {
            color: #8A939B;
        }

        .site-footer .footer-subscribe input:focus {
            border-color: var(--accent);
            outline: none;
        }

        .site-footer .footer-subscribe button {
            padding: 10px 18px;
            border-radius: var(--radius-btn);
            border: none;
            background: var(--accent);
            color: #0C0F14;
            font-weight: 700;
            font-size: 13px;
            cursor: pointer;
            white-space: nowrap;
            transition: background 0.25s ease;
        }

        .site-footer .footer-subscribe button:hover {
            background: #C7FF4A;
        }

        .site-footer .footer-links {
            list-style: none;
            margin: 18px 0 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .site-footer .footer-links a {
            color: #B8BDBF;
            font-size: 14px;
            transition: color 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .site-footer .footer-links a:hover {
            color: var(--accent);
        }

        .site-footer .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding-top: 24px;
            border-top: 1px solid var(--border-dark);
            font-size: 13px;
            color: #8A939B;
            gap: 12px;
        }

        .site-footer .footer-bottom a {
            color: #8A939B;
            font-size: 13px;
            transition: color 0.2s ease;
        }

        .site-footer .footer-bottom a:hover {
            color: var(--accent);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            :root {
                --section-gap: 48px;
            }

            .tournament-card {
                grid-template-columns: 140px 1fr 110px;
                gap: 14px;
                padding: 16px 18px;
            }

            .site-footer .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .tournament-card {
                grid-template-columns: 1fr;
                gap: 12px;
                padding: 16px;
            }

            .tournament-card .tournament-status {
                align-items: flex-start;
            }

            .site-footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .site-footer .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }

            .filter-toolbar {
                padding: 12px 14px;
                gap: 8px;
            }

            .page-hero {
                padding: 40px 0 36px;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }

            .bracket-showcase {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }

            .nav-logo {
                font-size: 17px;
            }

            .nav-cta {
                font-size: 12px;
                padding: 8px 14px;
            }

            .site-header {
                padding: 0 16px;
            }

            .filter-btn {
                font-size: 12px;
                padding: 6px 10px;
            }

            .filter-select {
                min-width: 100px;
                font-size: 12px;
            }

            .tournament-card .tournament-teams {
                font-size: 15px;
            }

            .team-summary-grid {
                grid-template-columns: 1fr;
            }
        }

/* roulang page: category3 */
:root {
        --bg-carbon: #0C0F14;
        --bg-warm: #F5F4F0;
        --accent: #B8F330;
        --accent-cyan: #2DE1C2;
        --graphite: #1D232C;
        --warm-gray: #ECE9E2;
        --border-dark: #262B33;
        --up-green: #4ADE80;
        --down-red: #F87171;
        --draw-gray: #94A3B8;
        --text-primary: #101216;
        --text-secondary: #5C6470;
        --radius-card: 12px;
        --radius-btn: 8px;
        --radius-data: 4px;
        --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.08);
        --shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.14);
        --border-light: 1px solid var(--warm-gray);
        --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
        --font-mono: "Inter", "Roboto Mono", "JetBrains Mono", monospace;
        --section-gap: 64px;
        --header-height: 64px;
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        font-family: var(--font-sans);
        font-size: 16px;
        line-height: 1.7;
        color: var(--text-primary);
        background: var(--bg-warm);
        margin: 0;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    a {
        color: var(--text-primary);
        text-decoration: none;
        transition: color 0.2s ease, border-color 0.2s ease;
    }
    a:hover {
        color: var(--accent);
    }
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    button,
    input,
    textarea {
        font-family: inherit;
        font-size: inherit;
    }
    button:focus,
    input:focus,
    textarea:focus {
        outline: 2px solid var(--accent);
        outline-offset: 2px;
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }
    .section {
        padding: var(--section-gap) 0;
        position: relative;
    }
    .section-dark {
        background: var(--bg-carbon);
        color: #fff;
    }
    .section-light {
        background: var(--bg-warm);
        color: var(--text-primary);
    }
    .section-warm {
        background: #EFEDE6;
        color: var(--text-primary);
    }
    .section-title {
        font-size: clamp(28px, 4vw, 36px);
        font-weight: 700;
        line-height: 1.25;
        margin-bottom: 16px;
        color: #fff;
        letter-spacing: -0.01em;
    }
    .section-light .section-title,
    .section-warm .section-title {
        color: var(--text-primary);
    }
    .section-subtitle {
        font-size: 17px;
        color: #B8BDBF;
        max-width: 720px;
        line-height: 1.75;
        margin-bottom: 32px;
    }
    .section-light .section-subtitle,
    .section-warm .section-subtitle {
        color: var(--text-secondary);
    }
    .badge {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.03em;
        background: rgba(184, 243, 48, 0.12);
        color: var(--accent);
        border: 1px solid rgba(184, 243, 48, 0.3);
        margin-bottom: 12px;
    }
    .section-light .badge,
    .section-warm .badge {
        background: rgba(13, 16, 20, 0.06);
        color: var(--text-primary);
        border-color: rgba(13, 16, 20, 0.15);
    }

    /* Header */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 60;
        background: var(--bg-carbon);
        height: var(--header-height);
        display: flex;
        align-items: center;
        border-bottom: 1px solid var(--border-dark);
        padding: 0 24px;
    }
    .site-header .nav-inner {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }
    .nav-logo {
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        letter-spacing: -0.01em;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .nav-logo .logo-mark {
        color: var(--accent);
        font-family: var(--font-mono);
        font-size: 18px;
    }
    .nav-logo:hover {
        color: var(--accent);
    }
    .nav-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--accent);
        color: #0C0F14;
        font-weight: 600;
        font-size: 14px;
        padding: 10px 20px;
        border-radius: var(--radius-btn);
        border: none;
        cursor: pointer;
        white-space: nowrap;
        transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
        box-shadow: 0 2px 12px rgba(184, 243, 48, 0.25);
    }
    .nav-cta:hover {
        background: #C7FF4A;
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(184, 243, 48, 0.35);
        color: #0C0F14;
    }

    /* Breadcrumb */
    .breadcrumb {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: #B8BDBF;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    .breadcrumb a {
        color: #B8BDBF;
        transition: color 0.2s ease;
    }
    .breadcrumb a:hover {
        color: var(--accent);
    }
    .breadcrumb .separator {
        color: var(--border-dark);
        font-size: 12px;
    }
    .breadcrumb .current {
        color: var(--accent);
        font-weight: 600;
    }

    /* Hero - Category variant */
    .hero-category {
        background: var(--bg-carbon);
        color: #fff;
        padding: 60px 0 64px;
        position: relative;
        overflow: hidden;
        border-bottom: 1px solid var(--border-dark);
    }
    .hero-category::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('/assets/images/83c711ad1b9f09e4.webp') center/cover no-repeat;
        opacity: 0.18;
        z-index: 1;
        pointer-events: none;
    }
    .hero-category .hero-inner {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
    }
    .hero-category .hero-text h1 {
        font-size: clamp(36px, 5vw, 52px);
        font-weight: 700;
        line-height: 1.15;
        letter-spacing: -0.02em;
        margin-bottom: 20px;
        color: #fff;
    }
    .hero-category .hero-text h1 .accent-text {
        color: var(--accent);
    }
    .hero-category .hero-text .hero-subtitle {
        font-size: 17px;
        line-height: 1.8;
        color: #B8BDBF;
        max-width: 520px;
    }
    .hero-category .hero-panel {
        background: rgba(29, 35, 44, 0.85);
        border: 1px solid var(--border-dark);
        border-radius: 12px;
        padding: 24px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    }
    .hero-category .panel-label {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--accent);
        font-weight: 600;
        margin-bottom: 16px;
    }
    .hero-category .panel-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 14px;
    }
    .hero-category .panel-row:last-child {
        border-bottom: none;
    }
    .hero-category .panel-rank {
        font-family: var(--font-mono);
        font-weight: 700;
        color: var(--accent);
        width: 28px;
        text-align: center;
    }
    .hero-category .panel-team {
        font-weight: 600;
        color: #fff;
        flex: 1;
        margin-left: 12px;
    }
    .hero-category .panel-stat {
        font-family: var(--font-mono);
        color: var(--accent-cyan);
        font-weight: 600;
    }

    /* Filter Toolbar */
    .filter-toolbar {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 28px;
    }
    .filter-toolbar .filter-label {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-secondary);
        white-space: nowrap;
    }
    .filter-toolbar .filter-btn {
        padding: 8px 18px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 500;
        border: 1px solid var(--warm-gray);
        background: #fff;
        color: var(--text-primary);
        cursor: pointer;
        transition: all 0.25s ease;
        white-space: nowrap;
    }
    .filter-toolbar .filter-btn:hover {
        border-color: var(--accent);
        background: rgba(184, 243, 48, 0.08);
    }
    .filter-toolbar .filter-btn.active {
        background: var(--accent);
        color: #0C0F14;
        border-color: var(--accent);
        font-weight: 600;
    }

    /* Team Table */
    .team-table-wrap {
        background: #fff;
        border-radius: 12px;
        border: 1px solid var(--warm-gray);
        overflow: hidden;
        box-shadow: var(--shadow-card);
    }
    .team-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 14px;
    }
    .team-table thead {
        background: var(--graphite);
        color: #fff;
    }
    .team-table thead th {
        padding: 14px 20px;
        text-align: left;
        font-weight: 600;
        font-size: 13px;
        letter-spacing: 0.03em;
        text-transform: uppercase;
    }
    .team-table tbody tr {
        border-bottom: 1px solid var(--warm-gray);
        transition: background 0.2s ease;
    }
    .team-table tbody tr:hover {
        background: rgba(184, 243, 48, 0.05);
    }
    .team-table tbody tr:last-child {
        border-bottom: none;
    }
    .team-table tbody td {
        padding: 14px 20px;
        vertical-align: middle;
    }
    .team-table .td-rank {
        font-family: var(--font-mono);
        font-weight: 700;
        font-size: 16px;
        color: var(--accent);
    }
    .team-table .td-team {
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .team-table .td-team .team-tag {
        font-size: 12px;
        padding: 3px 8px;
        border-radius: 4px;
        background: rgba(184, 243, 48, 0.12);
        color: var(--accent);
        font-weight: 600;
    }
    .team-table .td-winrate {
        font-family: var(--font-mono);
        font-weight: 600;
        color: var(--up-green);
    }
    .team-table .td-change {
        font-family: var(--font-mono);
        font-size: 13px;
        font-weight: 600;
    }
    .team-table .td-change.up {
        color: var(--up-green);
    }
    .team-table .td-change.down {
        color: var(--down-red);
    }
    .team-table .td-change.flat {
        color: var(--draw-gray);
    }
    .team-table .td-maps {
        font-family: var(--font-mono);
        font-size: 13px;
        color: var(--text-secondary);
    }

    /* Team Cards */
    .team-cards-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    .team-card {
        background: #fff;
        border-radius: 12px;
        border: 1px solid var(--warm-gray);
        padding: 24px;
        text-align: center;
        box-shadow: var(--shadow-card);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    .team-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
        border-color: rgba(184, 243, 48, 0.4);
    }
    .team-card .team-logo-placeholder {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--graphite);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
        font-size: 22px;
        font-weight: 700;
        color: var(--accent);
        font-family: var(--font-mono);
        border: 2px solid rgba(184, 243, 48, 0.3);
    }
    .team-card .team-name {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--text-primary);
    }
    .team-card .team-region {
        font-size: 12px;
        color: var(--text-secondary);
        margin-bottom: 12px;
    }
    .team-card .team-stats-row {
        display: flex;
        justify-content: space-around;
        border-top: 1px solid var(--warm-gray);
        padding-top: 14px;
        margin-top: 12px;
    }
    .team-card .stat-item {
        text-align: center;
    }
    .team-card .stat-item .stat-value {
        font-family: var(--font-mono);
        font-size: 18px;
        font-weight: 700;
        color: var(--accent);
    }
    .team-card .stat-item .stat-label {
        font-size: 11px;
        color: var(--text-secondary);
        margin-top: 2px;
    }

    /* Player Cards */
    .player-cards-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .player-card {
        background: #fff;
        border-radius: 12px;
        border: 1px solid var(--warm-gray);
        padding: 22px;
        box-shadow: var(--shadow-card);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 16px;
    }
    .player-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
    }
    .player-card .player-avatar {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: var(--graphite);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 700;
        color: var(--accent-cyan);
        font-family: var(--font-mono);
        flex-shrink: 0;
        border: 2px solid rgba(45, 225, 194, 0.3);
    }
    .player-card .player-info {
        flex: 1;
    }
    .player-card .player-name {
        font-size: 16px;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 4px;
    }
    .player-card .player-team {
        font-size: 12px;
        color: var(--text-secondary);
        margin-bottom: 8px;
    }
    .player-card .player-stats {
        display: flex;
        gap: 14px;
        font-size: 13px;
    }
    .player-card .player-stats span {
        font-family: var(--font-mono);
        font-weight: 600;
    }
    .player-card .player-stats .rating-high {
        color: var(--up-green);
    }
    .player-card .player-stats .impact-high {
        color: var(--accent-cyan);
    }

    /* Comparison Tool */
    .comparison-wrap {
        background: var(--bg-carbon);
        border-radius: 12px;
        padding: 28px;
        color: #fff;
        border: 1px solid var(--border-dark);
    }
    .comparison-wrap .comparison-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .comparison-wrap .comparison-title i {
        color: var(--accent);
    }
    .comparison-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .comparison-team {
        background: rgba(255, 255, 255, 0.04);
        border-radius: 8px;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    .comparison-team .comp-team-name {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 14px;
        color: var(--accent);
    }
    .comparison-team .comp-row {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 13px;
    }
    .comparison-team .comp-row:last-child {
        border-bottom: none;
    }
    .comparison-team .comp-row .comp-label {
        color: #B8BDBF;
    }
    .comparison-team .comp-row .comp-value {
        font-family: var(--font-mono);
        font-weight: 600;
        color: #fff;
    }

    /* Update Note */
    .update-note {
        background: #fff;
        border-radius: 12px;
        border: 1px solid var(--warm-gray);
        padding: 28px;
        box-shadow: var(--shadow-card);
    }
    .update-note .update-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 18px;
    }
    .update-note .update-header i {
        font-size: 20px;
        color: var(--accent);
    }
    .update-note .update-header h3 {
        font-size: 18px;
        font-weight: 700;
        margin: 0;
    }
    .update-note .update-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .update-note .update-list li {
        padding: 10px 0;
        border-bottom: 1px solid var(--warm-gray);
        font-size: 14px;
        color: var(--text-secondary);
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }
    .update-note .update-list li:last-child {
        border-bottom: none;
    }
    .update-note .update-list li .update-time {
        font-family: var(--font-mono);
        font-size: 12px;
        color: var(--accent);
        font-weight: 600;
        white-space: nowrap;
        min-width: 60px;
    }

    /* Subscribe CTA */
    .cta-subscribe {
        background: var(--accent);
        border-radius: 12px;
        padding: 40px 32px;
        text-align: center;
        color: #0C0F14;
    }
    .cta-subscribe h2 {
        font-size: clamp(24px, 3vw, 32px);
        font-weight: 700;
        color: #0C0F14;
        margin-bottom: 12px;
    }
    .cta-subscribe p {
        font-size: 15px;
        color: #2A330A;
        max-width: 540px;
        margin: 0 auto 22px;
        line-height: 1.6;
    }
    .cta-subscribe .cta-form {
        display: flex;
        gap: 10px;
        max-width: 480px;
        margin: 0 auto;
        flex-wrap: wrap;
        justify-content: center;
    }
    .cta-subscribe .cta-form input {
        flex: 1;
        min-width: 200px;
        padding: 12px 18px;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, 0.15);
        font-size: 14px;
        background: #fff;
        color: var(--text-primary);
        transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }
    .cta-subscribe .cta-form input:focus {
        border-color: #0C0F14;
        box-shadow: 0 0 0 3px rgba(12, 15, 20, 0.15);
        outline: none;
    }
    .cta-subscribe .cta-form button {
        padding: 12px 26px;
        border-radius: 8px;
        border: none;
        background: #0C0F14;
        color: var(--accent);
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        white-space: nowrap;
        transition: all 0.25s ease;
    }
    .cta-subscribe .cta-form button:hover {
        background: #1D232C;
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }

    /* Data tags */
    .data-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .data-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 500;
        background: #fff;
        border: 1px solid var(--warm-gray);
        color: var(--text-primary);
        cursor: pointer;
        transition: all 0.25s ease;
    }
    .data-tag:hover {
        border-color: var(--accent);
        background: rgba(184, 243, 48, 0.08);
    }
    .data-tag i {
        color: var(--accent);
        font-size: 11px;
    }

    /* Footer */
    .site-footer {
        background: var(--bg-carbon);
        color: #B8BDBF;
        padding: 48px 0 24px;
        border-top: 1px solid var(--border-dark);
    }
    .site-footer .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 32px;
    }
    .site-footer .footer-brand {
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        display: block;
        margin-bottom: 12px;
    }
    .site-footer .footer-brand:hover {
        color: var(--accent);
    }
    .site-footer .footer-desc {
        font-size: 14px;
        line-height: 1.7;
        max-width: 360px;
        margin-bottom: 20px;
        color: #B8BDBF;
    }
    .site-footer .footer-subscribe {
        display: flex;
        gap: 8px;
        max-width: 360px;
    }
    .site-footer .footer-subscribe input {
        flex: 1;
        padding: 10px 14px;
        border-radius: 6px;
        border: 1px solid var(--border-dark);
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
        font-size: 13px;
        transition: border-color 0.2s ease;
    }
    .site-footer .footer-subscribe input::placeholder {
        color: #5C6470;
    }
    .site-footer .footer-subscribe input:focus {
        border-color: var(--accent);
        outline: none;
    }
    .site-footer .footer-subscribe button {
        padding: 10px 18px;
        border-radius: 6px;
        border: none;
        background: var(--accent);
        color: #0C0F14;
        font-weight: 600;
        font-size: 13px;
        cursor: pointer;
        white-space: nowrap;
        transition: background 0.25s ease;
    }
    .site-footer .footer-subscribe button:hover {
        background: #C7FF4A;
    }
    .site-footer .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .site-footer .footer-links li {
        margin-bottom: 10px;
    }
    .site-footer .footer-links a {
        color: #B8BDBF;
        font-size: 14px;
        transition: color 0.2s ease;
    }
    .site-footer .footer-links a:hover {
        color: var(--accent);
    }
    .site-footer .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 20px;
        border-top: 1px solid var(--border-dark);
        font-size: 13px;
        color: #5C6470;
        flex-wrap: wrap;
        gap: 10px;
    }
    .site-footer .footer-bottom a {
        color: #B8BDBF;
        transition: color 0.2s ease;
    }
    .site-footer .footer-bottom a:hover {
        color: var(--accent);
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .hero-category .hero-inner {
            grid-template-columns: 1fr;
            gap: 32px;
        }
        .team-cards-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .player-cards-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .comparison-grid {
            grid-template-columns: 1fr;
        }
        .site-footer .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }
    }
    @media (max-width: 768px) {
        :root {
            --section-gap: 48px;
        }
        .team-cards-grid {
            grid-template-columns: 1fr;
        }
        .player-cards-grid {
            grid-template-columns: 1fr;
        }
        .site-footer .footer-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }
        .team-table thead {
            display: none;
        }
        .team-table tbody tr {
            display: block;
            padding: 14px;
            border-bottom: 1px solid var(--warm-gray);
        }
        .team-table tbody td {
            display: flex;
            justify-content: space-between;
            padding: 6px 0;
            font-size: 13px;
            border-bottom: none;
        }
        .hero-category {
            padding: 40px 0 48px;
        }
        .hero-category .hero-text h1 {
            font-size: 28px;
        }
    }
    @media (max-width: 520px) {
        .container {
            padding: 0 16px;
        }
        .site-header {
            padding: 0 16px;
        }
        .nav-logo {
            font-size: 16px;
        }
        .nav-cta {
            font-size: 12px;
            padding: 8px 14px;
        }
        .filter-toolbar {
            gap: 6px;
        }
        .filter-toolbar .filter-btn {
            padding: 6px 12px;
            font-size: 12px;
        }
        .cta-subscribe {
            padding: 28px 20px;
        }
        .cta-subscribe .cta-form {
            flex-direction: column;
        }
        .cta-subscribe .cta-form input {
            min-width: 100%;
        }
        .cta-subscribe .cta-form button {
            width: 100%;
        }
        .site-footer .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 8px;
        }
    }

/* roulang page: category1 */
:root {
            --bg-carbon: #0C0F14;
            --bg-warm: #F5F4F0;
            --accent: #B8F330;
            --accent-cyan: #2DE1C2;
            --graphite: #1D232C;
            --warm-gray: #ECE9E2;
            --border-dark: #262B33;
            --up-green: #4ADE80;
            --down-red: #F87171;
            --draw-gray: #94A3B8;
            --text-primary: #101216;
            --text-secondary: #5C6470;
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-data: 4px;
            --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.14);
            --border-light: 1px solid var(--warm-gray);
            --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --font-mono: "Inter", "Roboto Mono", "JetBrains Mono", monospace;
            --section-gap: 64px;
            --header-height: 64px;
        }
        html {
            scroll-behavior: smooth;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-primary);
            background: var(--bg-warm);
            margin: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: var(--text-primary);
            text-decoration: none;
            transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }
        a:hover {
            color: #0C0F14;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input,
        textarea,
        select {
            font-family: inherit;
            font-size: inherit;
        }
        button:focus,
        input:focus,
        textarea:focus,
        select:focus {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .section {
            padding: var(--section-gap) 0;
            position: relative;
        }
        .section-dark {
            background: var(--bg-carbon);
            color: #fff;
        }
        .section-light {
            background: var(--bg-warm);
            color: var(--text-primary);
        }
        .section-warm {
            background: #EFEDE6;
            color: var(--text-primary);
        }
        .section-title {
            font-size: clamp(28px, 4vw, 36px);
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 16px;
            letter-spacing: -0.01em;
            color: var(--text-primary);
        }
        .section-dark .section-title {
            color: #fff;
        }
        .section-subtitle {
            font-size: 17px;
            color: var(--text-secondary);
            max-width: 720px;
            line-height: 1.75;
            margin-bottom: 32px;
        }
        .section-dark .section-subtitle {
            color: #B8BDBF;
        }
        .badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.03em;
            background: rgba(13, 16, 20, 0.06);
            color: var(--text-primary);
            border: 1px solid rgba(13, 16, 20, 0.15);
            margin-bottom: 12px;
        }
        .section-dark .badge {
            background: rgba(184, 243, 48, 0.12);
            color: var(--accent);
            border-color: rgba(184, 243, 48, 0.3);
        }
        .brc {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .brc a {
            color: var(--text-secondary);
            transition: color 0.2s;
        }
        .brc a:hover {
            color: var(--text-primary);
        }
        .brc .sep {
            color: #B0B4B8;
            font-size: 12px;
        }
        .brc .current {
            color: var(--text-primary);
            font-weight: 600;
        }
        .site-header {
            position: sticky;
            top: 0;
            z-index: 60;
            background: var(--bg-carbon);
            height: var(--header-height);
            display: flex;
            align-items: center;
            border-bottom: 1px solid var(--border-dark);
            padding: 0 24px;
        }
        .site-header .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }
        .nav-logo {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.01em;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-logo .logo-mark {
            color: var(--accent);
            font-family: var(--font-mono);
            font-size: 18px;
        }
        .nav-logo:hover {
            color: var(--accent);
        }
        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: #0C0F14;
            font-weight: 600;
            font-size: 14px;
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            border: none;
            cursor: pointer;
            white-space: nowrap;
            transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
            box-shadow: 0 2px 12px rgba(184, 243, 48, 0.25);
        }
        .nav-cta:hover {
            background: #C7FF4A;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(184, 243, 48, 0.35);
            color: #0C0F14;
        }
        .page-hero {
            background: var(--bg-carbon);
            color: #fff;
            padding: 56px 0 48px;
            border-bottom: 1px solid var(--border-dark);
            position: relative;
            overflow: hidden;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/70f0235f35184d3a.jpg') center/cover no-repeat;
            opacity: 0.18;
            z-index: 1;
            pointer-events: none;
        }
        .page-hero .container {
            position: relative;
            z-index: 2;
        }
        .page-hero h1 {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: -0.015em;
            line-height: 1.2;
        }
        .page-hero .hero-summary {
            font-size: 16px;
            line-height: 1.8;
            color: #C9CDD1;
            max-width: 840px;
            margin-top: 16px;
        }
        .page-hero .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 20px;
            font-size: 13px;
            color: #A8AEB4;
        }
        .page-hero .hero-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .page-hero .hero-meta .fa {
            color: var(--accent);
        }
        .filter-bar {
            background: #fff;
            border: 1px solid var(--warm-gray);
            border-radius: var(--radius-card);
            padding: 20px 24px;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            margin-top: -32px;
            position: relative;
            z-index: 5;
        }
        .filter-bar .filter-group {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
        }
        .filter-bar .filter-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-right: 4px;
            white-space: nowrap;
        }
        .filter-btn {
            padding: 6px 16px;
            border-radius: 20px;
            border: 1px solid var(--warm-gray);
            background: #fff;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .filter-btn:hover {
            border-color: var(--accent);
            color: var(--text-primary);
            background: rgba(184, 243, 48, 0.06);
        }
        .filter-btn.active {
            background: var(--accent);
            border-color: var(--accent);
            color: #0C0F14;
            font-weight: 600;
        }
        .filter-search {
            padding: 8px 14px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--warm-gray);
            font-size: 13px;
            width: 180px;
            transition: border-color 0.2s ease;
            background: #FAFAF8;
        }
        .filter-search:focus {
            border-color: var(--accent);
            outline: none;
        }
        .focus-match-card {
            background: var(--graphite);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            min-height: 340px;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }
        .focus-match-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .focus-match-img {
            background: url('/assets/images/dc87a908cc1cccc0.png') center/cover no-repeat;
            position: relative;
            min-height: 260px;
        }
        .focus-match-img .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(12, 15, 20, 0.55) 0%, rgba(12, 15, 20, 0.15) 100%);
        }
        .focus-match-img .focus-tag {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 2;
            background: var(--accent);
            color: #0C0F14;
            font-weight: 600;
            font-size: 12px;
            padding: 6px 14px;
            border-radius: 20px;
        }
        .focus-match-body {
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .focus-match-body .fm-league {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            letter-spacing: 0.04em;
            margin-bottom: 8px;
            text-transform: uppercase;
        }
        .focus-match-body .fm-teams {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .focus-match-body .fm-score {
            font-family: var(--font-mono);
            font-size: 48px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1;
            margin: 12px 0;
            letter-spacing: -0.02em;
        }
        .focus-match-body .fm-status {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #C9CDD1;
            margin-bottom: 16px;
        }
        .focus-match-body .fm-status .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--down-red);
            animation: pulse-dot 1.5s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.4);
            }
        }
        .focus-match-body .fm-detail-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(184, 243, 48, 0.12);
            border: 1px solid rgba(184, 243, 48, 0.3);
            color: var(--accent);
            font-weight: 600;
            font-size: 14px;
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            cursor: pointer;
            transition: all 0.25s ease;
            align-self: flex-start;
        }
        .focus-match-body .fm-detail-btn:hover {
            background: var(--accent);
            color: #0C0F14;
            border-color: var(--accent);
        }
        .match-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .match-row {
            background: #fff;
            border: 1px solid var(--warm-gray);
            border-radius: var(--radius-card);
            padding: 18px 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px;
            transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
            cursor: pointer;
            position: relative;
        }
        .match-row:hover {
            box-shadow: var(--shadow-card);
            border-color: rgba(184, 243, 48, 0.5);
            transform: translateY(-1px);
        }
        .match-row .mr-league {
            min-width: 70px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        .match-row .mr-teams {
            flex: 1;
            min-width: 200px;
            font-weight: 600;
            font-size: 16px;
            color: var(--text-primary);
        }
        .match-row .mr-score {
            font-family: var(--font-mono);
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.01em;
            min-width: 60px;
            text-align: center;
        }
        .match-row .mr-status {
            font-size: 13px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            white-space: nowrap;
            min-width: 70px;
            text-align: center;
        }
        .mr-status.live {
            background: rgba(248, 113, 113, 0.1);
            color: var(--down-red);
            border: 1px solid rgba(248, 113, 113, 0.25);
        }
        .mr-status.upcoming {
            background: rgba(148, 163, 184, 0.1);
            color: var(--draw-gray);
            border: 1px solid rgba(148, 163, 184, 0.25);
        }
        .mr-status.finished {
            background: rgba(74, 222, 128, 0.1);
            color: var(--up-green);
            border: 1px solid rgba(74, 222, 128, 0.25);
        }
        .match-row .mr-time {
            font-size: 13px;
            color: var(--text-secondary);
            white-space: nowrap;
            min-width: 50px;
            text-align: right;
        }
        .match-row .mr-expand {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            cursor: pointer;
            transition: color 0.2s;
            white-space: nowrap;
        }
        .match-row .mr-expand:hover {
            color: var(--text-primary);
        }
        .match-row .mr-expand .fa {
            font-size: 12px;
            transition: transform 0.3s ease;
        }
        .match-row.expanded .mr-expand .fa {
            transform: rotate(180deg);
        }
        .match-detail {
            display: none;
            width: 100%;
            border-top: 1px solid var(--warm-gray);
            padding-top: 16px;
            margin-top: 4px;
            animation: fadeIn 0.25s ease;
        }
        .match-row.expanded .match-detail {
            display: block;
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-6px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .match-detail .md-maps {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 8px;
        }
        .match-detail .md-map {
            background: var(--bg-warm);
            border-radius: var(--radius-data);
            padding: 6px 12px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
            font-family: var(--font-mono);
        }
        .match-detail .md-info {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
        }
        .stat-card {
            background: #fff;
            border: 1px solid var(--warm-gray);
            border-radius: var(--radius-card);
            padding: 24px 20px;
            text-align: center;
            transition: box-shadow 0.25s ease, transform 0.25s ease;
        }
        .stat-card:hover {
            box-shadow: var(--shadow-card);
            transform: translateY(-2px);
        }
        .stat-card .stat-num {
            font-family: var(--font-mono);
            font-size: 36px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1;
            margin-bottom: 8px;
        }
        .stat-card .stat-num .highlight {
            color: var(--accent);
        }
        .stat-card .stat-label {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
        }
        .subscribe-cta {
            background: var(--bg-carbon);
            border-radius: var(--radius-card);
            padding: 48px 40px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 32px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .subscribe-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/1047ef7d5f9ae3e8.webp') center/cover no-repeat;
            opacity: 0.2;
            z-index: 1;
            pointer-events: none;
        }
        .subscribe-cta .sc-content {
            flex: 1;
            min-width: 260px;
            position: relative;
            z-index: 2;
        }
        .subscribe-cta .sc-content h2 {
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
        }
        .subscribe-cta .sc-content p {
            font-size: 15px;
            color: #C9CDD1;
            line-height: 1.7;
            margin-bottom: 0;
        }
        .subscribe-cta .sc-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
            min-width: 280px;
        }
        .subscribe-cta .sc-form input {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border-radius: var(--radius-btn);
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            font-size: 14px;
            transition: border-color 0.2s ease, background 0.2s ease;
        }
        .subscribe-cta .sc-form input::placeholder {
            color: #8A9096;
        }
        .subscribe-cta .sc-form input:focus {
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.1);
            outline: none;
        }
        .subscribe-cta .sc-form button {
            padding: 12px 24px;
            border-radius: var(--radius-btn);
            border: none;
            background: var(--accent);
            color: #0C0F14;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: background 0.25s ease, transform 0.2s ease;
            white-space: nowrap;
        }
        .subscribe-cta .sc-form button:hover {
            background: #C7FF4A;
            transform: translateY(-1px);
        }
        .data-source-panel {
            background: #fff;
            border: 1px solid var(--warm-gray);
            border-radius: var(--radius-card);
            padding: 32px 28px;
            box-shadow: var(--shadow-card);
        }
        .data-source-panel h2 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        .data-source-panel p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.75;
            margin-bottom: 12px;
        }
        .data-source-panel .source-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 12px;
        }
        .data-source-panel .source-tag {
            padding: 6px 14px;
            border-radius: 20px;
            background: var(--bg-warm);
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
            border: 1px solid var(--warm-gray);
        }
        .update-note {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 20px;
            background: rgba(184, 243, 48, 0.08);
            border: 1px solid rgba(184, 243, 48, 0.2);
            border-radius: var(--radius-btn);
            font-size: 13px;
            color: var(--text-secondary);
            margin-top: 16px;
        }
        .update-note .fa {
            color: var(--accent);
            font-size: 14px;
        }
        .site-footer {
            background: var(--bg-carbon);
            color: #A8AEB4;
            padding: 56px 0 28px;
            border-top: 1px solid var(--border-dark);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 36px;
        }
        .footer-brand {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            display: inline-block;
            margin-bottom: 12px;
        }
        .footer-brand:hover {
            color: var(--accent);
        }
        .footer-desc {
            font-size: 14px;
            line-height: 1.7;
            color: #A8AEB4;
            margin-bottom: 16px;
            max-width: 360px;
        }
        .footer-subscribe {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .footer-subscribe input {
            flex: 1;
            min-width: 160px;
            padding: 10px 14px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--border-dark);
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            font-size: 13px;
            transition: border-color 0.2s ease;
        }
        .footer-subscribe input:focus {
            border-color: var(--accent);
            outline: none;
        }
        .footer-subscribe input::placeholder {
            color: #6A7076;
        }
        .footer-subscribe button {
            padding: 10px 18px;
            border-radius: var(--radius-btn);
            border: none;
            background: var(--accent);
            color: #0C0F14;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            transition: background 0.25s ease;
            white-space: nowrap;
        }
        .footer-subscribe button:hover {
            background: #C7FF4A;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #A8AEB4;
            font-size: 14px;
            transition: color 0.2s;
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        .footer-bottom {
            border-top: 1px solid var(--border-dark);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: #6A7076;
        }
        .footer-bottom a {
            color: #6A7076;
            transition: color 0.2s;
        }
        .footer-bottom a:hover {
            color: var(--accent);
        }
        @media (max-width: 1024px) {
            .focus-match-card {
                grid-template-columns: 1fr;
            }
            .focus-match-img {
                min-height: 220px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
        }
        @media (max-width: 768px) {
            :root {
                --section-gap: 48px;
            }
            .container {
                padding: 0 16px;
            }
            .site-header {
                padding: 0 16px;
            }
            .nav-logo {
                font-size: 17px;
            }
            .nav-cta {
                font-size: 12px;
                padding: 8px 14px;
            }
            .page-hero {
                padding: 40px 0 36px;
            }
            .page-hero h1 {
                font-size: 28px;
            }
            .page-hero .hero-summary {
                font-size: 14px;
            }
            .filter-bar {
                padding: 16px;
                gap: 10px;
                margin-top: -20px;
            }
            .filter-search {
                width: 100%;
            }
            .focus-match-body {
                padding: 24px 20px;
            }
            .focus-match-body .fm-score {
                font-size: 36px;
            }
            .focus-match-body .fm-teams {
                font-size: 18px;
            }
            .match-row {
                padding: 14px 16px;
                gap: 10px;
            }
            .match-row .mr-teams {
                min-width: 130px;
                font-size: 14px;
            }
            .match-row .mr-score {
                font-size: 18px;
                min-width: 45px;
            }
            .match-row .mr-league {
                min-width: 50px;
                font-size: 11px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .stat-card {
                padding: 18px 14px;
            }
            .stat-card .stat-num {
                font-size: 28px;
            }
            .subscribe-cta {
                padding: 32px 20px;
                gap: 20px;
            }
            .subscribe-cta .sc-content h2 {
                font-size: 22px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 520px) {
            .site-header {
                height: 56px;
            }
            .nav-logo {
                font-size: 15px;
            }
            .nav-logo .logo-mark {
                font-size: 14px;
            }
            .nav-cta {
                font-size: 11px;
                padding: 6px 12px;
                gap: 4px;
            }
            .page-hero h1 {
                font-size: 24px;
            }
            .filter-bar {
                flex-direction: column;
                align-items: stretch;
            }
            .filter-group {
                justify-content: center;
            }
            .match-row {
                flex-wrap: wrap;
                justify-content: space-between;
            }
            .match-row .mr-teams {
                flex: 1 1 100%;
                order: 1;
            }
            .match-row .mr-league {
                order: 2;
            }
            .match-row .mr-score {
                order: 3;
                font-size: 20px;
            }
            .match-row .mr-status {
                order: 4;
            }
            .match-row .mr-time {
                order: 5;
                text-align: left;
            }
            .match-row .mr-expand {
                order: 6;
                width: 100%;
                justify-content: flex-end;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .stat-card .stat-num {
                font-size: 24px;
            }
            .subscribe-cta .sc-form {
                flex-direction: column;
            }
            .subscribe-cta .sc-form input {
                width: 100%;
            }
            .subscribe-cta .sc-form button {
                width: 100%;
            }
            .data-source-panel {
                padding: 24px 18px;
            }
        }

/* roulang page: category5 */
:root {
            --bg-carbon: #0C0F14;
            --bg-warm: #F5F4F0;
            --accent: #B8F330;
            --accent-cyan: #2DE1C2;
            --graphite: #1D232C;
            --warm-gray: #ECE9E2;
            --border-dark: #262B33;
            --up-green: #4ADE80;
            --down-red: #F87171;
            --draw-gray: #94A3B8;
            --text-primary: #101216;
            --text-secondary: #5C6470;
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-data: 4px;
            --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.14);
            --border-light: 1px solid var(--warm-gray);
            --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --font-mono: "Inter", "Roboto Mono", "JetBrains Mono", monospace;
            --section-gap: 64px;
            --header-height: 64px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-primary);
            background: var(--bg-warm);
            margin: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: var(--text-primary);
            text-decoration: none;
            transition: color 0.2s ease, border-color 0.2s ease;
        }

        a:hover {
            color: #0C0F14;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        textarea {
            font-family: inherit;
            font-size: inherit;
        }

        button:focus,
        input:focus,
        textarea:focus {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            margin: 0 0 0.5em;
            line-height: 1.3;
            font-weight: 700;
            color: inherit;
        }

        p {
            margin: 0 0 1em;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: var(--section-gap) 0;
            position: relative;
        }

        .section-dark {
            background: var(--bg-carbon);
            color: #fff;
        }

        .section-light {
            background: var(--bg-warm);
            color: var(--text-primary);
        }

        .section-warm {
            background: #EFEDE6;
            color: var(--text-primary);
        }

        .section-title {
            font-size: clamp(28px, 4vw, 36px);
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 16px;
            color: var(--text-primary);
            letter-spacing: -0.01em;
        }

        .section-dark .section-title {
            color: #fff;
        }

        .section-subtitle {
            font-size: 17px;
            color: var(--text-secondary);
            max-width: 720px;
            line-height: 1.75;
            margin-bottom: 32px;
        }

        .section-dark .section-subtitle {
            color: #B8BDBF;
        }

        .badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.03em;
            background: rgba(184, 243, 48, 0.12);
            color: var(--accent);
            border: 1px solid rgba(184, 243, 48, 0.3);
            margin-bottom: 12px;
        }

        .section-light .badge,
        .section-warm .badge {
            background: rgba(13, 16, 20, 0.06);
            color: var(--text-primary);
            border-color: rgba(13, 16, 20, 0.15);
        }

        .badge-cyan {
            background: rgba(45, 225, 194, 0.12);
            color: #1CB899;
            border-color: rgba(45, 225, 194, 0.3);
        }

        .badge-outline {
            background: transparent;
            border: 1px solid rgba(184, 243, 48, 0.45);
            color: #0C0F14;
        }

        .section-dark .badge-outline {
            color: var(--accent);
        }

        /* Header Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 60;
            background: var(--bg-carbon);
            height: var(--header-height);
            display: flex;
            align-items: center;
            border-bottom: 1px solid var(--border-dark);
            padding: 0 24px;
        }

        .site-header .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .nav-logo {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.01em;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-logo .logo-mark {
            color: var(--accent);
            font-family: var(--font-mono);
            font-size: 18px;
        }

        .nav-logo:hover {
            color: var(--accent);
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: #0C0F14;
            font-weight: 600;
            font-size: 14px;
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            border: none;
            cursor: pointer;
            white-space: nowrap;
            transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
            box-shadow: 0 2px 12px rgba(184, 243, 48, 0.25);
        }

        .nav-cta:hover {
            background: #C7FF4A;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(184, 243, 48, 0.35);
            color: #0C0F14;
        }

        /* Breadcrumb */
        .breadcrumb-bar {
            background: var(--bg-carbon);
            border-bottom: 1px solid var(--border-dark);
            padding: 12px 0;
        }

        .breadcrumb-bar .breadcrumb-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            flex-wrap: wrap;
        }

        .breadcrumb-bar a {
            color: #B8BDBF;
            transition: color 0.2s ease;
        }

        .breadcrumb-bar a:hover {
            color: var(--accent);
        }

        .breadcrumb-bar .separator {
            color: #5C6470;
        }

        .breadcrumb-bar .current {
            color: #fff;
            font-weight: 500;
        }

        /* Category Hero */
        .category-hero {
            background: var(--bg-carbon);
            color: #fff;
            padding: 64px 0 56px;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--border-dark);
        }

        .category-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/83c711ad1b9f09e4.webp') center/cover no-repeat;
            opacity: 0.18;
            z-index: 1;
            pointer-events: none;
        }

        .category-hero .container {
            position: relative;
            z-index: 2;
        }

        .category-hero h1 {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 16px;
            color: #fff;
            letter-spacing: -0.01em;
        }

        .category-hero .hero-desc {
            font-size: 17px;
            color: #B8BDBF;
            max-width: 800px;
            line-height: 1.75;
            margin-bottom: 0;
        }

        .category-hero .hero-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .category-hero .hero-meta .meta-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: #8C9398;
        }

        .category-hero .hero-meta .meta-item i {
            color: var(--accent);
            font-size: 14px;
        }

        /* Hot Tags */
        .hot-tags-section {
            padding: 32px 0 0;
            background: var(--bg-warm);
        }

        .hot-tags-section .tags-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }

        .hot-tags-section .tags-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-right: 4px;
            white-space: nowrap;
        }

        .tag-chip {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            background: #fff;
            color: var(--text-primary);
            border: 1px solid var(--warm-gray);
            transition: all 0.2s ease;
            cursor: default;
        }

        .tag-chip:hover {
            background: rgba(184, 243, 48, 0.15);
            border-color: var(--accent);
        }

        .tag-chip.highlight {
            background: var(--accent);
            color: #0C0F14;
            border-color: var(--accent);
            font-weight: 600;
        }

        /* News List */
        .news-list-section {
            padding: 48px 0 64px;
            background: var(--bg-warm);
        }

        .news-card {
            background: #fff;
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            margin-bottom: 28px;
            display: grid;
            grid-template-columns: 220px 1fr;
            min-height: 180px;
            transition: box-shadow 0.3s ease, transform 0.25s ease;
            border: 1px solid var(--warm-gray);
        }

        .news-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .news-card .news-thumb {
            position: relative;
            overflow: hidden;
            background: var(--graphite);
            min-height: 180px;
        }

        .news-card .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .news-card:hover .news-thumb img {
            transform: scale(1.04);
        }

        .news-card .news-body {
            padding: 22px 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .news-card .news-date {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.04em;
            color: var(--text-secondary);
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .news-card .news-title {
            font-size: 19px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 8px;
            color: var(--text-primary);
            transition: color 0.2s ease;
        }

        .news-card:hover .news-title {
            color: #0C0F14;
        }

        .news-card .news-excerpt {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 14px;
        }

        .news-card .news-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: #0C0F14;
            transition: gap 0.2s ease, color 0.2s ease;
        }

        .news-card .news-link i {
            font-size: 12px;
            color: var(--accent);
        }

        .news-card .news-link:hover {
            color: #0C0F14;
            gap: 10px;
        }

        /* Editor Picks */
        .editor-picks-section {
            padding: 64px 0;
            background: #EFEDE6;
        }

        .editor-picks-section .picks-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 24px;
        }

        .pick-card {
            background: #fff;
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--warm-gray);
            transition: all 0.3s ease;
        }

        .pick-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .pick-card .pick-thumb {
            height: 180px;
            overflow: hidden;
            background: var(--graphite);
        }

        .pick-card .pick-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .pick-card:hover .pick-thumb img {
            transform: scale(1.04);
        }

        .pick-card .pick-body {
            padding: 20px 22px;
        }

        .pick-card .pick-tag {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.04em;
            color: var(--accent);
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .pick-card .pick-title {
            font-size: 17px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .pick-card .pick-excerpt {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.65;
            margin-bottom: 0;
        }

        /* Stats Bar */
        .stats-bar-section {
            padding: 48px 0;
            background: var(--bg-carbon);
            color: #fff;
        }

        .stats-bar-section .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            text-align: center;
        }

        .stats-bar-section .stat-item .stat-number {
            font-size: 36px;
            font-weight: 700;
            font-family: var(--font-mono);
            color: var(--accent);
            letter-spacing: -0.02em;
            margin-bottom: 4px;
        }

        .stats-bar-section .stat-item .stat-label {
            font-size: 14px;
            color: #B8BDBF;
        }

        /* Subscribe CTA */
        .subscribe-cta-section {
            padding: 72px 0;
            background: var(--bg-warm);
        }

        .subscribe-cta-card {
            background: var(--bg-carbon);
            border-radius: var(--radius-card);
            padding: 48px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
            box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
        }

        .subscribe-cta-card .cta-text {
            flex: 1;
            min-width: 280px;
        }

        .subscribe-cta-card .cta-text h2 {
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }

        .subscribe-cta-card .cta-text p {
            font-size: 15px;
            color: #B8BDBF;
            margin-bottom: 0;
        }

        .subscribe-cta-card .cta-form {
            display: flex;
            gap: 12px;
            min-width: 300px;
            flex-shrink: 0;
        }

        .subscribe-cta-card .cta-form input {
            flex: 1;
            padding: 12px 18px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--border-dark);
            background: var(--graphite);
            color: #fff;
            font-size: 14px;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .subscribe-cta-card .cta-form input::placeholder {
            color: #8C9398;
        }

        .subscribe-cta-card .cta-form input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(184, 243, 48, 0.2);
        }

        .subscribe-cta-card .cta-form button {
            padding: 12px 24px;
            border-radius: var(--radius-btn);
            background: var(--accent);
            color: #0C0F14;
            font-weight: 600;
            font-size: 14px;
            border: none;
            cursor: pointer;
            white-space: nowrap;
            transition: background 0.25s ease, transform 0.2s ease;
        }

        .subscribe-cta-card .cta-form button:hover {
            background: #C7FF4A;
            transform: translateY(-1px);
        }

        /* Footer */
        .site-footer {
            background: var(--bg-carbon);
            color: #B8BDBF;
            padding: 56px 24px 32px;
            border-top: 1px solid var(--border-dark);
        }

        .site-footer .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 32px;
        }

        .footer-brand {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            display: block;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

        .footer-brand:hover {
            color: var(--accent);
        }

        .footer-desc {
            font-size: 14px;
            color: #8C9398;
            line-height: 1.7;
            margin-bottom: 20px;
            max-width: 380px;
        }

        .footer-subscribe {
            display: flex;
            gap: 10px;
            max-width: 360px;
        }

        .footer-subscribe input {
            flex: 1;
            padding: 10px 14px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--border-dark);
            background: var(--graphite);
            color: #fff;
            font-size: 13px;
            transition: border-color 0.25s ease;
        }

        .footer-subscribe input::placeholder {
            color: #5C6470;
        }

        .footer-subscribe input:focus {
            outline: none;
            border-color: var(--accent);
        }

        .footer-subscribe button {
            padding: 10px 18px;
            border-radius: var(--radius-btn);
            background: var(--accent);
            color: #0C0F14;
            font-weight: 600;
            font-size: 13px;
            border: none;
            cursor: pointer;
            white-space: nowrap;
            transition: background 0.25s ease;
        }

        .footer-subscribe button:hover {
            background: #C7FF4A;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: #B8BDBF;
            font-size: 14px;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 24px;
            border-top: 1px solid var(--border-dark);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            font-size: 13px;
            color: #5C6470;
        }

        .footer-bottom a {
            color: #5C6470;
            transition: color 0.2s ease;
        }

        .footer-bottom a:hover {
            color: var(--accent);
        }

        /* Responsive */
        @media screen and (max-width: 1024px) {
            :root {
                --section-gap: 48px;
            }

            .news-card {
                grid-template-columns: 180px 1fr;
            }

            .editor-picks-section .picks-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-bar-section .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
            }

            .site-footer .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
        }

        @media screen and (max-width: 768px) {
            .container {
                padding: 0 18px;
            }

            .site-header {
                padding: 0 18px;
            }

            .category-hero {
                padding: 44px 0 40px;
            }

            .category-hero h1 {
                font-size: clamp(26px, 5vw, 36px);
            }

            .news-card {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            .news-card .news-thumb {
                height: 200px;
                min-height: auto;
            }

            .news-card .news-body {
                padding: 20px 22px;
            }

            .editor-picks-section .picks-grid {
                grid-template-columns: 1fr;
            }

            .subscribe-cta-card {
                padding: 32px 24px;
                flex-direction: column;
                align-items: flex-start;
            }

            .subscribe-cta-card .cta-form {
                width: 100%;
                min-width: 0;
                flex-direction: column;
            }

            .site-footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
        }

        @media screen and (max-width: 520px) {
            .nav-logo {
                font-size: 17px;
            }

            .nav-cta {
                font-size: 12px;
                padding: 8px 14px;
            }

            .category-hero .hero-desc {
                font-size: 15px;
            }

            .stats-bar-section .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }

            .stats-bar-section .stat-item .stat-number {
                font-size: 28px;
            }

            .hot-tags-section .tags-wrap {
                gap: 8px;
            }

            .tag-chip {
                padding: 5px 12px;
                font-size: 12px;
            }
        }

/* roulang page: category4 */
:root {
            --bg-carbon: #0C0F14;
            --bg-warm: #F5F4F0;
            --accent: #B8F330;
            --accent-cyan: #2DE1C2;
            --graphite: #1D232C;
            --warm-gray: #ECE9E2;
            --border-dark: #262B33;
            --up-green: #4ADE80;
            --down-red: #F87171;
            --draw-gray: #94A3B8;
            --text-primary: #101216;
            --text-secondary: #5C6470;
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-data: 4px;
            --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.14);
            --border-light: 1px solid var(--warm-gray);
            --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --font-mono: "Inter", "Roboto Mono", "JetBrains Mono", monospace;
            --section-gap: 80px;
            --header-height: 64px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-primary);
            background: var(--bg-warm);
            margin: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        * {
            box-sizing: border-box;
        }

        a {
            color: var(--text-primary);
            text-decoration: none;
            transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
        }

        a:hover {
            color: var(--accent);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        textarea {
            font-family: inherit;
            font-size: inherit;
        }

        button:focus,
        input:focus,
        textarea:focus {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: var(--section-gap) 0;
            position: relative;
        }

        .section-dark {
            background: var(--bg-carbon);
            color: #fff;
        }

        .section-light {
            background: var(--bg-warm);
            color: var(--text-primary);
        }

        .section-warm {
            background: #EFEDE6;
            color: var(--text-primary);
        }

        .section-title {
            font-size: clamp(28px, 3.8vw, 36px);
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 16px;
            color: #fff;
            letter-spacing: -0.01em;
        }

        .section-light .section-title,
        .section-warm .section-title {
            color: var(--text-primary);
        }

        .section-subtitle {
            font-size: 17px;
            color: #B8BDBF;
            max-width: 720px;
            line-height: 1.75;
            margin-bottom: 32px;
        }

        .section-light .section-subtitle,
        .section-warm .section-subtitle {
            color: var(--text-secondary);
        }

        .badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.03em;
            background: rgba(184, 243, 48, 0.12);
            color: var(--accent);
            border: 1px solid rgba(184, 243, 48, 0.3);
            margin-bottom: 12px;
        }

        .section-light .badge,
        .section-warm .badge {
            background: rgba(13, 16, 20, 0.06);
            color: var(--text-primary);
            border-color: rgba(13, 16, 20, 0.15);
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 60;
            background: var(--bg-carbon);
            height: var(--header-height);
            display: flex;
            align-items: center;
            border-bottom: 1px solid var(--border-dark);
            padding: 0 24px;
        }

        .site-header .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .nav-logo {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.01em;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-logo .logo-mark {
            color: var(--accent);
            font-family: var(--font-mono);
            font-size: 18px;
        }

        .nav-logo:hover {
            color: var(--accent);
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: #0C0F14;
            font-weight: 600;
            font-size: 14px;
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            border: none;
            cursor: pointer;
            white-space: nowrap;
            transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
            box-shadow: 0 2px 12px rgba(184, 243, 48, 0.25);
        }

        .nav-cta:hover {
            background: #C7FF4A;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(184, 243, 48, 0.35);
            color: #0C0F14;
        }

        .breadcrumb {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #A0A8B0;
            margin-bottom: 16px;
        }

        .breadcrumb a {
            color: #A0A8B0;
            transition: color 0.2s ease;
        }

        .breadcrumb a:hover {
            color: var(--accent);
        }

        .breadcrumb .sep {
            color: #5C6470;
            font-size: 11px;
        }

        .breadcrumb .current {
            color: var(--accent);
            font-weight: 500;
        }

        .category-hero {
            background: var(--bg-carbon);
            color: #fff;
            padding: 56px 0 64px;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--border-dark);
        }

        .category-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/1047ef7d5f9ae3e8.webp') center/cover no-repeat;
            opacity: 0.2;
            z-index: 1;
            pointer-events: none;
        }

        .category-hero .container {
            position: relative;
            z-index: 2;
        }

        .category-hero h1 {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            line-height: 1.2;
            margin: 0 0 12px;
            color: #fff;
            letter-spacing: -0.01em;
        }

        .category-hero .hero-sub {
            font-size: 17px;
            color: #B8BDBF;
            max-width: 680px;
            line-height: 1.75;
        }

        .category-hero .hero-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 20px;
            font-size: 13px;
            color: #8A929E;
        }

        .category-hero .hero-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .summary-block {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 32px 36px;
            border: 1px solid var(--warm-gray);
            box-shadow: var(--shadow-card);
            margin-top: -20px;
            position: relative;
            z-index: 3;
        }

        .summary-block p {
            margin: 0;
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-secondary);
        }

        .summary-block .summary-label {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--text-primary);
            margin-bottom: 8px;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 4px;
        }

        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag-cloud .tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            background: #fff;
            color: var(--text-primary);
            border: 1px solid var(--warm-gray);
            cursor: pointer;
            transition: all 0.25s ease;
            white-space: nowrap;
        }

        .tag-cloud .tag:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: #0C0F14;
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(184, 243, 48, 0.3);
        }

        .tag-cloud .tag i {
            font-size: 11px;
            color: var(--accent-cyan);
        }

        .tag-cloud .tag:hover i {
            color: #0C0F14;
        }

        .analysis-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 24px;
        }

        .analysis-card {
            background: #fff;
            border-radius: var(--radius-card);
            overflow: hidden;
            border: 1px solid var(--warm-gray);
            box-shadow: var(--shadow-card);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .analysis-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(184, 243, 48, 0.4);
        }

        .analysis-card .card-img {
            aspect-ratio: 16 / 9;
            overflow: hidden;
            position: relative;
            background: #EFEDE6;
        }

        .analysis-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.35s ease;
        }

        .analysis-card:hover .card-img img {
            transform: scale(1.03);
        }

        .analysis-card .card-img .card-date {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(12, 15, 20, 0.75);
            color: #fff;
            font-size: 12px;
            font-weight: 500;
            padding: 4px 12px;
            border-radius: 4px;
            font-family: var(--font-mono);
            letter-spacing: 0.03em;
            backdrop-filter: blur(4px);
        }

        .analysis-card .card-body {
            padding: 20px 24px 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .analysis-card .card-title {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.4;
            margin: 0 0 10px;
            color: var(--text-primary);
            letter-spacing: -0.005em;
        }

        .analysis-card .card-title a {
            color: var(--text-primary);
            transition: color 0.25s ease;
        }

        .analysis-card .card-title a:hover {
            color: var(--accent);
        }

        .analysis-card .card-excerpt {
            font-size: 14px;
            line-height: 1.75;
            color: var(--text-secondary);
            margin: 0 0 16px;
            flex: 1;
        }

        .analysis-card .card-footer-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            border-top: 1px solid var(--warm-gray);
            padding-top: 14px;
        }

        .analysis-card .read-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
            transition: color 0.25s ease, gap 0.25s ease;
            cursor: pointer;
        }

        .analysis-card .read-more i {
            font-size: 12px;
            transition: transform 0.25s ease;
        }

        .analysis-card .read-more:hover {
            color: var(--accent);
            gap: 10px;
        }

        .analysis-card .read-more:hover i {
            transform: translateX(3px);
        }

        .analysis-card .card-stats {
            display: flex;
            gap: 12px;
            font-size: 12px;
            color: #8A929E;
            font-family: var(--font-mono);
        }

        .analysis-card .card-stats span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .demo-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .demo-item {
            border-radius: var(--radius-card);
            overflow: hidden;
            border: 1px solid var(--warm-gray);
            background: #fff;
            box-shadow: var(--shadow-card);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .demo-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .demo-item img {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
        }

        .demo-item .demo-caption {
            padding: 14px 18px;
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
            border-top: 1px solid var(--warm-gray);
        }

        .demo-item .demo-caption strong {
            color: var(--text-primary);
            font-weight: 600;
            display: block;
            margin-bottom: 2px;
        }

        .cta-band {
            background: var(--bg-carbon);
            border-radius: var(--radius-card);
            padding: 48px 40px;
            text-align: center;
            border: 1px solid var(--border-dark);
            position: relative;
            overflow: hidden;
        }

        .cta-band::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/83c711ad1b9f09e4.webp') center/cover no-repeat;
            opacity: 0.15;
            z-index: 1;
            pointer-events: none;
        }

        .cta-band > * {
            position: relative;
            z-index: 2;
        }

        .cta-band h2 {
            font-size: clamp(24px, 3.5vw, 32px);
            font-weight: 700;
            color: #fff;
            margin: 0 0 12px;
            letter-spacing: -0.01em;
        }

        .cta-band p {
            font-size: 16px;
            color: #B8BDBF;
            max-width: 520px;
            margin: 0 auto 28px;
            line-height: 1.7;
        }

        .cta-band .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: #0C0F14;
            font-weight: 600;
            font-size: 15px;
            padding: 14px 32px;
            border-radius: var(--radius-btn);
            border: none;
            cursor: pointer;
            transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
            box-shadow: 0 4px 20px rgba(184, 243, 48, 0.3);
            white-space: nowrap;
        }

        .cta-band .btn-primary:hover {
            background: #C7FF4A;
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(184, 243, 48, 0.45);
            color: #0C0F14;
        }

        .related-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: flex-start;
        }

        .related-links a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 18px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            background: #fff;
            color: var(--text-primary);
            border: 1px solid var(--warm-gray);
            transition: all 0.25s ease;
        }

        .related-links a:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: #0C0F14;
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(184, 243, 48, 0.25);
        }

        .related-links a i {
            font-size: 12px;
            color: var(--accent-cyan);
        }

        .related-links a:hover i {
            color: #0C0F14;
        }

        .site-footer {
            background: var(--bg-carbon);
            color: #B8BDBF;
            padding: 56px 0 28px;
            border-top: 1px solid var(--border-dark);
        }

        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }

        .site-footer .footer-brand {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            display: inline-block;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

        .site-footer .footer-brand:hover {
            color: var(--accent);
        }

        .site-footer .footer-desc {
            font-size: 14px;
            line-height: 1.75;
            color: #8A929E;
            max-width: 360px;
            margin-bottom: 20px;
        }

        .site-footer .footer-subscribe {
            display: flex;
            gap: 10px;
            max-width: 380px;
        }

        .site-footer .footer-subscribe input {
            flex: 1;
            padding: 10px 16px;
            border-radius: 6px;
            border: 1px solid var(--border-dark);
            background: #0A0D11;
            color: #fff;
            font-size: 14px;
            transition: border-color 0.25s ease;
        }

        .site-footer .footer-subscribe input::placeholder {
            color: #5C6470;
        }

        .site-footer .footer-subscribe input:focus {
            border-color: var(--accent);
            outline: none;
        }

        .site-footer .footer-subscribe button {
            background: var(--accent);
            color: #0C0F14;
            font-weight: 600;
            font-size: 14px;
            padding: 10px 20px;
            border-radius: 6px;
            border: none;
            cursor: pointer;
            transition: background 0.25s ease;
            white-space: nowrap;
        }

        .site-footer .footer-subscribe button:hover {
            background: #C7FF4A;
        }

        .site-footer .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .site-footer .footer-links li {
            margin-bottom: 10px;
        }

        .site-footer .footer-links a {
            color: #8A929E;
            font-size: 14px;
            transition: color 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .site-footer .footer-links a:hover {
            color: var(--accent);
        }

        .site-footer .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            padding-top: 20px;
            border-top: 1px solid var(--border-dark);
            font-size: 13px;
            color: #5C6470;
        }

        .site-footer .footer-bottom a {
            color: #5C6470;
            font-size: 13px;
            transition: color 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .site-footer .footer-bottom a:hover {
            color: var(--accent);
        }

        @media (max-width: 1024px) {
            :root {
                --section-gap: 56px;
            }

            .site-footer .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }

            .analysis-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 18px;
            }

            .demo-showcase {
                grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
                gap: 18px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-gap: 44px;
            }

            .container {
                padding: 0 16px;
            }

            .site-header {
                padding: 0 16px;
                height: 60px;
            }

            .nav-logo {
                font-size: 17px;
            }

            .nav-cta {
                font-size: 13px;
                padding: 8px 16px;
            }

            .category-hero {
                padding: 40px 0 48px;
            }

            .category-hero h1 {
                font-size: clamp(26px, 7vw, 34px);
            }

            .category-hero .hero-sub {
                font-size: 15px;
            }

            .summary-block {
                padding: 22px 20px;
                margin-top: -12px;
            }

            .summary-block p {
                font-size: 14px;
                line-height: 1.7;
            }

            .analysis-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .analysis-card .card-body {
                padding: 16px 18px 20px;
            }

            .analysis-card .card-title {
                font-size: 16px;
            }

            .analysis-card .card-excerpt {
                font-size: 13px;
            }

            .cta-band {
                padding: 32px 20px;
            }

            .cta-band h2 {
                font-size: 22px;
            }

            .cta-band p {
                font-size: 14px;
            }

            .cta-band .btn-primary {
                font-size: 14px;
                padding: 12px 24px;
            }

            .demo-showcase {
                grid-template-columns: 1fr;
            }

            .site-footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .site-footer .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }

            .tag-cloud .tag {
                font-size: 12px;
                padding: 5px 12px;
            }

            .related-links a {
                font-size: 13px;
                padding: 7px 14px;
            }
        }

        @media (max-width: 520px) {
            :root {
                --section-gap: 36px;
            }

            .site-header {
                height: 56px;
                padding: 0 12px;
            }

            .nav-logo {
                font-size: 15px;
                gap: 5px;
            }

            .nav-logo .logo-mark {
                font-size: 14px;
            }

            .nav-cta {
                font-size: 12px;
                padding: 7px 13px;
                gap: 5px;
            }

            .category-hero h1 {
                font-size: 24px;
            }

            .category-hero .hero-sub {
                font-size: 14px;
                line-height: 1.6;
            }

            .category-hero .hero-meta {
                flex-wrap: wrap;
                gap: 10px;
                font-size: 12px;
            }

            .summary-block {
                padding: 18px 16px;
            }

            .analysis-card .card-footer-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .cta-band {
                padding: 24px 16px;
            }

            .cta-band h2 {
                font-size: 20px;
                line-height: 1.35;
            }

            .cta-band .btn-primary {
                font-size: 13px;
                padding: 10px 20px;
            }

            .site-footer .footer-subscribe {
                flex-direction: column;
            }

            .site-footer .footer-subscribe input {
                width: 100%;
            }

            .site-footer .footer-subscribe button {
                width: 100%;
            }
        }
