/* roulang page: index */
:root {
            --brand-deep-green: #173B2A;
            --brand-deep-green-hover: #1E4F37;
            --brand-warm-beige: #F3EEE3;
            --brand-warm-white: #F8F5EF;
            --brand-orange: #E8501A;
            --brand-orange-hover: #C23F0E;
            --brand-text-dark: #1C1A17;
            --brand-text-light: #F8F5EF;
            --brand-live-green: #2FBF71;
            --brand-pre-blue: #6C7A89;
            --brand-replay-purple: #7A6A8F;
            --brand-border-light: rgba(23, 59, 42, 0.12);
            --brand-border-mid: rgba(23, 59, 42, 0.24);
            --brand-card-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
            --brand-card-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.06);
            --brand-radius-card: 12px;
            --brand-radius-btn: 8px;
            --brand-radius-tag: 6px;
            --font-family-sc: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --section-padding-desktop: 72px 0;
            --section-padding-mobile: 40px 0;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-family-sc);
            font-size: 16px;
            font-weight: 400;
            line-height: 1.9;
            color: var(--brand-text-dark);
            background-color: var(--brand-warm-white);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--brand-deep-green);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        a:hover,
        a:focus {
            color: var(--brand-orange);
            text-decoration: none;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--brand-orange);
            outline-offset: 2px;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-family-sc);
            color: var(--brand-text-dark);
            font-weight: 700;
            line-height: 1.35;
            margin-top: 0;
        }

        h1 {
            font-size: 38px;
            font-weight: 800;
            line-height: 1.25;
            letter-spacing: 0.02em;
        }

        h2 {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.35;
        }

        h3 {
            font-size: 19px;
            font-weight: 600;
            line-height: 1.5;
        }

        p {
            margin: 0 0 1.2em;
            line-height: 1.9;
        }

        .section-padding {
            padding: var(--section-padding-desktop);
        }

        .section-padding-tight {
            padding: 48px 0;
        }

        .bg-deep-green {
            background-color: var(--brand-deep-green);
            color: var(--brand-warm-white);
        }

        .bg-deep-green h2,
        .bg-deep-green h3 {
            color: var(--brand-warm-white);
        }

        .bg-warm-beige {
            background-color: var(--brand-warm-beige);
        }

        .bg-pure-white {
            background-color: #FFFFFF;
        }

        .container-max {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        .section-header {
            margin-bottom: 36px;
        }

        .section-header h2 {
            margin-bottom: 10px;
            font-size: clamp(22px, 4vw, 30px);
        }

        .section-header p {
            font-size: 15px;
            max-width: 720px;
            color: rgba(28, 26, 23, 0.7);
            margin-bottom: 0;
        }

        .bg-deep-green .section-header p {
            color: rgba(248, 245, 239, 0.78);
        }

        /* Toolbar Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 90;
            background-color: var(--brand-deep-green);
            border-bottom: 1px solid rgba(0, 0, 0, 0.3);
            height: 68px;
            display: flex;
            align-items: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
        }

        .site-header .container-max {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .nav-logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: radial-gradient(circle at 40% 35%, #F8F5EF 0%, #E8501A 45%, #8A2E0C 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
        }

        .nav-logo-icon::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 8px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.85);
        }

        .nav-logo-text {
            font-size: 18px;
            font-weight: 700;
            color: var(--brand-warm-white);
            letter-spacing: 0.04em;
            white-space: nowrap;
        }

        .nav-center {
            display: flex;
            align-items: center;
            gap: 6px;
            flex: 1;
            justify-content: center;
        }

        .nav-center a {
            color: rgba(248, 245, 239, 0.85);
            font-size: 15px;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 6px;
            position: relative;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .nav-center a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--brand-orange);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.25s ease;
            border-radius: 1px;
        }

        .nav-center a:hover,
        .nav-center a:focus {
            color: var(--brand-orange);
        }

        .nav-center a:hover::after,
        .nav-center a.active::after {
            transform: scaleX(1);
        }

        .nav-center a.active {
            color: var(--brand-orange);
            font-weight: 600;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        .nav-live-indicator {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--brand-warm-white);
            font-weight: 500;
            white-space: nowrap;
        }

        .nav-live-indicator .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--brand-live-green);
            animation: pulseDot 1.6s ease-in-out infinite;
        }

        @keyframes pulseDot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(47, 191, 113, 0.6);
            }
            50% {
                box-shadow: 0 0 0 6px rgba(47, 191, 113, 0);
            }
        }

        .nav-notification {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            color: var(--brand-warm-white);
            font-size: 18px;
            transition: color 0.2s;
        }

        .nav-notification:hover {
            color: var(--brand-orange);
        }

        .nav-notification .badge {
            position: absolute;
            top: -2px;
            right: -2px;
            background-color: var(--brand-orange);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            min-width: 17px;
            height: 17px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 4px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
        }

        .nav-cta-btn {
            background-color: var(--brand-orange);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            padding: 9px 18px;
            border-radius: var(--brand-radius-btn);
            transition: all 0.2s ease;
            white-space: nowrap;
            border: none;
            cursor: pointer;
        }

        .nav-cta-btn:hover,
        .nav-cta-btn:focus {
            background-color: var(--brand-orange-hover);
            color: #fff;
            transform: translateY(-1px);
        }

        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 4px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 6px;
        }

        .nav-hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--brand-warm-white);
            border-radius: 1px;
            transition: all 0.25s ease;
        }

        .mobile-nav-drawer {
            position: fixed;
            top: 68px;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--brand-deep-green);
            z-index: 89;
            display: none;
            flex-direction: column;
            padding: 20px 24px;
            gap: 6px;
            overflow-y: auto;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        }

        .mobile-nav-drawer.open {
            display: flex;
        }

        .mobile-nav-drawer a {
            color: var(--brand-warm-white);
            font-size: 17px;
            font-weight: 500;
            padding: 14px 12px;
            border-bottom: 1px solid rgba(248, 245, 239, 0.1);
            border-radius: 4px;
            transition: background 0.2s;
        }

        .mobile-nav-drawer a:hover {
            background: rgba(248, 245, 239, 0.08);
            color: var(--brand-orange);
        }

        /* Hero */
        .hero-section {
            position: relative;
            background: var(--brand-deep-green);
            color: var(--brand-warm-white);
            overflow: hidden;
            padding: 0;
        }

        .hero-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/assets/images/1f7552d090064cf8.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.22;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(23, 59, 42, 0.72);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            padding: 76px 0;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        .hero-text h1 {
            color: var(--brand-warm-white);
            font-size: clamp(28px, 5vw, 44px);
            margin-bottom: 14px;
            letter-spacing: 0.03em;
        }

        .hero-text .hero-subtitle {
            font-size: 17px;
            color: rgba(248, 245, 239, 0.85);
            max-width: 560px;
            margin-bottom: 24px;
            line-height: 1.85;
        }

        .hero-text .hero-group-tip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(248, 245, 239, 0.12);
            border: 1px solid rgba(248, 245, 239, 0.25);
            border-radius: 20px;
            padding: 6px 16px;
            font-size: 13px;
            font-weight: 500;
            color: var(--brand-warm-white);
            margin-bottom: 18px;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 10px;
        }

        .btn-primary {
            background-color: var(--brand-orange);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            padding: 13px 26px;
            border-radius: var(--brand-radius-btn);
            border: none;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary:hover,
        .btn-primary:focus {
            background-color: var(--brand-orange-hover);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(232, 80, 26, 0.3);
        }

        .btn-outline-light {
            background: transparent;
            border: 1.5px solid var(--brand-warm-white);
            color: var(--brand-warm-white);
            font-size: 15px;
            font-weight: 500;
            padding: 12px 24px;
            border-radius: var(--brand-radius-btn);
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-outline-light:hover,
        .btn-outline-light:focus {
            background: var(--brand-warm-white);
            color: var(--brand-deep-green);
            transform: translateY(-2px);
        }

        .hero-visual {
            background: rgba(248, 245, 239, 0.06);
            border: 1px solid rgba(248, 245, 239, 0.2);
            border-radius: 16px;
            padding: 18px;
            backdrop-filter: blur(8px);
        }

        .hero-mock-player {
            background: #0D1F16;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .hero-mock-player .player-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 14px;
            background: rgba(0, 0, 0, 0.35);
            border-bottom: 1px solid rgba(248, 245, 239, 0.1);
        }

        .hero-mock-player .live-badge {
            background: var(--brand-orange);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 4px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .hero-mock-player .player-score {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            padding: 26px 10px;
            font-size: 24px;
            font-weight: 700;
            color: var(--brand-warm-white);
        }

        .hero-mock-player .player-score .team {
            text-align: center;
        }

        .hero-mock-player .player-score .score-num {
            font-size: 32px;
            color: var(--brand-orange);
            font-weight: 800;
        }

        .hero-mock-comment {
            padding: 10px 14px;
            font-size: 12px;
            color: rgba(248, 245, 239, 0.7);
            background: rgba(0, 0, 0, 0.25);
            border-top: 1px solid rgba(248, 245, 239, 0.08);
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .hero-mock-comment span {
            background: rgba(248, 245, 239, 0.1);
            padding: 3px 9px;
            border-radius: 10px;
        }

        /* Schedule Cards */
        .schedule-scroll {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            overflow-x: auto;
            padding-bottom: 8px;
            scroll-snap-type: x mandatory;
        }

        .schedule-card {
            background: #FFFFFF;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            padding: 18px 16px;
            min-width: 240px;
            scroll-snap-align: start;
            transition: all 0.25s ease;
            border: 1px solid rgba(23, 59, 42, 0.06);
        }

        .schedule-card:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-4px);
        }

        .schedule-card .card-cover {
            width: 100%;
            height: 100px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 12px;
        }

        .schedule-card .league-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 10px;
            background: var(--brand-warm-beige);
            color: var(--brand-deep-green);
            margin-bottom: 8px;
        }

        .schedule-card .match-teams {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--brand-text-dark);
        }

        .schedule-card .match-time {
            font-size: 13px;
            color: rgba(28, 26, 23, 0.6);
            margin-bottom: 8px;
        }

        .status-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 4px;
            letter-spacing: 0.04em;
        }

        .status-tag.live {
            background: rgba(47, 191, 113, 0.15);
            color: var(--brand-live-green);
        }

        .status-tag.upcoming {
            background: rgba(108, 122, 137, 0.15);
            color: var(--brand-pre-blue);
        }

        .status-tag.replay {
            background: rgba(122, 106, 143, 0.15);
            color: var(--brand-replay-purple);
        }

        /* Feature Grid */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .feature-card {
            background: #FFFFFF;
            border-radius: var(--brand-radius-card);
            padding: 24px 20px;
            box-shadow: var(--brand-card-shadow);
            transition: all 0.25s ease;
            border: 1px solid rgba(23, 59, 42, 0.06);
            text-align: left;
        }

        .feature-card:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-4px);
        }

        .feature-card .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(23, 59, 42, 0.08);
            color: var(--brand-deep-green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 14px;
        }

        .feature-card h3 {
            font-size: 17px;
            margin-bottom: 8px;
        }

        .feature-card p {
            font-size: 14px;
            color: rgba(28, 26, 23, 0.65);
            margin-bottom: 0;
            line-height: 1.75;
        }

        /* Scenarios */
        .scenario-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 36px;
            align-items: center;
            background: #FFFFFF;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            overflow: hidden;
            padding: 0;
            margin-bottom: 24px;
        }

        .scenario-block .scenario-image {
            background-size: cover;
            background-position: center;
            min-height: 260px;
            height: 100%;
        }

        .scenario-block .scenario-text {
            padding: 28px 30px;
        }

        .scenario-block .scenario-text h3 {
            font-size: 20px;
            margin-bottom: 8px;
        }

        .scenario-block .scenario-text p {
            font-size: 14px;
            color: rgba(28, 26, 23, 0.65);
            line-height: 1.8;
            margin-bottom: 0;
        }

        /* Demo Frame */
        .demo-frame-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .demo-frame {
            background: #0D1F16;
            border-radius: 10px;
            padding: 16px;
            border: 1px solid rgba(248, 245, 239, 0.12);
        }

        .demo-frame .inner-top {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        .demo-frame .inner-top .dot-red {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--brand-orange);
        }
        .demo-frame .inner-top .dot-yellow {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #F5C518;
        }
        .demo-frame .inner-top .dot-green {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--brand-live-green);
        }

        .demo-frame .fake-scoreboard {
            background: rgba(248, 245, 239, 0.08);
            border-radius: 6px;
            padding: 14px;
            text-align: center;
            color: var(--brand-warm-white);
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 10px;
        }

        .demo-frame .fake-scoreboard .fs-score {
            font-size: 24px;
            color: var(--brand-orange);
            font-weight: 800;
        }

        .demo-frame .fake-chart {
            display: flex;
            align-items: flex-end;
            gap: 6px;
            height: 60px;
            margin-top: 8px;
        }

        .demo-frame .fake-chart div {
            flex: 1;
            background: rgba(47, 191, 113, 0.6);
            border-radius: 2px 2px 0 0;
            min-height: 12px;
        }

        .demo-frame .fake-chart div:nth-child(2) {
            background: rgba(232, 80, 26, 0.7);
            height: 38px;
        }
        .demo-frame .fake-chart div:nth-child(3) {
            background: rgba(248, 245, 239, 0.5);
            height: 50px;
        }
        .demo-frame .fake-chart div:nth-child(4) {
            background: rgba(47, 191, 113, 0.8);
            height: 30px;
        }
        .demo-frame .fake-chart div:nth-child(5) {
            background: rgba(232, 80, 26, 0.55);
            height: 44px;
        }

        /* Stats Dashboard */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .stat-card {
            background: rgba(248, 245, 239, 0.06);
            border: 1px solid rgba(248, 245, 239, 0.15);
            border-radius: var(--brand-radius-card);
            padding: 24px 20px;
            text-align: center;
            transition: all 0.25s ease;
        }

        .stat-card:hover {
            background: rgba(248, 245, 239, 0.1);
            transform: translateY(-3px);
        }

        .stat-card .stat-num {
            font-size: 38px;
            font-weight: 800;
            color: var(--brand-orange);
            line-height: 1.2;
            margin-bottom: 6px;
        }

        .stat-card .stat-label {
            font-size: 14px;
            color: rgba(248, 245, 239, 0.75);
            font-weight: 500;
        }

        /* Cases */
        .case-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .case-card {
            background: #FFFFFF;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            overflow: hidden;
            transition: all 0.25s ease;
            border: 1px solid rgba(23, 59, 42, 0.06);
        }

        .case-card:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-4px);
        }

        .case-card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }

        .case-card .case-body {
            padding: 16px 18px;
        }

        .case-card .case-body h3 {
            font-size: 16px;
            margin-bottom: 6px;
        }

        .case-card .case-body p {
            font-size: 13px;
            color: rgba(28, 26, 23, 0.6);
            margin-bottom: 0;
        }

        /* Pricing */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            align-items: stretch;
        }

        .pricing-card {
            background: #FFFFFF;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            padding: 28px 24px;
            border: 1px solid rgba(23, 59, 42, 0.08);
            transition: all 0.25s ease;
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-4px);
        }

        .pricing-card.featured {
            background: var(--brand-deep-green);
            border-color: var(--brand-deep-green);
            color: var(--brand-warm-white);
            position: relative;
        }

        .pricing-card.featured h3,
        .pricing-card.featured .price-num {
            color: var(--brand-warm-white);
        }

        .pricing-card .price-num {
            font-size: 34px;
            font-weight: 800;
            color: var(--brand-deep-green);
            margin: 10px 0 4px;
        }

        .pricing-card.featured .price-num {
            color: var(--brand-orange);
        }

        .pricing-card .price-label {
            font-size: 13px;
            color: rgba(28, 26, 23, 0.55);
            margin-bottom: 14px;
        }

        .pricing-card.featured .price-label {
            color: rgba(248, 245, 239, 0.7);
        }

        .pricing-card ul {
            list-style: none;
            margin: 0 0 20px;
            padding: 0;
            flex: 1;
        }

        .pricing-card ul li {
            font-size: 14px;
            padding: 7px 0;
            border-bottom: 1px solid rgba(23, 59, 42, 0.06);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pricing-card.featured ul li {
            border-bottom-color: rgba(248, 245, 239, 0.12);
        }

        .pricing-card ul li i {
            color: var(--brand-live-green);
            font-size: 12px;
        }

        .pricing-card .btn-block {
            width: 100%;
            text-align: center;
        }

        /* Reviews */
        .review-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .review-card {
            background: #FFFFFF;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            padding: 20px 18px;
            border: 1px solid rgba(23, 59, 42, 0.06);
        }

        .review-card .review-stars {
            color: var(--brand-orange);
            font-size: 14px;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .review-card .review-text {
            font-size: 14px;
            color: rgba(28, 26, 23, 0.68);
            line-height: 1.75;
            margin-bottom: 12px;
        }

        .review-card .review-user {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .review-card .review-user .avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--brand-warm-beige);
            color: var(--brand-deep-green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 14px;
        }

        .review-card .review-user .user-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--brand-text-dark);
        }

        /* Brand Story */
        .brand-story-section {
            background: var(--brand-warm-beige);
        }

        .brand-story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 36px;
            align-items: center;
        }

        .brand-story-content .brand-image {
            background-size: cover;
            background-position: center;
            min-height: 300px;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
        }

        .brand-story-content .brand-text p {
            font-size: 15px;
            line-height: 2.0;
            color: rgba(28, 26, 23, 0.75);
        }

        /* Commentators */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .team-card {
            background: #FFFFFF;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            padding: 20px;
            text-align: center;
            transition: all 0.25s ease;
            border: 1px solid rgba(23, 59, 42, 0.06);
        }

        .team-card:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-4px);
        }

        .team-card .team-avatar {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: var(--brand-warm-beige);
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--brand-deep-green);
            font-weight: 700;
        }

        .team-card h3 {
            font-size: 16px;
            margin-bottom: 4px;
        }

        .team-card .team-role {
            font-size: 13px;
            color: var(--brand-orange);
            font-weight: 500;
            margin-bottom: 8px;
        }

        .team-card p {
            font-size: 13px;
            color: rgba(28, 26, 23, 0.6);
            margin-bottom: 0;
            line-height: 1.7;
        }

        /* Multi-device */
        .device-showcase {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            align-items: flex-end;
        }

        .device-item {
            text-align: center;
            flex: 0 0 auto;
        }

        .device-item .device-icon {
            font-size: 42px;
            color: var(--brand-deep-green);
            margin-bottom: 10px;
        }

        .device-item .device-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--brand-text-dark);
        }

        /* News List */
        .news-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .news-item {
            display: flex;
            gap: 14px;
            background: #FFFFFF;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            padding: 14px 16px;
            transition: all 0.25s ease;
            border: 1px solid rgba(23, 59, 42, 0.06);
        }

        .news-item:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-2px);
        }

        .news-item img {
            width: 100px;
            height: 68px;
            object-fit: cover;
            border-radius: 6px;
            flex-shrink: 0;
        }

        .news-item .news-body h3 {
            font-size: 14px;
            margin-bottom: 4px;
            line-height: 1.5;
        }

        .news-item .news-body p {
            font-size: 12px;
            color: rgba(28, 26, 23, 0.55);
            margin-bottom: 4px;
            line-height: 1.6;
        }

        .news-item .news-body .news-date {
            font-size: 11px;
            color: rgba(28, 26, 23, 0.4);
        }

        /* Service Promise */
        .promise-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .promise-card {
            background: rgba(248, 245, 239, 0.06);
            border: 1px solid rgba(248, 245, 239, 0.15);
            border-radius: var(--brand-radius-card);
            padding: 22px 18px;
            text-align: center;
            transition: all 0.25s ease;
        }

        .promise-card:hover {
            background: rgba(248, 245, 239, 0.1);
        }

        .promise-card .promise-icon {
            font-size: 28px;
            color: var(--brand-orange);
            margin-bottom: 12px;
        }

        .promise-card h3 {
            color: var(--brand-warm-white);
            font-size: 16px;
            margin-bottom: 6px;
        }

        .promise-card p {
            color: rgba(248, 245, 239, 0.7);
            font-size: 13px;
            margin-bottom: 0;
            line-height: 1.7;
        }

        /* FAQ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #FFFFFF;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            margin-bottom: 12px;
            overflow: hidden;
            border: 1px solid rgba(23, 59, 42, 0.06);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 18px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 16px;
            font-weight: 600;
            color: var(--brand-text-dark);
            cursor: pointer;
            text-align: left;
            transition: all 0.2s;
            gap: 12px;
        }

        .faq-question:hover {
            color: var(--brand-orange);
        }

        .faq-question i {
            flex-shrink: 0;
            font-size: 14px;
            color: rgba(28, 26, 23, 0.4);
            transition: transform 0.3s;
        }

        .faq-answer {
            padding: 0 22px 18px;
            font-size: 15px;
            color: rgba(28, 26, 23, 0.68);
            line-height: 1.85;
            display: none;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        .faq-item.open .faq-question i {
            transform: rotate(180deg);
        }

        .faq-item.open .faq-question {
            color: var(--brand-orange);
        }

        /* CTA Banner */
        .cta-banner {
            position: relative;
            background: var(--brand-deep-green);
            color: var(--brand-warm-white);
            border-radius: 16px;
            overflow: hidden;
            padding: 56px 40px;
            text-align: center;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/assets/images/5491a7c9bed9212b.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.18;
            z-index: 1;
        }

        .cta-banner .cta-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
            margin: 0 auto;
        }

        .cta-banner h2 {
            color: var(--brand-warm-white);
            font-size: clamp(24px, 4vw, 32px);
            margin-bottom: 10px;
        }

        .cta-banner p {
            color: rgba(248, 245, 239, 0.78);
            margin-bottom: 22px;
        }

        /* Footer */
        .site-footer {
            background: var(--brand-deep-green);
            color: rgba(248, 245, 239, 0.75);
            padding: 48px 0 24px;
            border-top: 1px solid rgba(248, 245, 239, 0.08);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 32px;
        }

        .footer-brand p {
            font-size: 13px;
            color: rgba(248, 245, 239, 0.6);
            line-height: 1.8;
            margin-top: 10px;
        }

        .footer-col h4 {
            color: var(--brand-warm-white);
            font-size: 15px;
            margin-bottom: 14px;
            font-weight: 600;
        }

        .footer-col a {
            display: block;
            color: rgba(248, 245, 239, 0.65);
            font-size: 13px;
            padding: 5px 0;
            transition: color 0.2s;
        }

        .footer-col a:hover {
            color: var(--brand-orange);
        }

        .footer-bottom {
            border-top: 1px solid rgba(248, 245, 239, 0.12);
            padding-top: 16px;
            text-align: center;
            font-size: 12px;
            color: rgba(248, 245, 239, 0.45);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 32px;
                padding: 48px 0;
            }
            .feature-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
            }
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .promise-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .schedule-scroll {
                grid-template-columns: repeat(3, 1fr);
                overflow-x: auto;
            }
            .case-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .demo-frame-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 14px;
            }
            .review-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .site-header {
                height: 58px;
            }
            .mobile-nav-drawer {
                top: 58px;
            }
            .nav-center {
                display: none;
            }
            .nav-hamburger {
                display: flex;
            }
            .nav-cta-btn {
                display: none;
            }
            .hero-content {
                padding: 36px 0;
            }
            h1 {
                font-size: 28px;
            }
            .section-padding {
                padding: var(--section-padding-mobile);
            }
            .section-header {
                margin-bottom: 24px;
            }
            .schedule-scroll {
                grid-template-columns: repeat(2, 1fr);
                overflow-x: auto;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .scenario-block {
                grid-template-columns: 1fr;
            }
            .scenario-block .scenario-image {
                min-height: 180px;
            }
            .demo-frame-grid {
                grid-template-columns: 1fr;
            }
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .case-grid {
                grid-template-columns: 1fr;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            .review-grid {
                grid-template-columns: 1fr;
            }
            .brand-story-content {
                grid-template-columns: 1fr;
            }
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .news-list {
                grid-template-columns: 1fr;
            }
            .promise-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .cta-banner {
                padding: 36px 20px;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }
            .hero-buttons .btn-primary,
            .hero-buttons .btn-outline-light {
                justify-content: center;
            }
        }

        @media (max-width: 520px) {
            .nav-logo-text {
                font-size: 15px;
            }
            .nav-logo-icon {
                width: 30px;
                height: 30px;
                font-size: 13px;
            }
            .nav-live-indicator span {
                display: none;
            }
            .stats-row {
                grid-template-columns: 1fr;
            }
            .team-grid {
                grid-template-columns: 1fr;
            }
            .promise-grid {
                grid-template-columns: 1fr;
            }
            .device-showcase {
                gap: 12px;
            }
            .device-item .device-icon {
                font-size: 32px;
            }
            .schedule-scroll {
                grid-template-columns: 1fr;
                overflow-x: auto;
            }
            .schedule-card {
                min-width: 100%;
            }
            .hero-mock-player .player-score {
                font-size: 18px;
                gap: 12px;
                padding: 20px 6px;
            }
            .hero-mock-player .player-score .score-num {
                font-size: 24px;
            }
        }

/* roulang page: category1 */
:root {
            --brand-deep-green: #173B2A;
            --brand-deep-green-hover: #1E4F37;
            --brand-warm-beige: #F3EEE3;
            --brand-warm-white: #F8F5EF;
            --brand-orange: #E8501A;
            --brand-orange-hover: #C23F0E;
            --brand-text-dark: #1C1A17;
            --brand-text-light: #F8F5EF;
            --brand-live-green: #2FBF71;
            --brand-pre-blue: #6C7A89;
            --brand-replay-purple: #7A6A8F;
            --brand-border-light: rgba(23, 59, 42, 0.12);
            --brand-border-mid: rgba(23, 59, 42, 0.24);
            --brand-card-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
            --brand-card-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.06);
            --brand-radius-card: 12px;
            --brand-radius-btn: 8px;
            --brand-radius-tag: 6px;
            --font-family-sc: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --section-padding-desktop: 72px 0;
            --section-padding-mobile: 40px 0;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            box-sizing: border-box;
        }
        *,
        *::before,
        *::after {
            box-sizing: inherit;
        }
        body {
            font-family: var(--font-family-sc);
            font-size: 16px;
            font-weight: 400;
            line-height: 1.9;
            color: var(--brand-text-dark);
            background-color: var(--brand-warm-white);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: var(--brand-deep-green);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: var(--brand-orange);
            text-decoration: none;
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--brand-orange);
            outline-offset: 2px;
        }
        .section-padding {
            padding: var(--section-padding-desktop);
        }
        .section-padding-tight {
            padding: 48px 0;
        }
        .container-max {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        .section-header {
            margin-bottom: 36px;
        }
        .section-header h2 {
            margin-bottom: 10px;
            font-size: clamp(22px, 4vw, 30px);
            font-weight: 700;
            line-height: 1.35;
            letter-spacing: 0.01em;
        }
        .section-header p {
            font-size: 15px;
            max-width: 720px;
            color: rgba(28, 26, 23, 0.7);
            margin-bottom: 0;
        }
        .bg-deep-green .section-header p {
            color: rgba(248, 245, 239, 0.78);
        }

        /* Toolbar Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 90;
            background-color: var(--brand-deep-green);
            border-bottom: 1px solid rgba(0, 0, 0, 0.3);
            height: 68px;
            display: flex;
            align-items: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
        }
        .site-header .container-max {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .nav-logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: radial-gradient(circle at 40% 35%, #F8F5EF 0%, #E8501A 45%, #8A2E0C 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }
        .nav-logo-icon::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 8px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.85);
        }
        .nav-logo-text {
            font-size: 18px;
            font-weight: 700;
            color: var(--brand-warm-white);
            letter-spacing: 0.04em;
            white-space: nowrap;
        }
        .nav-center {
            display: flex;
            align-items: center;
            gap: 6px;
            flex: 1;
            justify-content: center;
            flex-wrap: nowrap;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .nav-center::-webkit-scrollbar {
            display: none;
        }
        .nav-center a {
            color: rgba(248, 245, 239, 0.85);
            font-size: 15px;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 6px;
            position: relative;
            transition: all 0.2s ease;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .nav-center a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--brand-orange);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.25s ease;
            border-radius: 1px;
        }
        .nav-center a:hover,
        .nav-center a:focus {
            color: var(--brand-orange);
        }
        .nav-center a:hover::after,
        .nav-center a.active::after {
            transform: scaleX(1);
        }
        .nav-center a.active {
            color: var(--brand-orange);
            font-weight: 600;
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }
        .nav-live-indicator {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--brand-warm-white);
            white-space: nowrap;
        }
        .nav-live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--brand-live-green);
            animation: pulse-dot 1.8s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.4); }
        }
        .nav-bell {
            position: relative;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: var(--brand-warm-white);
            font-size: 16px;
            transition: all 0.2s ease;
            cursor: pointer;
            flex-shrink: 0;
        }
        .nav-bell:hover {
            color: var(--brand-orange);
            background: rgba(248, 245, 239, 0.08);
        }
        .nav-bell-badge {
            position: absolute;
            top: 2px;
            right: 2px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #E53935;
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }
        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--brand-orange);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            padding: 9px 16px;
            border-radius: var(--brand-radius-btn);
            transition: all 0.2s ease;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .nav-cta-btn:hover,
        .nav-cta-btn:focus {
            background: var(--brand-orange-hover);
            color: #fff;
            transform: translateY(-1px);
        }
        .nav-hamburger {
            display: none;
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            border: none;
            background: transparent;
            color: var(--brand-warm-white);
            font-size: 20px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            transition: background 0.2s ease;
        }
        .nav-hamburger:hover {
            background: rgba(248, 245, 239, 0.1);
        }

        /* Breadcrumb */
        .breadcrumb-wrap {
            background: transparent;
            padding: 14px 0 0;
            margin-bottom: 8px;
        }
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(248, 245, 239, 0.7);
            list-style: none;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .breadcrumb a {
            color: rgba(248, 245, 239, 0.85);
            transition: color 0.2s ease;
        }
        .breadcrumb a:hover {
            color: var(--brand-orange);
        }
        .breadcrumb .sep {
            color: rgba(248, 245, 239, 0.4);
        }
        .breadcrumb .current {
            color: var(--brand-orange);
            font-weight: 600;
        }

        /* Buttons */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--brand-orange);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            padding: 12px 24px;
            border-radius: var(--brand-radius-btn);
            border: none;
            cursor: pointer;
            transition: all 0.25s ease;
            font-family: var(--font-family-sc);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .btn-primary:hover,
        .btn-primary:focus {
            background: var(--brand-orange-hover);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 14px rgba(232, 80, 26, 0.35);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--brand-deep-green);
            font-size: 15px;
            font-weight: 600;
            padding: 11px 24px;
            border-radius: var(--brand-radius-btn);
            border: 1.5px solid var(--brand-deep-green);
            cursor: pointer;
            transition: all 0.25s ease;
            font-family: var(--font-family-sc);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .btn-secondary:hover,
        .btn-secondary:focus {
            background: var(--brand-deep-green);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 14px rgba(23, 59, 42, 0.25);
        }
        .btn-secondary-light {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--brand-warm-white);
            font-size: 15px;
            font-weight: 600;
            padding: 11px 24px;
            border-radius: var(--brand-radius-btn);
            border: 1.5px solid rgba(248, 245, 239, 0.6);
            cursor: pointer;
            transition: all 0.25s ease;
            font-family: var(--font-family-sc);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .btn-secondary-light:hover,
        .btn-secondary-light:focus {
            background: var(--brand-warm-white);
            color: var(--brand-deep-green);
            border-color: var(--brand-warm-white);
            transform: translateY(-2px);
        }

        /* H1 Banner - simplified category hero */
        .category-banner {
            background: var(--brand-deep-green);
            padding: 48px 0 56px;
            position: relative;
            overflow: hidden;
        }
        .category-banner::before {
            content: '';
            position: absolute;
            top: -60%;
            right: -10%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(232, 80, 26, 0.18) 0%, transparent 70%);
            pointer-events: none;
        }
        .category-banner::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: 5%;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(47, 191, 113, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }
        .category-banner .container-max {
            position: relative;
            z-index: 2;
        }
        .category-banner h1 {
            font-size: clamp(28px, 5vw, 38px);
            font-weight: 800;
            line-height: 1.28;
            color: var(--brand-warm-white);
            margin: 0 0 14px;
            letter-spacing: 0.02em;
        }
        .category-banner .banner-sub {
            font-size: 16px;
            color: rgba(248, 245, 239, 0.82);
            max-width: 680px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        .banner-meta-row {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            font-size: 13px;
            color: rgba(248, 245, 239, 0.7);
        }
        .banner-meta-row span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .banner-meta-row i {
            color: var(--brand-orange);
        }

        /* Schedule list section */
        .schedule-section {
            background: #ffffff;
        }
        .schedule-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .schedule-item {
            display: flex;
            align-items: stretch;
            gap: 16px;
            background: #fff;
            border: 1px solid var(--brand-border-light);
            border-radius: var(--brand-radius-card);
            padding: 16px 20px;
            transition: all 0.3s ease;
            box-shadow: var(--brand-card-shadow);
        }
        .schedule-item:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-2px);
            border-color: var(--brand-border-mid);
        }
        .schedule-item-cover {
            width: 80px;
            min-width: 80px;
            height: 60px;
            border-radius: 8px;
            overflow: hidden;
            background: var(--brand-warm-beige);
            flex-shrink: 0;
        }
        .schedule-item-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .schedule-item-main {
            flex: 1;
            min-width: 0;
        }
        .schedule-item-league {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            color: var(--brand-deep-green);
            background: rgba(23, 59, 42, 0.08);
            padding: 3px 10px;
            border-radius: 20px;
            margin-bottom: 6px;
        }
        .schedule-item-league i {
            font-size: 10px;
            color: var(--brand-orange);
        }
        .schedule-item-teams {
            font-size: 16px;
            font-weight: 700;
            color: var(--brand-text-dark);
            line-height: 1.4;
        }
        .schedule-item-time {
            font-size: 13px;
            color: rgba(28, 26, 23, 0.6);
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 2px;
        }
        .schedule-item-status {
            align-self: center;
            flex-shrink: 0;
        }
        .status-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: 20px;
            white-space: nowrap;
        }
        .status-tag.live {
            background: rgba(47, 191, 113, 0.12);
            color: #1A8F4A;
        }
        .status-tag.live .dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--brand-live-green);
            animation: pulse-dot 1.8s ease-in-out infinite;
        }
        .status-tag.upcoming {
            background: rgba(108, 122, 137, 0.12);
            color: #4A5A68;
        }
        .status-tag.finished {
            background: rgba(122, 106, 143, 0.12);
            color: #5D4A70;
        }
        .schedule-item-cta {
            align-self: center;
            flex-shrink: 0;
        }
        .btn-sm {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: var(--brand-radius-btn);
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .btn-sm-outline {
            background: transparent;
            color: var(--brand-deep-green);
            border: 1px solid var(--brand-deep-green);
        }
        .btn-sm-outline:hover {
            background: var(--brand-deep-green);
            color: #fff;
        }
        .btn-sm-solid {
            background: var(--brand-orange);
            color: #fff;
            border: none;
        }
        .btn-sm-solid:hover {
            background: var(--brand-orange-hover);
            color: #fff;
        }
        .view-more-row {
            margin-top: 28px;
            text-align: center;
        }

        /* Hot matches */
        .hot-section {
            background: var(--brand-warm-beige);
        }
        .hot-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .hot-card {
            background: #fff;
            border-radius: var(--brand-radius-card);
            overflow: hidden;
            box-shadow: var(--brand-card-shadow);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .hot-card:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-4px);
        }
        .hot-card-cover {
            height: 150px;
            background: var(--brand-warm-beige);
            overflow: hidden;
            position: relative;
        }
        .hot-card-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hot-card-cover .overlay-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--brand-orange);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.04em;
        }
        .hot-card-body {
            padding: 18px 20px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .hot-card-league {
            font-size: 12px;
            font-weight: 600;
            color: var(--brand-deep-green);
            margin-bottom: 6px;
        }
        .hot-card-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--brand-text-dark);
            line-height: 1.4;
            margin-bottom: 8px;
        }
        .hot-card-meta {
            font-size: 13px;
            color: rgba(28, 26, 23, 0.6);
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: auto;
        }
        .hot-card-meta i {
            color: var(--brand-orange);
            font-size: 12px;
        }

        /* League filter */
        .league-section {
            background: #ffffff;
        }
        .league-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .league-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--brand-warm-beige);
            color: var(--brand-deep-green);
            font-size: 14px;
            font-weight: 600;
            padding: 10px 18px;
            border-radius: 30px;
            border: 1px solid transparent;
            transition: all 0.25s ease;
            cursor: pointer;
        }
        .league-tag:hover {
            border-color: var(--brand-deep-green);
            background: rgba(23, 59, 42, 0.06);
            transform: translateY(-1px);
        }
        .league-tag.active {
            background: var(--brand-deep-green);
            color: var(--brand-warm-white);
            border-color: var(--brand-deep-green);
        }
        .league-tag i {
            font-size: 13px;
            opacity: 0.75;
        }
        .league-tag .count {
            font-size: 11px;
            font-weight: 700;
            background: rgba(255, 255, 255, 0.2);
            padding: 2px 8px;
            border-radius: 12px;
        }
        .league-tag.active .count {
            background: rgba(248, 245, 239, 0.2);
        }

        /* Subscribe CTA */
        .subscribe-section {
            background: var(--brand-deep-green);
            position: relative;
            overflow: hidden;
        }
        .subscribe-section::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -5%;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(232, 80, 26, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }
        .subscribe-wrap {
            position: relative;
            z-index: 2;
            max-width: 720px;
            margin: 0 auto;
            text-align: center;
        }
        .subscribe-wrap h2 {
            font-size: clamp(24px, 4vw, 32px);
            font-weight: 700;
            color: var(--brand-warm-white);
            margin-bottom: 12px;
        }
        .subscribe-wrap p {
            font-size: 15px;
            color: rgba(248, 245, 239, 0.78);
            margin-bottom: 28px;
        }
        .subscribe-form {
            display: flex;
            gap: 12px;
            max-width: 520px;
            margin: 0 auto;
        }
        .subscribe-form input {
            flex: 1;
            padding: 13px 18px;
            border-radius: var(--brand-radius-btn);
            border: 1px solid rgba(248, 245, 239, 0.3);
            background: rgba(248, 245, 239, 0.1);
            color: var(--brand-warm-white);
            font-size: 14px;
            font-family: var(--font-family-sc);
            transition: border-color 0.25s ease, background 0.25s ease;
            min-width: 0;
        }
        .subscribe-form input::placeholder {
            color: rgba(248, 245, 239, 0.5);
        }
        .subscribe-form input:focus {
            border-color: var(--brand-orange);
            background: rgba(248, 245, 239, 0.16);
            outline: none;
        }
        .subscribe-form .btn-primary {
            flex-shrink: 0;
            padding: 13px 28px;
        }

        /* Replay */
        .replay-section {
            background: var(--brand-warm-beige);
        }
        .replay-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .replay-item {
            display: flex;
            gap: 14px;
            background: #fff;
            border-radius: var(--brand-radius-card);
            padding: 14px;
            box-shadow: var(--brand-card-shadow);
            transition: all 0.3s ease;
            cursor: pointer;
            align-items: center;
        }
        .replay-item:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-3px);
        }
        .replay-item-play {
            width: 46px;
            min-width: 46px;
            height: 46px;
            border-radius: 50%;
            background: rgba(23, 59, 42, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-deep-green);
            font-size: 16px;
            flex-shrink: 0;
            transition: all 0.25s ease;
        }
        .replay-item:hover .replay-item-play {
            background: var(--brand-orange);
            color: #fff;
        }
        .replay-item-info {
            flex: 1;
            min-width: 0;
        }
        .replay-item-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--brand-text-dark);
            line-height: 1.45;
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .replay-item-meta {
            font-size: 12px;
            color: rgba(28, 26, 23, 0.55);
        }

        /* Tips */
        .tips-section {
            background: #ffffff;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .tip-card {
            background: var(--brand-warm-white);
            border: 1px solid var(--brand-border-light);
            border-radius: var(--brand-radius-card);
            padding: 22px 24px;
            transition: all 0.3s ease;
        }
        .tip-card:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-2px);
            border-color: var(--brand-border-mid);
        }
        .tip-card-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(23, 59, 42, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-deep-green);
            font-size: 18px;
            margin-bottom: 14px;
        }
        .tip-card h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--brand-text-dark);
        }
        .tip-card p {
            font-size: 14px;
            color: rgba(28, 26, 23, 0.7);
            line-height: 1.75;
            margin-bottom: 0;
        }

        /* Footer */
        .site-footer {
            background: var(--brand-deep-green);
            color: rgba(248, 245, 239, 0.75);
            padding: 56px 0 0;
            margin-top: 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(248, 245, 239, 0.12);
        }
        .footer-brand .nav-logo {
            margin-bottom: 14px;
        }
        .footer-brand p {
            font-size: 13px;
            line-height: 1.8;
            color: rgba(248, 245, 239, 0.65);
            max-width: 300px;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--brand-warm-white);
            margin-bottom: 16px;
            letter-spacing: 0.04em;
        }
        .footer-col a {
            display: block;
            font-size: 13px;
            color: rgba(248, 245, 239, 0.7);
            padding: 5px 0;
            transition: color 0.2s ease, padding-left 0.2s ease;
        }
        .footer-col a:hover {
            color: var(--brand-orange);
            padding-left: 4px;
        }
        .footer-bottom {
            text-align: center;
            font-size: 12px;
            color: rgba(248, 245, 239, 0.45);
            padding: 20px 0;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hot-grid,
            .replay-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
            .nav-center {
                gap: 2px;
            }
            .nav-center a {
                padding: 8px 10px;
                font-size: 14px;
            }
            .nav-live-indicator span:last-child {
                display: none;
            }
            .nav-cta-btn {
                padding: 8px 12px;
                font-size: 12px;
            }
        }
        @media (max-width: 768px) {
            :root {
                --section-padding-desktop: 48px 0;
            }
            .site-header {
                height: 60px;
            }
            .nav-center {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background: var(--brand-deep-green);
                flex-direction: column;
                align-items: flex-start;
                padding: 12px 20px 20px;
                gap: 2px;
                border-bottom: 1px solid rgba(0, 0, 0, 0.3);
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
                z-index: 100;
                max-height: calc(100vh - 60px);
                overflow-y: auto;
            }
            .nav-center.open {
                display: flex;
            }
            .nav-center a {
                width: 100%;
                padding: 12px 10px;
                font-size: 16px;
                border-radius: 8px;
                white-space: normal;
            }
            .nav-center a::after {
                display: none;
            }
            .nav-hamburger {
                display: flex;
            }
            .nav-logo-text {
                font-size: 16px;
            }
            .nav-cta-btn {
                display: none;
            }
            .nav-live-indicator span:last-child {
                display: none;
            }
            .category-banner {
                padding: 36px 0 44px;
            }
            .category-banner h1 {
                font-size: clamp(24px, 6vw, 30px);
            }
            .schedule-item {
                flex-wrap: wrap;
                padding: 14px 16px;
                gap: 12px;
            }
            .schedule-item-cover {
                width: 64px;
                min-width: 64px;
                height: 48px;
            }
            .schedule-item-teams {
                font-size: 14px;
            }
            .schedule-item-cta {
                width: 100%;
            }
            .schedule-item-cta .btn-sm {
                width: 100%;
                justify-content: center;
            }
            .hot-grid,
            .replay-grid,
            .tips-grid {
                grid-template-columns: 1fr;
            }
            .subscribe-form {
                flex-direction: column;
                gap: 10px;
            }
            .subscribe-form input {
                width: 100%;
            }
            .subscribe-form .btn-primary {
                width: 100%;
                justify-content: center;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-brand p {
                max-width: none;
            }
        }
        @media (max-width: 520px) {
            .nav-logo-text {
                font-size: 14px;
                letter-spacing: 0.02em;
            }
            .nav-logo-icon {
                width: 30px;
                height: 30px;
                font-size: 13px;
            }
            .nav-bell {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }
            .nav-bell-badge {
                width: 14px;
                height: 14px;
                font-size: 9px;
                top: 0;
                right: 0;
            }
            .category-banner h1 {
                font-size: 22px;
            }
            .category-banner .banner-sub {
                font-size: 14px;
            }
            .breadcrumb {
                font-size: 12px;
            }
            .schedule-item-teams {
                font-size: 13px;
            }
            .status-tag {
                font-size: 11px;
                padding: 4px 10px;
            }
            .league-tag {
                font-size: 13px;
                padding: 8px 14px;
            }
        }

/* roulang page: category2 */
:root {
            --brand-deep-green: #173B2A;
            --brand-deep-green-hover: #1E4F37;
            --brand-warm-beige: #F3EEE3;
            --brand-warm-white: #F8F5EF;
            --brand-orange: #E8501A;
            --brand-orange-hover: #C23F0E;
            --brand-text-dark: #1C1A17;
            --brand-text-light: #F8F5EF;
            --brand-live-green: #2FBF71;
            --brand-pre-blue: #6C7A89;
            --brand-replay-purple: #7A6A8F;
            --brand-border-light: rgba(23, 59, 42, 0.12);
            --brand-border-mid: rgba(23, 59, 42, 0.24);
            --brand-card-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
            --brand-card-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.06);
            --brand-radius-card: 12px;
            --brand-radius-btn: 8px;
            --brand-radius-tag: 6px;
            --font-family-sc: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --section-padding-desktop: 72px 0;
            --section-padding-mobile: 40px 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-family-sc);
            font-size: 16px;
            font-weight: 400;
            line-height: 1.9;
            color: var(--brand-text-dark);
            background-color: var(--brand-warm-white);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--brand-deep-green);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        a:hover,
        a:focus {
            color: var(--brand-orange);
            text-decoration: none;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--brand-orange);
            outline-offset: 2px;
        }

        .section-padding {
            padding: var(--section-padding-desktop);
        }

        .section-padding-tight {
            padding: 48px 0;
        }

        .container-max {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        .section-header {
            margin-bottom: 36px;
        }

        .section-header h2 {
            margin-bottom: 10px;
            font-size: clamp(22px, 4vw, 30px);
            font-weight: 700;
            line-height: 1.35;
        }

        .section-header p {
            font-size: 15px;
            max-width: 720px;
            color: rgba(28, 26, 23, 0.7);
            margin-bottom: 0;
            line-height: 1.85;
        }

        .bg-deep-green .section-header p {
            color: rgba(248, 245, 239, 0.78);
        }

        .bg-deep-green .section-header h2 {
            color: var(--brand-warm-white);
        }

        /* Toolbar Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 90;
            background-color: var(--brand-deep-green);
            border-bottom: 1px solid rgba(0, 0, 0, 0.3);
            height: 68px;
            display: flex;
            align-items: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
        }

        .site-header .container-max {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .nav-logo:hover {
            color: var(--brand-warm-white);
        }

        .nav-logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: radial-gradient(circle at 40% 35%, #F8F5EF 0%, #E8501A 45%, #8A2E0C 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .nav-logo-icon::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 8px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.85);
        }

        .nav-logo-text {
            font-size: 18px;
            font-weight: 700;
            color: var(--brand-warm-white);
            letter-spacing: 0.04em;
            white-space: nowrap;
        }

        .nav-center {
            display: flex;
            align-items: center;
            gap: 4px;
            flex: 1;
            justify-content: center;
            flex-wrap: nowrap;
        }

        .nav-center a {
            color: rgba(248, 245, 239, 0.85);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 6px;
            position: relative;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .nav-center a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 12px;
            right: 12px;
            height: 2px;
            background: var(--brand-orange);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.25s ease;
            border-radius: 1px;
        }

        .nav-center a:hover,
        .nav-center a:focus {
            color: var(--brand-orange);
        }

        .nav-center a:hover::after,
        .nav-center a.active::after {
            transform: scaleX(1);
        }

        .nav-center a.active {
            color: var(--brand-orange);
            font-weight: 600;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .nav-live-indicator {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--brand-warm-white);
            font-size: 12px;
            font-weight: 500;
            white-space: nowrap;
        }

        .nav-live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--brand-live-green);
            box-shadow: 0 0 6px rgba(47, 191, 113, 0.8);
            animation: pulse-dot 1.8s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; box-shadow: 0 0 4px rgba(47, 191, 113, 0.6); }
            50% { opacity: 0.55; box-shadow: 0 0 10px rgba(47, 191, 113, 1); }
        }

        .nav-notify {
            position: relative;
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(248, 245, 239, 0.08);
            color: var(--brand-warm-white);
            font-size: 16px;
            transition: background 0.2s ease, color 0.2s ease;
            cursor: pointer;
            border: none;
            flex-shrink: 0;
        }

        .nav-notify:hover {
            background: rgba(248, 245, 239, 0.16);
            color: var(--brand-orange);
        }

        .nav-notify-badge {
            position: absolute;
            top: 2px;
            right: 2px;
            min-width: 16px;
            height: 16px;
            background: var(--brand-orange);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 4px;
            line-height: 1;
        }

        .nav-btn-main {
            background: var(--brand-orange);
            color: #fff;
            border: none;
            border-radius: var(--brand-radius-btn);
            padding: 9px 16px;
            font-size: 14px;
            font-weight: 600;
            font-family: var(--font-family-sc);
            cursor: pointer;
            transition: all 0.25s ease;
            white-space: nowrap;
            flex-shrink: 0;
            letter-spacing: 0.02em;
        }

        .nav-btn-main:hover {
            background: var(--brand-orange-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(232, 80, 26, 0.35);
            color: #fff;
        }

        .nav-hamburger {
            display: none;
            width: 42px;
            height: 42px;
            border-radius: 8px;
            background: rgba(248, 245, 239, 0.08);
            border: 1px solid rgba(248, 245, 239, 0.15);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .nav-hamburger:hover {
            background: rgba(248, 245, 239, 0.16);
        }

        .nav-hamburger span {
            display: block;
            width: 18px;
            height: 2px;
            background: var(--brand-warm-white);
            border-radius: 1px;
            transition: all 0.3s ease;
        }

        .nav-hamburger.open span:nth-child(1) {
            transform: translateY(6px) rotate(45deg);
        }
        .nav-hamburger.open span:nth-child(2) {
            opacity: 0;
        }
        .nav-hamburger.open span:nth-child(3) {
            transform: translateY(-6px) rotate(-45deg);
        }

        .mobile-nav-drawer {
            display: none;
            position: fixed;
            top: 68px;
            left: 0;
            right: 0;
            background: var(--brand-deep-green);
            padding: 16px 20px 24px;
            z-index: 89;
            border-bottom: 1px solid rgba(0, 0, 0, 0.3);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
        }

        .mobile-nav-drawer.open {
            display: block;
        }

        .mobile-nav-drawer a {
            display: block;
            padding: 12px 16px;
            color: rgba(248, 245, 239, 0.85);
            font-size: 16px;
            font-weight: 500;
            border-radius: 8px;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .mobile-nav-drawer a:hover,
        .mobile-nav-drawer a.active {
            background: rgba(248, 245, 239, 0.08);
            color: var(--brand-orange);
        }

        /* Breadcrumb */
        .breadcrumb-bar {
            background: transparent;
            padding: 16px 0 0;
            font-size: 13px;
            color: rgba(28, 26, 23, 0.55);
        }
        .breadcrumb-bar a {
            color: var(--brand-deep-green);
            font-weight: 500;
        }
        .breadcrumb-bar a:hover {
            color: var(--brand-orange);
        }
        .breadcrumb-bar .sep {
            margin: 0 8px;
            color: rgba(28, 26, 23, 0.35);
        }
        .breadcrumb-bar .current {
            color: rgba(28, 26, 23, 0.75);
            font-weight: 500;
        }

        /* Category H1 Banner */
        .category-hero {
            background: var(--brand-deep-green);
            padding: 48px 0 52px;
            position: relative;
            overflow: hidden;
        }
        .category-hero::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -40px;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(232, 80, 26, 0.22) 0%, transparent 70%);
            pointer-events: none;
        }
        .category-hero::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: 20%;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 1px solid rgba(248, 245, 239, 0.12);
            pointer-events: none;
        }
        .category-hero .container-max {
            position: relative;
            z-index: 1;
        }
        .category-hero h1 {
            font-size: clamp(26px, 4.5vw, 36px);
            font-weight: 800;
            color: var(--brand-warm-white);
            margin-bottom: 12px;
            line-height: 1.3;
            letter-spacing: 0.02em;
        }
        .category-hero .hero-subtitle {
            font-size: 16px;
            color: rgba(248, 245, 239, 0.82);
            max-width: 720px;
            line-height: 1.85;
            margin-bottom: 0;
        }
        .category-hero .hero-meta-tags {
            margin-top: 18px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .category-hero .hero-meta-tags span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: rgba(248, 245, 239, 0.1);
            border: 1px solid rgba(248, 245, 239, 0.18);
            color: rgba(248, 245, 239, 0.85);
            font-size: 12px;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: 500;
        }

        /* Section backgrounds */
        .bg-deep-green {
            background-color: var(--brand-deep-green);
            color: var(--brand-text-light);
        }
        .bg-warm-beige {
            background-color: var(--brand-warm-beige);
        }
        .bg-pure-white {
            background-color: #FFFFFF;
        }

        /* Cards */
        .brand-card {
            background: #fff;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            padding: 24px;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            border: 1px solid var(--brand-border-light);
        }
        .brand-card:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-4px);
        }

        /* Match list card */
        .match-item-card {
            display: flex;
            align-items: center;
            gap: 16px;
            background: #fff;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            padding: 16px 20px;
            border: 1px solid var(--brand-border-light);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }
        .match-item-card:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-2px);
        }
        .match-thumb {
            width: 64px;
            height: 64px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .match-info {
            flex: 1;
            min-width: 200px;
        }
        .match-info h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
            line-height: 1.5;
        }
        .match-info .match-league {
            font-size: 12px;
            color: rgba(28, 26, 23, 0.55);
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .match-league-tag {
            display: inline-block;
            font-size: 11px;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        .tag-league-ep {
            background: #E8F0EC;
            color: #1E4F37;
        }
        .tag-league-la {
            background: #FDF0E7;
            color: #A63C0A;
        }
        .tag-league-sa {
            background: #E9ECF5;
            color: #3A4E7A;
        }
        .tag-league-bd {
            background: #F5EDE6;
            color: #6B4A2B;
        }
        .tag-league-cl {
            background: #EDE6F5;
            color: #5A3A7A;
        }
        .tag-league-csl {
            background: #FDF2DD;
            color: #8A5A10;
        }
        .match-time {
            font-size: 13px;
            color: rgba(28, 26, 23, 0.65);
            white-space: nowrap;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 4px;
        }
        .match-time .date {
            font-weight: 600;
            color: var(--brand-text-dark);
        }
        .match-status {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 20px;
            white-space: nowrap;
        }
        .status-live {
            background: rgba(47, 191, 113, 0.12);
            color: #1E9E5A;
            border: 1px solid rgba(47, 191, 113, 0.3);
        }
        .status-upcoming {
            background: rgba(108, 122, 137, 0.1);
            color: #5A6673;
            border: 1px solid rgba(108, 122, 137, 0.25);
        }
        .status-finished {
            background: rgba(122, 106, 143, 0.1);
            color: #6A5A7F;
            border: 1px solid rgba(122, 106, 143, 0.25);
        }

        /* Team card */
        .team-card {
            background: #fff;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            padding: 20px;
            text-align: center;
            border: 1px solid var(--brand-border-light);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }
        .team-card:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-4px);
        }
        .team-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--brand-deep-green);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 800;
            margin: 0 auto 12px;
            flex-shrink: 0;
        }
        .team-card h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .team-card p {
            font-size: 13px;
            color: rgba(28, 26, 23, 0.6);
            margin-bottom: 0;
        }
        .team-league-badge {
            display: inline-block;
            font-size: 11px;
            padding: 3px 10px;
            border-radius: 4px;
            font-weight: 600;
            margin-top: 8px;
        }

        /* Data stat */
        .stat-block {
            text-align: center;
            background: #fff;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            padding: 20px 16px;
            border: 1px solid var(--brand-border-light);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }
        .stat-block:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-4px);
        }
        .stat-block .stat-number {
            font-size: 32px;
            font-weight: 800;
            color: var(--brand-deep-green);
            line-height: 1.2;
            margin-bottom: 4px;
        }
        .stat-block .stat-number.orange {
            color: var(--brand-orange);
        }
        .stat-block .stat-label {
            font-size: 13px;
            color: rgba(28, 26, 23, 0.6);
            font-weight: 500;
        }

        /* Scoring table */
        .scoring-table-wrap {
            background: #fff;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            overflow: hidden;
            border: 1px solid var(--brand-border-light);
        }
        .scoring-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }
        .scoring-table thead {
            background: var(--brand-deep-green);
            color: var(--brand-warm-white);
        }
        .scoring-table th {
            padding: 14px 16px;
            font-weight: 600;
            font-size: 13px;
            text-align: left;
            white-space: nowrap;
        }
        .scoring-table td {
            padding: 12px 16px;
            border-bottom: 1px solid var(--brand-border-light);
            text-align: left;
            vertical-align: middle;
        }
        .scoring-table tbody tr:last-child td {
            border-bottom: none;
        }
        .scoring-table tbody tr:hover {
            background: rgba(243, 238, 227, 0.5);
        }
        .scoring-table .rank {
            font-weight: 700;
            color: var(--brand-orange);
            font-size: 15px;
        }
        .scoring-table .rank-1 {
            color: #D4A017;
        }
        .scoring-table .rank-2 {
            color: #8A8A8A;
        }
        .scoring-table .rank-3 {
            color: #A05A2C;
        }

        /* Guide card */
        .guide-card {
            display: flex;
            gap: 16px;
            background: #fff;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            padding: 20px;
            border: 1px solid var(--brand-border-light);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            align-items: flex-start;
        }
        .guide-card:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-4px);
        }
        .guide-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(23, 59, 42, 0.08);
            color: var(--brand-deep-green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        .guide-card h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .guide-card p {
            font-size: 14px;
            color: rgba(28, 26, 23, 0.65);
            margin-bottom: 0;
            line-height: 1.75;
        }

        /* Highlight card */
        .highlight-card {
            display: flex;
            gap: 16px;
            background: #fff;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            padding: 16px;
            border: 1px solid var(--brand-border-light);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            align-items: center;
        }
        .highlight-card:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-4px);
        }
        .highlight-thumb {
            width: 100px;
            height: 68px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .highlight-card h3 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 2px;
            line-height: 1.5;
        }
        .highlight-card p {
            font-size: 13px;
            color: rgba(28, 26, 23, 0.6);
            margin-bottom: 0;
        }
        .highlight-duration {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            font-weight: 600;
            color: var(--brand-replay-purple);
            background: rgba(122, 106, 143, 0.1);
            padding: 2px 8px;
            border-radius: 4px;
        }

        /* Subscribe form */
        .subscribe-form {
            display: flex;
            gap: 10px;
            max-width: 520px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .subscribe-form input {
            flex: 1;
            min-width: 200px;
            padding: 12px 16px;
            border-radius: var(--brand-radius-btn);
            border: 1px solid var(--brand-border-mid);
            font-family: var(--font-family-sc);
            font-size: 14px;
            background: #fff;
            color: var(--brand-text-dark);
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .subscribe-form input:focus {
            outline: none;
            border-color: var(--brand-orange);
            box-shadow: 0 0 0 3px rgba(232, 80, 26, 0.12);
        }
        .subscribe-form input::placeholder {
            color: rgba(28, 26, 23, 0.4);
        }
        .subscribe-form button {
            padding: 12px 24px;
            border-radius: var(--brand-radius-btn);
            background: var(--brand-orange);
            color: #fff;
            border: none;
            font-family: var(--font-family-sc);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
            white-space: nowrap;
            letter-spacing: 0.02em;
        }
        .subscribe-form button:hover {
            background: var(--brand-orange-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(232, 80, 26, 0.3);
        }

        /* Button styles */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: var(--font-family-sc);
            font-size: 15px;
            font-weight: 600;
            padding: 12px 24px;
            border-radius: var(--brand-radius-btn);
            cursor: pointer;
            transition: all 0.25s ease;
            border: none;
            letter-spacing: 0.02em;
        }
        .btn-primary {
            background: var(--brand-orange);
            color: #fff;
        }
        .btn-primary:hover {
            background: var(--brand-orange-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(232, 80, 26, 0.3);
            color: #fff;
        }
        .btn-outline {
            background: transparent;
            color: var(--brand-deep-green);
            border: 2px solid var(--brand-deep-green);
        }
        .btn-outline:hover {
            background: var(--brand-deep-green);
            color: var(--brand-warm-white);
            transform: translateY(-1px);
        }
        .btn-outline-light {
            background: transparent;
            color: var(--brand-warm-white);
            border: 2px solid rgba(248, 245, 239, 0.5);
        }
        .btn-outline-light:hover {
            background: rgba(248, 245, 239, 0.1);
            border-color: var(--brand-warm-white);
            color: var(--brand-warm-white);
        }

        /* Footer */
        .site-footer {
            background: var(--brand-deep-green);
            color: rgba(248, 245, 239, 0.75);
            padding: 56px 0 0;
            font-size: 14px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            padding-bottom: 36px;
        }
        .footer-brand p {
            font-size: 13px;
            line-height: 1.8;
            color: rgba(248, 245, 239, 0.65);
            margin-top: 12px;
            max-width: 320px;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--brand-warm-white);
            margin-bottom: 14px;
            letter-spacing: 0.04em;
        }
        .footer-col a {
            display: block;
            color: rgba(248, 245, 239, 0.7);
            font-size: 13px;
            padding: 5px 0;
            transition: color 0.2s ease, padding-left 0.2s ease;
        }
        .footer-col a:hover {
            color: var(--brand-orange);
            padding-left: 4px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(248, 245, 239, 0.1);
            padding: 20px 0;
            text-align: center;
            font-size: 12px;
            color: rgba(248, 245, 239, 0.5);
        }

        /* Grid tweaks */
        .grid-col-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .grid-col-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .grid-col-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .match-list-grid {
            display: flex;
            flex-direction: column;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-center a {
                font-size: 13px;
                padding: 8px 8px;
            }
            .nav-right {
                gap: 8px;
            }
            .nav-btn-main {
                padding: 8px 12px;
                font-size: 13px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .grid-col-4 {
                grid-template-columns: repeat(2, 1fr);
            }
            .grid-col-3 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .site-header .container-max {
                flex-wrap: nowrap;
            }
            .nav-center {
                display: none;
            }
            .nav-hamburger {
                display: flex;
            }
            .nav-right {
                margin-left: auto;
            }
            .nav-live-indicator {
                display: none;
            }
            .section-padding {
                padding: var(--section-padding-mobile);
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .grid-col-3 {
                grid-template-columns: 1fr;
            }
            .grid-col-4 {
                grid-template-columns: 1fr;
            }
            .grid-col-2 {
                grid-template-columns: 1fr;
            }
            .match-item-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                padding: 14px;
            }
            .match-thumb {
                width: 100%;
                height: 140px;
                border-radius: 8px;
            }
            .match-time {
                flex-direction: row;
                align-items: center;
                gap: 8px;
            }
            .category-hero {
                padding: 36px 0 40px;
            }
            .subscribe-form {
                flex-direction: column;
            }
            .subscribe-form button {
                width: 100%;
            }
            .highlight-card {
                flex-direction: column;
                align-items: flex-start;
            }
            .highlight-thumb {
                width: 100%;
                height: 140px;
            }
            .scoring-table th,
            .scoring-table td {
                padding: 10px 10px;
                font-size: 12px;
            }
        }

        @media (max-width: 520px) {
            .nav-logo-text {
                font-size: 15px;
            }
            .nav-logo-icon {
                width: 30px;
                height: 30px;
                font-size: 13px;
            }
            .nav-btn-main {
                padding: 7px 10px;
                font-size: 12px;
            }
            .nav-notify {
                width: 34px;
                height: 34px;
                font-size: 14px;
            }
            .site-header {
                height: 60px;
            }
            .mobile-nav-drawer {
                top: 60px;
            }
            .section-header h2 {
                font-size: 20px;
            }
            .stat-block .stat-number {
                font-size: 26px;
            }
            .team-card {
                padding: 16px;
            }
            .guide-card {
                padding: 16px;
            }
        }

/* roulang page: category3 */
:root {
            --brand-deep-green: #173B2A;
            --brand-deep-green-hover: #1E4F37;
            --brand-warm-beige: #F3EEE3;
            --brand-warm-white: #F8F5EF;
            --brand-orange: #E8501A;
            --brand-orange-hover: #C23F0E;
            --brand-text-dark: #1C1A17;
            --brand-text-light: #F8F5EF;
            --brand-live-green: #2FBF71;
            --brand-pre-blue: #6C7A89;
            --brand-replay-purple: #7A6A8F;
            --brand-border-light: rgba(23, 59, 42, 0.12);
            --brand-border-mid: rgba(23, 59, 42, 0.24);
            --brand-card-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
            --brand-card-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.06);
            --brand-radius-card: 12px;
            --brand-radius-btn: 8px;
            --brand-radius-tag: 6px;
            --font-family-sc: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --section-padding-desktop: 72px 0;
            --section-padding-mobile: 40px 0;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-family-sc);
            font-size: 16px;
            font-weight: 400;
            line-height: 1.9;
            color: var(--brand-text-dark);
            background-color: var(--brand-warm-white);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--brand-deep-green);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        a:hover,
        a:focus {
            color: var(--brand-orange);
            text-decoration: none;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible {
            outline: 2px solid var(--brand-orange);
            outline-offset: 2px;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-family-sc);
            color: var(--brand-text-dark);
            margin-top: 0;
            font-weight: 700;
            line-height: 1.35;
        }

        h1 {
            font-size: clamp(28px, 5vw, 38px);
            font-weight: 800;
            line-height: 1.25;
        }

        h2 {
            font-size: clamp(22px, 3.5vw, 28px);
            font-weight: 700;
        }

        h3 {
            font-size: clamp(17px, 2.5vw, 20px);
            font-weight: 600;
            line-height: 1.5;
        }

        p {
            margin-top: 0;
            margin-bottom: 1rem;
        }

        .section-padding {
            padding: var(--section-padding-desktop);
        }

        .section-padding-tight {
            padding: 48px 0;
        }

        .container-max {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        .section-header {
            margin-bottom: 36px;
        }

        .section-header h2 {
            margin-bottom: 10px;
        }

        .section-header p {
            font-size: 15px;
            max-width: 720px;
            color: rgba(28, 26, 23, 0.7);
            margin-bottom: 0;
        }

        .bg-deep-green {
            background-color: var(--brand-deep-green);
        }

        .bg-deep-green .section-header h2,
        .bg-deep-green .section-header h3 {
            color: var(--brand-warm-white);
        }

        .bg-deep-green .section-header p {
            color: rgba(248, 245, 239, 0.78);
        }

        .bg-warm-beige {
            background-color: var(--brand-warm-beige);
        }

        .bg-white {
            background-color: #FFFFFF;
        }

        /* Toolbar Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 90;
            background-color: var(--brand-deep-green);
            border-bottom: 1px solid rgba(0, 0, 0, 0.3);
            min-height: 68px;
            display: flex;
            align-items: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
        }

        .site-header .container-max {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            flex-wrap: nowrap;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            color: var(--brand-warm-white);
        }

        .nav-logo:hover,
        .nav-logo:focus {
            color: var(--brand-warm-white);
        }

        .nav-logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: radial-gradient(circle at 40% 35%, #F8F5EF 0%, #E8501A 45%, #8A2E0C 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .nav-logo-icon::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 8px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.85);
        }

        .nav-logo-text {
            font-size: 18px;
            font-weight: 700;
            color: var(--brand-warm-white);
            letter-spacing: 0.04em;
            white-space: nowrap;
        }

        .nav-center {
            display: flex;
            align-items: center;
            gap: 4px;
            flex: 1;
            justify-content: center;
        }

        .nav-center a {
            color: rgba(248, 245, 239, 0.85);
            font-size: 15px;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 6px;
            position: relative;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .nav-center a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 12px;
            right: 12px;
            height: 2px;
            background: var(--brand-orange);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.25s ease;
            border-radius: 1px;
        }

        .nav-center a:hover,
        .nav-center a:focus {
            color: var(--brand-orange);
        }

        .nav-center a:hover::after,
        .nav-center a.active::after {
            transform: scaleX(1);
        }

        .nav-center a.active {
            color: var(--brand-orange);
            font-weight: 600;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        .nav-live-indicator {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--brand-warm-white);
            font-size: 12px;
            font-weight: 500;
            white-space: nowrap;
        }

        .nav-live-indicator .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--brand-live-green);
            display: inline-block;
            animation: livePulse 1.8s ease-in-out infinite;
        }

        @keyframes livePulse {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(47, 191, 113, 0.5);
            }
            50% {
                box-shadow: 0 0 0 6px rgba(47, 191, 113, 0);
            }
        }

        .nav-bell {
            position: relative;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: rgba(248, 245, 239, 0.85);
            font-size: 18px;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }

        .nav-bell:hover,
        .nav-bell:focus {
            color: var(--brand-orange);
            background-color: rgba(255, 255, 255, 0.08);
        }

        .nav-bell .badge {
            position: absolute;
            top: -2px;
            right: -2px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background-color: #E53935;
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .nav-cta {
            background-color: var(--brand-orange);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: var(--brand-radius-btn);
            transition: all 0.25s ease;
            white-space: nowrap;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .nav-cta:hover,
        .nav-cta:focus {
            background-color: var(--brand-orange-hover);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(232, 80, 26, 0.35);
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--brand-warm-white);
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
            border-radius: 6px;
            transition: background 0.2s ease;
            flex-shrink: 0;
        }

        .nav-toggle:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .mobile-menu {
            display: none;
            background-color: var(--brand-deep-green);
            padding: 12px 20px 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .mobile-menu a {
            display: block;
            color: rgba(248, 245, 239, 0.85);
            font-size: 16px;
            font-weight: 500;
            padding: 12px 16px;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .mobile-menu a:hover,
        .mobile-menu a.active {
            color: var(--brand-orange);
            background-color: rgba(255, 255, 255, 0.06);
        }

        /* Breadcrumb */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(248, 245, 239, 0.65);
            margin-bottom: 18px;
            flex-wrap: wrap;
        }

        .breadcrumb a {
            color: rgba(248, 245, 239, 0.85);
            transition: color 0.2s ease;
        }

        .breadcrumb a:hover {
            color: var(--brand-orange);
        }

        .breadcrumb .sep {
            color: rgba(248, 245, 239, 0.4);
            font-size: 11px;
        }

        .breadcrumb .current {
            color: var(--brand-orange);
            font-weight: 500;
        }

        /* Category Hero */
        .category-hero {
            background-color: var(--brand-deep-green);
            background-image: linear-gradient(rgba(23, 59, 42, 0.82), rgba(23, 59, 42, 0.9)), url('/assets/images/1f7552d090064cf8.webp');
            background-size: cover;
            background-position: center;
            padding: 56px 0 48px;
            position: relative;
            overflow: hidden;
        }

        .category-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--brand-orange), transparent 60%);
        }

        .category-hero .hero-inner {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 28px;
        }

        .category-hero .hero-text {
            flex: 1 1 520px;
        }

        .category-hero h1 {
            color: var(--brand-warm-white);
            margin-bottom: 14px;
        }

        .category-hero .hero-subtitle {
            color: rgba(248, 245, 239, 0.85);
            font-size: 16px;
            max-width: 640px;
            margin-bottom: 24px;
            line-height: 1.8;
        }

        .category-hero .hero-bento {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .category-hero .bento-chip {
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            padding: 12px 16px;
            color: var(--brand-warm-white);
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 8px;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            transition: all 0.25s ease;
        }

        .category-hero .bento-chip:hover {
            background-color: rgba(255, 255, 255, 0.18);
            border-color: rgba(232, 80, 26, 0.6);
            transform: translateY(-2px);
        }

        .category-hero .bento-chip i {
            color: var(--brand-orange);
            font-size: 16px;
        }

        .category-hero .hero-cta-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 8px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 11px 22px;
            border-radius: var(--brand-radius-btn);
            font-size: 15px;
            font-weight: 600;
            transition: all 0.25s ease;
            border: none;
            cursor: pointer;
            line-height: 1.4;
            white-space: nowrap;
        }

        .btn-primary {
            background-color: var(--brand-orange);
            color: #fff;
        }

        .btn-primary:hover,
        .btn-primary:focus {
            background-color: var(--brand-orange-hover);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(232, 80, 26, 0.35);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--brand-warm-white);
            border: 2px solid rgba(248, 245, 239, 0.5);
        }

        .btn-outline:hover,
        .btn-outline:focus {
            background-color: var(--brand-warm-white);
            color: var(--brand-deep-green);
            border-color: var(--brand-warm-white);
            transform: translateY(-2px);
        }

        .btn-deep {
            background-color: var(--brand-deep-green);
            color: #fff;
        }

        .btn-deep:hover,
        .btn-deep:focus {
            background-color: var(--brand-deep-green-hover);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(23, 59, 42, 0.3);
        }

        /* Match List */
        .match-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .match-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 14px;
            padding: 18px 20px;
            background-color: #FFFFFF;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            transition: all 0.25s ease;
            border: 1px solid var(--brand-border-light);
        }

        .match-item:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-3px);
            border-color: var(--brand-orange);
        }

        .match-league {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 20px;
            background-color: var(--brand-warm-beige);
            color: var(--brand-deep-green);
            white-space: nowrap;
        }

        .match-teams {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            font-weight: 600;
            color: var(--brand-text-dark);
            flex: 1;
            min-width: 200px;
        }

        .match-teams .vs {
            color: var(--brand-orange);
            font-weight: 700;
            font-size: 14px;
            padding: 0 6px;
        }

        .match-time {
            font-size: 14px;
            color: rgba(28, 26, 23, 0.7);
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .match-time i {
            color: var(--brand-orange);
            font-size: 14px;
        }

        .status-tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 20px;
            white-space: nowrap;
        }

        .status-tag.live {
            background-color: rgba(47, 191, 113, 0.12);
            color: #1E8C4A;
        }

        .status-tag.live::before {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background-color: var(--brand-live-green);
            animation: livePulse 1.8s ease-in-out infinite;
        }

        .status-tag.upcoming {
            background-color: rgba(108, 122, 137, 0.15);
            color: #4A5568;
        }

        .status-tag.finished {
            background-color: rgba(122, 106, 143, 0.15);
            color: #5A4A6A;
        }

        .match-cover {
            width: 54px;
            height: 54px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
            background-color: var(--brand-warm-beige);
        }

        .match-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .view-more-row {
            text-align: center;
            margin-top: 28px;
        }

        /* Star Cards */
        .star-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
            gap: 18px;
        }

        .star-card {
            background-color: #FFFFFF;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            padding: 22px 20px;
            text-align: center;
            border: 1px solid var(--brand-border-light);
            transition: all 0.25s ease;
        }

        .star-card:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-4px);
            border-color: var(--brand-orange);
        }

        .star-avatar {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            margin: 0 auto 14px;
            overflow: hidden;
            background-color: var(--brand-warm-beige);
            border: 3px solid var(--brand-deep-green);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .star-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .star-card .star-name {
            font-size: 17px;
            font-weight: 700;
            color: var(--brand-text-dark);
            margin-bottom: 4px;
        }

        .star-card .star-team {
            font-size: 13px;
            color: rgba(28, 26, 23, 0.6);
            margin-bottom: 10px;
        }

        .star-card .star-stat {
            font-size: 26px;
            font-weight: 800;
            color: var(--brand-orange);
            line-height: 1.2;
        }

        .star-card .star-stat-label {
            font-size: 12px;
            color: rgba(28, 26, 23, 0.55);
        }

        /* League Tags */
        .league-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .league-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            border-radius: 30px;
            background-color: #FFFFFF;
            border: 1.5px solid var(--brand-border-mid);
            font-size: 14px;
            font-weight: 600;
            color: var(--brand-deep-green);
            transition: all 0.25s ease;
            cursor: default;
        }

        .league-tag:hover {
            background-color: var(--brand-deep-green);
            color: var(--brand-warm-white);
            border-color: var(--brand-deep-green);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(23, 59, 42, 0.2);
        }

        .league-tag i {
            font-size: 14px;
            color: var(--brand-orange);
        }

        .league-tag:hover i {
            color: var(--brand-orange);
        }

        /* Ranking */
        .ranking-table-wrap {
            background-color: #FFFFFF;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            overflow: hidden;
            border: 1px solid var(--brand-border-light);
        }

        .ranking-table {
            width: 100%;
            border-collapse: collapse;
        }

        .ranking-table th {
            background-color: var(--brand-deep-green);
            color: var(--brand-warm-white);
            font-size: 13px;
            font-weight: 600;
            padding: 14px 16px;
            text-align: left;
            white-space: nowrap;
        }

        .ranking-table td {
            padding: 13px 16px;
            font-size: 14px;
            color: var(--brand-text-dark);
            border-bottom: 1px solid var(--brand-border-light);
            white-space: nowrap;
        }

        .ranking-table tr:last-child td {
            border-bottom: none;
        }

        .ranking-table tbody tr {
            transition: background 0.2s ease;
        }

        .ranking-table tbody tr:hover {
            background-color: var(--brand-warm-beige);
        }

        .rank-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            font-weight: 700;
            font-size: 13px;
            background-color: var(--brand-warm-beige);
            color: var(--brand-deep-green);
        }

        .rank-num.top {
            background-color: var(--brand-orange);
            color: #fff;
        }

        .rank-team {
            font-weight: 600;
            color: var(--brand-text-dark);
        }

        .rank-record {
            color: rgba(28, 26, 23, 0.65);
            font-size: 13px;
        }

        /* Guide Items */
        .guide-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 18px;
        }

        .guide-card {
            background-color: #FFFFFF;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            padding: 22px;
            border: 1px solid var(--brand-border-light);
            transition: all 0.25s ease;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .guide-card:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-4px);
            border-color: var(--brand-deep-green);
        }

        .guide-card .guide-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background-color: rgba(23, 59, 42, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--brand-deep-green);
            margin-bottom: 4px;
        }

        .guide-card h3 {
            font-size: 17px;
            margin-bottom: 4px;
            color: var(--brand-text-dark);
        }

        .guide-card p {
            font-size: 14px;
            color: rgba(28, 26, 23, 0.7);
            margin-bottom: 0;
        }

        /* Highlight Cards */
        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 18px;
        }

        .highlight-card {
            background-color: #FFFFFF;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            overflow: hidden;
            border: 1px solid var(--brand-border-light);
            transition: all 0.25s ease;
        }

        .highlight-card:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-4px);
            border-color: var(--brand-orange);
        }

        .highlight-card .highlight-cover {
            height: 150px;
            overflow: hidden;
            position: relative;
        }

        .highlight-card .highlight-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .highlight-card:hover .highlight-cover img {
            transform: scale(1.06);
        }

        .highlight-card .highlight-overlay {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: var(--brand-orange);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 4px;
            letter-spacing: 0.04em;
        }

        .highlight-card .highlight-body {
            padding: 16px 18px;
        }

        .highlight-card .highlight-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--brand-text-dark);
            margin-bottom: 6px;
            line-height: 1.5;
        }

        .highlight-card .highlight-meta {
            font-size: 12px;
            color: rgba(28, 26, 23, 0.55);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .highlight-card .highlight-meta i {
            color: var(--brand-orange);
            font-size: 12px;
        }

        /* Footer */
        .site-footer {
            background-color: var(--brand-deep-green);
            color: rgba(248, 245, 239, 0.75);
            padding: 52px 0 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 36px;
            margin-bottom: 36px;
        }

        .site-footer .footer-brand p {
            font-size: 14px;
            line-height: 1.8;
            margin-top: 12px;
            color: rgba(248, 245, 239, 0.65);
            max-width: 320px;
        }

        .site-footer h4 {
            color: var(--brand-warm-white);
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: 0.02em;
        }

        .site-footer .footer-col {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .site-footer .footer-col a {
            color: rgba(248, 245, 239, 0.65);
            font-size: 14px;
            transition: color 0.2s ease;
            display: inline-block;
            padding: 2px 0;
        }

        .site-footer .footer-col a:hover,
        .site-footer .footer-col a:focus {
            color: var(--brand-orange);
        }

        .site-footer .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: rgba(248, 245, 239, 0.5);
        }

        /* Reuse nav-logo in footer */
        .site-footer .nav-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 4px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-center {
                gap: 0;
            }
            .nav-center a {
                padding: 8px 9px;
                font-size: 14px;
            }
            .site-footer .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-padding-desktop: 40px 0;
            }

            .section-padding {
                padding: var(--section-padding-mobile);
            }

            .section-padding-tight {
                padding: 32px 0;
            }

            .nav-center {
                display: none;
            }

            .nav-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .mobile-menu.open {
                display: block;
            }

            .nav-right .nav-cta {
                display: none;
            }

            .site-header {
                min-height: 56px;
            }

            .category-hero {
                padding: 40px 0 36px;
            }

            .category-hero .hero-inner {
                flex-direction: column;
                align-items: flex-start;
            }

            .match-item {
                flex-direction: column;
                align-items: flex-start;
                padding: 16px;
            }

            .match-teams {
                min-width: auto;
                width: 100%;
            }

            .match-right {
                display: flex;
                align-items: center;
                gap: 10px;
                flex-wrap: wrap;
            }

            .star-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .star-avatar {
                width: 56px;
                height: 56px;
            }

            .star-card .star-stat {
                font-size: 20px;
            }

            .ranking-table th,
            .ranking-table td {
                padding: 10px 12px;
                font-size: 12px;
            }

            .guide-grid {
                grid-template-columns: 1fr;
            }

            .highlight-grid {
                grid-template-columns: 1fr;
            }

            .site-footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .site-footer .footer-brand p {
                max-width: 100%;
            }
        }

        @media (max-width: 520px) {
            .star-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .star-card {
                padding: 16px 14px;
            }

            .star-avatar {
                width: 48px;
                height: 48px;
            }

            .star-card .star-name {
                font-size: 15px;
            }

            .star-card .star-stat {
                font-size: 18px;
            }

            .league-tag {
                font-size: 12px;
                padding: 8px 14px;
            }

            .category-hero .hero-bento {
                flex-direction: column;
            }

            .category-hero .bento-chip {
                width: 100%;
            }
        }

/* roulang page: category4 */
:root {
            --brand-deep-green: #173B2A;
            --brand-deep-green-hover: #1E4F37;
            --brand-warm-beige: #F3EEE3;
            --brand-warm-white: #F8F5EF;
            --brand-orange: #E8501A;
            --brand-orange-hover: #C23F0E;
            --brand-text-dark: #1C1A17;
            --brand-text-light: #F8F5EF;
            --brand-live-green: #2FBF71;
            --brand-pre-blue: #6C7A89;
            --brand-replay-purple: #7A6A8F;
            --brand-border-light: rgba(23, 59, 42, 0.12);
            --brand-border-mid: rgba(23, 59, 42, 0.24);
            --brand-card-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
            --brand-card-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.06);
            --brand-radius-card: 12px;
            --brand-radius-btn: 8px;
            --brand-radius-tag: 6px;
            --font-family-sc: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --section-padding-desktop: 72px 0;
            --section-padding-mobile: 40px 0;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-family-sc);
            font-size: 16px;
            font-weight: 400;
            line-height: 1.9;
            color: var(--brand-text-dark);
            background-color: var(--brand-warm-white);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--brand-deep-green);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        a:hover,
        a:focus {
            color: var(--brand-orange);
            text-decoration: none;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--brand-orange);
            outline-offset: 2px;
        }

        .section-padding {
            padding: var(--section-padding-desktop);
        }

        .section-padding-tight {
            padding: 48px 0;
        }

        .container-max {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        .section-header {
            margin-bottom: 36px;
        }

        .section-header h2 {
            margin-bottom: 10px;
            font-size: clamp(22px, 4vw, 30px);
            font-weight: 700;
            line-height: 1.35;
            color: var(--brand-text-dark);
        }

        .section-header p {
            font-size: 15px;
            max-width: 720px;
            color: rgba(28, 26, 23, 0.7);
            margin-bottom: 0;
            line-height: 1.9;
        }

        .bg-deep-green .section-header h2 {
            color: var(--brand-warm-white);
        }

        .bg-deep-green .section-header p {
            color: rgba(248, 245, 239, 0.78);
        }

        .bg-warm-beige {
            background-color: var(--brand-warm-beige);
        }

        .bg-deep-green {
            background-color: var(--brand-deep-green);
        }

        .bg-white {
            background-color: #FFFFFF;
        }

        /* Toolbar Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 90;
            background-color: var(--brand-deep-green);
            border-bottom: 1px solid rgba(0, 0, 0, 0.3);
            height: 68px;
            display: flex;
            align-items: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
        }

        .site-header .container-max {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            position: relative;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .nav-logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: radial-gradient(circle at 40% 35%, #F8F5EF 0%, #E8501A 45%, #8A2E0C 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .nav-logo-icon::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 8px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.85);
        }

        .nav-logo-text {
            font-size: 18px;
            font-weight: 700;
            color: var(--brand-warm-white);
            letter-spacing: 0.04em;
            white-space: nowrap;
        }

        .nav-center {
            display: flex;
            align-items: center;
            gap: 6px;
            flex: 1;
            justify-content: center;
        }

        .nav-center a {
            color: rgba(248, 245, 239, 0.85);
            font-size: 15px;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 6px;
            position: relative;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .nav-center a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--brand-orange);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.25s ease;
            border-radius: 1px;
        }

        .nav-center a:hover,
        .nav-center a:focus {
            color: var(--brand-orange);
        }

        .nav-center a:hover::after,
        .nav-center a.active::after {
            transform: scaleX(1);
        }

        .nav-center a.active {
            color: var(--brand-orange);
            font-weight: 600;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        .nav-live-indicator {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--brand-warm-white);
            font-weight: 500;
            white-space: nowrap;
        }

        .nav-live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--brand-live-green);
            box-shadow: 0 0 8px rgba(47, 191, 113, 0.6);
            animation: pulse-dot 1.8s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.3); }
        }

        .nav-bell {
            position: relative;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: transparent;
            border: none;
            cursor: pointer;
            color: rgba(248, 245, 239, 0.9);
            transition: all 0.2s ease;
        }

        .nav-bell:hover,
        .nav-bell:focus {
            color: var(--brand-orange);
            background: rgba(255, 255, 255, 0.08);
        }

        .nav-bell-badge {
            position: absolute;
            top: 4px;
            right: 2px;
            min-width: 16px;
            height: 16px;
            padding: 0 4px;
            border-radius: 8px;
            background: var(--brand-orange);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--brand-orange);
            color: #fff;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
            line-height: 1.5;
        }

        .nav-btn-primary:hover,
        .nav-btn-primary:focus {
            background: var(--brand-orange-hover);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(232, 80, 26, 0.35);
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 44px;
            height: 44px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            flex-shrink: 0;
        }

        .nav-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--brand-warm-white);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .nav-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .nav-mobile-overlay {
            display: none;
            position: fixed;
            top: 68px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 88;
        }

        .nav-mobile-overlay.active {
            display: block;
        }

        .nav-mobile-menu {
            display: none;
            position: fixed;
            top: 68px;
            left: 0;
            right: 0;
            background: var(--brand-deep-green);
            z-index: 89;
            padding: 16px 20px 24px;
            border-bottom: 2px solid rgba(232, 80, 26, 0.4);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
        }

        .nav-mobile-menu.active {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .nav-mobile-menu a {
            color: rgba(248, 245, 239, 0.9);
            font-size: 16px;
            padding: 12px 16px;
            border-radius: 8px;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-mobile-menu a:hover,
        .nav-mobile-menu a:focus {
            background: rgba(255, 255, 255, 0.08);
            color: var(--brand-orange);
        }

        .nav-mobile-menu a.active {
            background: rgba(232, 80, 26, 0.12);
            color: var(--brand-orange);
            font-weight: 600;
        }

        /* Breadcrumb */
        .breadcrumb-bar {
            background: #fff;
            border-bottom: 1px solid var(--brand-border-light);
            padding: 12px 0;
        }

        .breadcrumb {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
            font-size: 14px;
        }

        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .breadcrumb li:not(:last-child)::after {
            content: '/';
            color: rgba(28, 26, 23, 0.4);
            margin-left: 4px;
        }

        .breadcrumb a {
            color: rgba(28, 26, 23, 0.65);
            transition: color 0.2s ease;
        }

        .breadcrumb a:hover {
            color: var(--brand-orange);
        }

        .breadcrumb li:last-child {
            color: var(--brand-deep-green);
            font-weight: 600;
        }

        /* Category Hero Banner - simplified narrow banner */
        .cat-h1-banner {
            background: var(--brand-deep-green);
            padding: 40px 0 36px;
            border-bottom: 3px solid rgba(232, 80, 26, 0.4);
            position: relative;
            overflow: hidden;
        }

        .cat-h1-banner::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -40px;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            border: 2px solid rgba(248, 245, 239, 0.08);
            pointer-events: none;
        }

        .cat-h1-banner::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: 30%;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 1px solid rgba(248, 245, 239, 0.06);
            pointer-events: none;
        }

        .cat-h1-banner .container-max {
            position: relative;
            z-index: 1;
        }

        .cat-h1-banner h1 {
            font-size: clamp(28px, 5vw, 36px);
            font-weight: 800;
            color: var(--brand-warm-white);
            margin-bottom: 8px;
            line-height: 1.25;
            letter-spacing: 0.02em;
        }

        .cat-h1-banner .cat-subtitle {
            font-size: 16px;
            color: rgba(248, 245, 239, 0.8);
            max-width: 700px;
            line-height: 1.8;
            margin-bottom: 0;
        }

        /* Data Table List Section */
        .data-list-section .data-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: #fff;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            padding: 16px 20px;
            margin-bottom: 12px;
            transition: all 0.25s ease;
            border-left: 3px solid transparent;
        }

        .data-list-section .data-item:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-3px);
            border-left-color: var(--brand-orange);
        }

        .data-item-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(23, 59, 42, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-deep-green);
            font-size: 18px;
            flex-shrink: 0;
        }

        .data-item-main {
            flex: 1;
            min-width: 0;
        }

        .data-item-match {
            font-weight: 700;
            font-size: 16px;
            color: var(--brand-text-dark);
            margin-bottom: 3px;
        }

        .data-item-league {
            font-size: 12px;
            color: rgba(28, 26, 23, 0.55);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .data-item-league .tag {
            display: inline-flex;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            background: var(--brand-warm-beige);
            color: var(--brand-deep-green);
        }

        .data-item-stats {
            display: flex;
            gap: 20px;
            flex-shrink: 0;
            align-items: center;
        }

        .data-stat {
            text-align: center;
            min-width: 60px;
        }

        .data-stat-value {
            font-size: 18px;
            font-weight: 700;
            color: var(--brand-deep-green);
            line-height: 1.3;
        }

        .data-stat-label {
            font-size: 11px;
            color: rgba(28, 26, 23, 0.55);
        }

        .data-item-status {
            display: inline-flex;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
        }

        .status-live {
            background: rgba(47, 191, 113, 0.15);
            color: #1E8A4C;
        }

        .status-finished {
            background: rgba(122, 106, 143, 0.15);
            color: var(--brand-replay-purple);
        }

        .status-upcoming {
            background: rgba(108, 122, 137, 0.15);
            color: var(--brand-pre-blue);
        }

        /* Ranking Section */
        .ranking-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .ranking-card {
            background: #fff;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            padding: 24px;
            transition: all 0.25s ease;
        }

        .ranking-card:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-4px);
        }

        .ranking-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--brand-deep-green);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ranking-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .ranking-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px solid var(--brand-border-light);
            font-size: 14px;
        }

        .ranking-list li:last-child {
            border-bottom: none;
        }

        .rank-num {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--brand-warm-beige);
            color: var(--brand-deep-green);
            font-weight: 700;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .rank-num.highlight {
            background: var(--brand-orange);
            color: #fff;
        }

        .rank-name {
            flex: 1;
            font-weight: 500;
            color: var(--brand-text-dark);
        }

        .rank-value {
            font-weight: 700;
            color: var(--brand-deep-green);
            font-size: 14px;
        }

        /* Archive Section */
        .archive-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .archive-item {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(248, 245, 239, 0.12);
            border-radius: var(--brand-radius-card);
            padding: 18px 16px;
            text-align: center;
            transition: all 0.25s ease;
        }

        .archive-item:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(232, 80, 26, 0.4);
            transform: translateY(-3px);
        }

        .archive-item .archive-month {
            font-size: 15px;
            font-weight: 700;
            color: var(--brand-warm-white);
            margin-bottom: 6px;
        }

        .archive-item .archive-count {
            font-size: 13px;
            color: rgba(248, 245, 239, 0.65);
        }

        /* Data Insight Section */
        .insight-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .insight-card {
            display: flex;
            gap: 16px;
            background: #fff;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            overflow: hidden;
            transition: all 0.25s ease;
        }

        .insight-card:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-4px);
        }

        .insight-card-img {
            width: 180px;
            flex-shrink: 0;
            min-height: 100%;
        }

        .insight-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .insight-card-body {
            padding: 18px 20px;
            flex: 1;
        }

        .insight-card-body h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--brand-text-dark);
            margin-bottom: 6px;
            line-height: 1.5;
        }

        .insight-card-body p {
            font-size: 13px;
            color: rgba(28, 26, 23, 0.6);
            margin-bottom: 8px;
            line-height: 1.7;
        }

        .insight-meta {
            font-size: 12px;
            color: var(--brand-pre-blue);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Subscription CTA Section */
        .cta-subscribe {
            background: linear-gradient(135deg, var(--brand-deep-green) 0%, #1E4F37 100%);
            border-radius: var(--brand-radius-card);
            padding: 36px 32px;
            display: flex;
            align-items: center;
            gap: 28px;
            box-shadow: 0 8px 32px rgba(23, 59, 42, 0.3);
        }

        .cta-subscribe-text {
            flex: 1;
        }

        .cta-subscribe-text h2 {
            color: var(--brand-warm-white);
            font-size: clamp(20px, 3vw, 26px);
            font-weight: 700;
            margin-bottom: 8px;
        }

        .cta-subscribe-text p {
            color: rgba(248, 245, 239, 0.75);
            font-size: 14px;
            margin-bottom: 0;
        }

        .cta-subscribe-form {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
        }

        .cta-subscribe-form input {
            padding: 11px 16px;
            border: 1px solid rgba(248, 245, 239, 0.25);
            border-radius: var(--brand-radius-btn);
            background: rgba(255, 255, 255, 0.1);
            color: var(--brand-warm-white);
            font-size: 14px;
            min-width: 220px;
            font-family: var(--font-family-sc);
            transition: all 0.2s ease;
        }

        .cta-subscribe-form input::placeholder {
            color: rgba(248, 245, 239, 0.5);
        }

        .cta-subscribe-form input:focus {
            border-color: var(--brand-orange);
            background: rgba(255, 255, 255, 0.16);
            outline: none;
        }

        .cta-subscribe-form button {
            padding: 11px 24px;
            background: var(--brand-orange);
            color: #fff;
            border: none;
            border-radius: var(--brand-radius-btn);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
            white-space: nowrap;
            font-family: var(--font-family-sc);
        }

        .cta-subscribe-form button:hover,
        .cta-subscribe-form button:focus {
            background: var(--brand-orange-hover);
            transform: translateY(-2px);
            box-shadow: 0 4px 14px rgba(232, 80, 26, 0.4);
        }

        /* Data Specification Section */
        .spec-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .spec-card {
            background: #fff;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            padding: 22px;
            border-top: 3px solid var(--brand-deep-green);
            transition: all 0.25s ease;
        }

        .spec-card:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-3px);
        }

        .spec-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--brand-deep-green);
            margin-bottom: 10px;
        }

        .spec-card p {
            font-size: 14px;
            color: rgba(28, 26, 23, 0.7);
            margin-bottom: 0;
            line-height: 1.85;
        }

        /* Button styles */
        .btn-outline-green {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border: 1.5px solid var(--brand-deep-green);
            border-radius: var(--brand-radius-btn);
            background: transparent;
            color: var(--brand-deep-green);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
            font-family: var(--font-family-sc);
            line-height: 1.5;
        }

        .btn-outline-green:hover,
        .btn-outline-green:focus {
            background: var(--brand-deep-green);
            color: var(--brand-warm-white);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(23, 59, 42, 0.25);
        }

        .btn-orange {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 22px;
            background: var(--brand-orange);
            color: #fff;
            border: none;
            border-radius: var(--brand-radius-btn);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
            font-family: var(--font-family-sc);
            line-height: 1.5;
        }

        .btn-orange:hover,
        .btn-orange:focus {
            background: var(--brand-orange-hover);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 14px rgba(232, 80, 26, 0.35);
        }

        /* Footer */
        .site-footer {
            background: var(--brand-deep-green);
            color: rgba(248, 245, 239, 0.75);
            padding: 48px 0 0;
            border-top: 1px solid rgba(0, 0, 0, 0.3);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
            gap: 32px;
            margin-bottom: 28px;
        }

        .footer-brand p {
            font-size: 13px;
            line-height: 1.8;
            color: rgba(248, 245, 239, 0.65);
            margin: 8px 0 0;
        }

        .footer-col h4 {
            color: var(--brand-warm-white);
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .footer-col a {
            display: block;
            color: rgba(248, 245, 239, 0.7);
            font-size: 14px;
            padding: 4px 0;
            transition: all 0.2s ease;
        }

        .footer-col a:hover,
        .footer-col a:focus {
            color: var(--brand-orange);
            padding-left: 4px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(248, 245, 239, 0.1);
            padding: 16px 0;
            text-align: center;
            font-size: 12px;
            color: rgba(248, 245, 239, 0.5);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-center {
                gap: 2px;
            }

            .nav-center a {
                padding: 8px 10px;
                font-size: 14px;
            }

            .ranking-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .archive-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .spec-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .insight-grid {
                grid-template-columns: 1fr 1fr;
            }

            .cta-subscribe {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
            }

            .cta-subscribe-form {
                justify-content: center;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-padding-desktop: 40px 0;
            }

            .site-header {
                height: 56px;
            }

            .site-header .container-max {
                padding: 0 16px;
            }

            .nav-logo-icon {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }

            .nav-logo-text {
                font-size: 16px;
            }

            .nav-center {
                display: none;
            }

            .nav-right .nav-btn-primary {
                display: none;
            }

            .nav-toggle {
                display: flex;
            }

            .nav-live-indicator span.nav-live-text {
                display: none;
            }

            .nav-right {
                gap: 6px;
            }

            .nav-bell {
                width: 36px;
                height: 36px;
            }

            .nav-mobile-menu.active {
                display: flex;
            }

            .cat-h1-banner {
                padding: 28px 0 24px;
            }

            .data-list-section .data-item {
                flex-wrap: wrap;
                padding: 14px;
                gap: 10px;
            }

            .data-item-stats {
                width: 100%;
                justify-content: space-around;
                gap: 10px;
            }

            .data-stat-value {
                font-size: 15px;
            }

            .ranking-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .archive-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .insight-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .insight-card {
                flex-direction: column;
            }

            .insight-card-img {
                width: 100%;
                height: 160px;
            }

            .cta-subscribe {
                padding: 24px 18px;
            }

            .cta-subscribe-form {
                flex-direction: column;
            }

            .cta-subscribe-form input {
                min-width: 100%;
            }

            .spec-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-brand p {
                font-size: 12px;
            }
        }

        @media (max-width: 520px) {
            .cat-h1-banner h1 {
                font-size: 24px;
            }

            .data-item-match {
                font-size: 14px;
            }

            .data-item-stats {
                flex-wrap: wrap;
                gap: 12px;
                justify-content: flex-start;
            }

            .data-stat {
                min-width: auto;
            }

            .ranking-card {
                padding: 16px;
            }

            .archive-grid {
                grid-template-columns: 1fr 1fr;
            }

            .archive-item {
                padding: 12px 10px;
            }

            .spec-card {
                padding: 16px;
            }
        }

/* roulang page: category5 */
:root {
            --brand-deep-green: #173B2A;
            --brand-deep-green-hover: #1E4F37;
            --brand-warm-beige: #F3EEE3;
            --brand-warm-white: #F8F5EF;
            --brand-orange: #E8501A;
            --brand-orange-hover: #C23F0E;
            --brand-text-dark: #1C1A17;
            --brand-text-light: #F8F5EF;
            --brand-live-green: #2FBF71;
            --brand-pre-blue: #6C7A89;
            --brand-replay-purple: #7A6A8F;
            --brand-border-light: rgba(23, 59, 42, 0.12);
            --brand-border-mid: rgba(23, 59, 42, 0.24);
            --brand-card-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
            --brand-card-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.06);
            --brand-radius-card: 12px;
            --brand-radius-btn: 8px;
            --brand-radius-tag: 6px;
            --font-family-sc: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --section-padding-desktop: 72px 0;
            --section-padding-mobile: 40px 0;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-family-sc);
            font-size: 16px;
            font-weight: 400;
            line-height: 1.9;
            color: var(--brand-text-dark);
            background-color: var(--brand-warm-white);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--brand-deep-green);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        a:hover,
        a:focus {
            color: var(--brand-orange);
            text-decoration: none;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--brand-orange);
            outline-offset: 2px;
        }

        .section-padding {
            padding: var(--section-padding-desktop);
        }

        .section-padding-tight {
            padding: 48px 0;
        }

        .container-max {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        .section-header {
            margin-bottom: 36px;
        }

        .section-header h2 {
            margin-bottom: 10px;
            font-size: clamp(22px, 4vw, 30px);
            font-weight: 700;
            line-height: 1.35;
            color: var(--brand-text-dark);
        }

        .section-header p {
            font-size: 15px;
            max-width: 720px;
            color: rgba(28, 26, 23, 0.7);
            margin-bottom: 0;
        }

        .bg-deep-green .section-header h2 {
            color: var(--brand-text-light);
        }

        .bg-deep-green .section-header p {
            color: rgba(248, 245, 239, 0.78);
        }

        .bg-warm-beige {
            background-color: var(--brand-warm-beige);
        }

        .bg-deep-green {
            background-color: var(--brand-deep-green);
            color: var(--brand-text-light);
        }

        .bg-white-pure {
            background-color: #ffffff;
        }

        /* Toolbar Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 90;
            background-color: var(--brand-deep-green);
            border-bottom: 1px solid rgba(0, 0, 0, 0.3);
            height: 68px;
            display: flex;
            align-items: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
        }

        .site-header .container-max {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            color: var(--brand-warm-white);
        }

        .nav-logo:hover {
            color: var(--brand-orange);
        }

        .nav-logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: radial-gradient(circle at 40% 35%, #F8F5EF 0%, #E8501A 45%, #8A2E0C 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
        }

        .nav-logo-icon::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 8px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.85);
        }

        .nav-logo-text {
            font-size: 18px;
            font-weight: 700;
            color: var(--brand-warm-white);
            letter-spacing: 0.04em;
            white-space: nowrap;
        }

        .nav-center {
            display: flex;
            align-items: center;
            gap: 6px;
            flex: 1;
            justify-content: center;
        }

        .nav-center a {
            color: rgba(248, 245, 239, 0.85);
            font-size: 15px;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 6px;
            position: relative;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .nav-center a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 12px;
            right: 12px;
            height: 2px;
            background: var(--brand-orange);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.25s ease;
            border-radius: 1px;
        }

        .nav-center a:hover,
        .nav-center a:focus {
            color: var(--brand-orange);
        }

        .nav-center a:hover::after,
        .nav-center a.active::after {
            transform: scaleX(1);
        }

        .nav-center a.active {
            color: var(--brand-orange);
            font-weight: 600;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        .nav-live-indicator {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--brand-warm-white);
            font-size: 12px;
            font-weight: 500;
        }

        .nav-live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--brand-live-green);
            box-shadow: 0 0 0 4px rgba(47, 191, 113, 0.2);
            animation: pulse-dot 1.8s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { box-shadow: 0 0 0 4px rgba(47, 191, 113, 0.2); }
            50% { box-shadow: 0 0 0 7px rgba(47, 191, 113, 0.1); }
        }

        .nav-notification {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            color: var(--brand-warm-white);
            background: rgba(248, 245, 239, 0.08);
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
        }

        .nav-notification:hover {
            background: rgba(232, 80, 26, 0.18);
            color: var(--brand-orange);
        }

        .nav-notification i {
            font-size: 16px;
        }

        .nav-notification-badge {
            position: absolute;
            top: -2px;
            right: -2px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: var(--brand-orange);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--brand-deep-green);
        }

        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background-color: var(--brand-orange);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: var(--brand-radius-btn);
            transition: all 0.25s ease;
            border: none;
            white-space: nowrap;
            cursor: pointer;
        }

        .nav-cta-btn:hover {
            background-color: var(--brand-orange-hover);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 14px rgba(232, 80, 26, 0.35);
        }

        .nav-burger {
            display: none;
            background: none;
            border: none;
            color: var(--brand-warm-white);
            font-size: 22px;
            cursor: pointer;
            padding: 8px;
            border-radius: 6px;
            transition: background 0.2s ease;
        }

        .nav-burger:hover {
            background: rgba(248, 245, 239, 0.12);
        }

        .mobile-nav-drawer {
            display: none;
            position: fixed;
            top: 68px;
            left: 0;
            right: 0;
            background-color: var(--brand-deep-green);
            z-index: 89;
            padding: 16px 20px 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.3);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
        }

        .mobile-nav-drawer a {
            display: block;
            color: rgba(248, 245, 239, 0.88);
            font-size: 16px;
            font-weight: 500;
            padding: 12px 8px;
            border-bottom: 1px solid rgba(248, 245, 239, 0.08);
            transition: all 0.2s ease;
        }

        .mobile-nav-drawer a:hover,
        .mobile-nav-drawer a.active {
            color: var(--brand-orange);
            padding-left: 16px;
        }

        .mobile-nav-drawer a:last-child {
            border-bottom: none;
        }

        /* Breadcrumb */
        .breadcrumb {
            background-color: var(--brand-deep-green);
            padding: 14px 0 0;
            font-size: 13px;
            color: rgba(248, 245, 239, 0.7);
        }

        .breadcrumb .container-max {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
        }

        .breadcrumb a {
            color: rgba(248, 245, 239, 0.7);
        }

        .breadcrumb a:hover {
            color: var(--brand-orange);
        }

        .breadcrumb span {
            color: rgba(248, 245, 239, 0.5);
        }

        .breadcrumb .current {
            color: var(--brand-orange);
        }

        /* Category H1 banner - simplified version */
        .category-hero {
            background-color: var(--brand-deep-green);
            background-image: linear-gradient(135deg, rgba(23, 59, 42, 0.95) 0%, rgba(23, 59, 42, 0.88) 60%, rgba(23, 59, 42, 0.92) 100%);
            padding: 56px 0 64px;
            position: relative;
            overflow: hidden;
        }

        .category-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            border: 2px solid rgba(248, 245, 239, 0.08);
            pointer-events: none;
        }

        .category-hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -5%;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            border: 1px solid rgba(232, 80, 26, 0.15);
            pointer-events: none;
        }

        .category-hero .container-max {
            position: relative;
            z-index: 1;
        }

        .category-hero h1 {
            font-size: clamp(28px, 4.5vw, 38px);
            font-weight: 800;
            color: var(--brand-warm-white);
            margin-bottom: 14px;
            line-height: 1.3;
            letter-spacing: 0.02em;
        }

        .category-hero p {
            font-size: 16px;
            color: rgba(248, 245, 239, 0.82);
            max-width: 680px;
            margin-bottom: 0;
            line-height: 1.9;
        }

        .category-hero .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 20px;
        }

        .category-hero .hero-tag {
            font-size: 12px;
            font-weight: 500;
            color: var(--brand-warm-white);
            background: rgba(248, 245, 239, 0.12);
            padding: 4px 12px;
            border-radius: 20px;
            border: 1px solid rgba(248, 245, 239, 0.16);
            letter-spacing: 0.04em;
        }

        /* Guide list */
        .guide-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 24px;
        }

        .guide-card {
            background: #ffffff;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            overflow: hidden;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid var(--brand-border-light);
        }

        .guide-card:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-4px);
            border-color: rgba(232, 80, 26, 0.25);
        }

        .guide-card-thumb {
            position: relative;
            height: 180px;
            overflow: hidden;
            background-color: var(--brand-warm-beige);
        }

        .guide-card-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .guide-card:hover .guide-card-thumb img {
            transform: scale(1.05);
        }

        .guide-card-category {
            position: absolute;
            top: 12px;
            left: 12px;
            font-size: 12px;
            font-weight: 600;
            color: #fff;
            background-color: var(--brand-orange);
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.04em;
        }

        .guide-card-body {
            padding: 20px 22px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .guide-card-body h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--brand-text-dark);
            margin-bottom: 8px;
            line-height: 1.5;
        }

        .guide-card-body p {
            font-size: 14px;
            color: rgba(28, 26, 23, 0.68);
            line-height: 1.8;
            margin-bottom: 14px;
            flex: 1;
        }

        .guide-card-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: rgba(28, 26, 23, 0.5);
            padding-top: 12px;
            border-top: 1px solid var(--brand-border-light);
        }

        .guide-card-meta span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        /* Device section */
        .device-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .device-card {
            background: #ffffff;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            padding: 28px 22px;
            text-align: center;
            border: 1px solid var(--brand-border-light);
            transition: all 0.3s ease;
        }

        .device-card:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-4px);
            border-color: rgba(232, 80, 26, 0.25);
        }

        .device-card-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(23, 59, 42, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 24px;
            color: var(--brand-deep-green);
            transition: all 0.3s ease;
        }

        .device-card:hover .device-card-icon {
            background: var(--brand-deep-green);
            color: var(--brand-warm-white);
        }

        .device-card h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--brand-text-dark);
            margin-bottom: 8px;
        }

        .device-card p {
            font-size: 13px;
            color: rgba(28, 26, 23, 0.62);
            line-height: 1.8;
            margin-bottom: 0;
        }

        /* Network optimization */
        .network-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .network-tips {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .network-tip {
            background: #ffffff;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            padding: 20px 22px;
            display: flex;
            gap: 14px;
            align-items: flex-start;
            border-left: 3px solid var(--brand-deep-green);
            transition: all 0.3s ease;
        }

        .network-tip:hover {
            box-shadow: var(--brand-card-shadow-hover);
            border-left-color: var(--brand-orange);
            transform: translateX(4px);
        }

        .network-tip-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(23, 59, 42, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--brand-deep-green);
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .network-tip:hover .network-tip-icon {
            background: var(--brand-orange);
            color: #fff;
        }

        .network-tip h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--brand-text-dark);
            margin-bottom: 4px;
        }

        .network-tip p {
            font-size: 14px;
            color: rgba(28, 26, 23, 0.65);
            margin-bottom: 0;
            line-height: 1.8;
        }

        .network-image {
            border-radius: var(--brand-radius-card);
            overflow: hidden;
            box-shadow: var(--brand-card-shadow-hover);
            min-height: 320px;
            background-color: var(--brand-warm-beige);
        }

        .network-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 320px;
        }

        /* FAQ */
        .faq-list {
            max-width: 860px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(248, 245, 239, 0.06);
            border: 1px solid rgba(248, 245, 239, 0.12);
            border-radius: var(--brand-radius-card);
            margin-bottom: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(232, 80, 26, 0.35);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 18px 22px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            color: var(--brand-warm-white);
            font-size: 16px;
            font-weight: 600;
            font-family: var(--font-family-sc);
            text-align: left;
            transition: all 0.2s ease;
        }

        .faq-question:hover {
            color: var(--brand-orange);
        }

        .faq-question-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(248, 245, 239, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-question-icon {
            background: var(--brand-orange);
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.45s ease;
        }

        .faq-answer-inner {
            padding: 0 22px 20px;
            color: rgba(248, 245, 239, 0.82);
            font-size: 14px;
            line-height: 1.9;
        }

        .faq-item.active .faq-answer {
            max-height: 260px;
        }

        /* Support section */
        .support-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .support-card {
            background: #ffffff;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            padding: 28px 22px;
            text-align: center;
            border: 1px solid var(--brand-border-light);
            transition: all 0.3s ease;
        }

        .support-card:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-4px);
        }

        .support-card-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(23, 59, 42, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            font-size: 22px;
            color: var(--brand-deep-green);
        }

        .support-card h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--brand-text-dark);
            margin-bottom: 8px;
        }

        .support-card p {
            font-size: 13px;
            color: rgba(28, 26, 23, 0.62);
            line-height: 1.8;
            margin-bottom: 14px;
        }

        .support-card a {
            font-size: 14px;
            font-weight: 600;
            color: var(--brand-orange);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s ease;
        }

        .support-card a:hover {
            color: var(--brand-orange-hover);
            gap: 10px;
        }

        /* Changelog */
        .changelog-list {
            max-width: 760px;
            margin: 0 auto;
            position: relative;
        }

        .changelog-list::before {
            content: '';
            position: absolute;
            left: 16px;
            top: 8px;
            bottom: 8px;
            width: 2px;
            background: rgba(23, 59, 42, 0.15);
            border-radius: 1px;
        }

        .changelog-item {
            position: relative;
            padding-left: 48px;
            margin-bottom: 28px;
        }

        .changelog-item:last-child {
            margin-bottom: 0;
        }

        .changelog-dot {
            position: absolute;
            left: 8px;
            top: 6px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--brand-orange);
            border: 3px solid var(--brand-warm-white);
            box-shadow: 0 0 0 3px rgba(232, 80, 26, 0.25);
        }

        .changelog-date {
            font-size: 13px;
            font-weight: 600;
            color: var(--brand-orange);
            margin-bottom: 4px;
        }

        .changelog-item h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--brand-text-dark);
            margin-bottom: 6px;
        }

        .changelog-item p {
            font-size: 14px;
            color: rgba(28, 26, 23, 0.65);
            line-height: 1.85;
            margin-bottom: 0;
        }

        /* Footer */
        .site-footer {
            background-color: var(--brand-deep-green);
            color: rgba(248, 245, 239, 0.78);
            padding: 56px 0 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
            gap: 32px;
            margin-bottom: 40px;
        }

        .footer-brand .nav-logo {
            margin-bottom: 12px;
        }

        .footer-brand .nav-logo-icon {
            width: 32px;
            height: 32px;
            font-size: 14px;
        }

        .footer-brand .nav-logo-text {
            font-size: 16px;
        }

        .footer-brand p {
            font-size: 13px;
            line-height: 1.85;
            color: rgba(248, 245, 239, 0.68);
            margin-bottom: 0;
            max-width: 320px;
        }

        .footer-col h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--brand-warm-white);
            margin-bottom: 14px;
            letter-spacing: 0.04em;
        }

        .footer-col a {
            display: block;
            font-size: 13px;
            color: rgba(248, 245, 239, 0.68);
            padding: 5px 0;
            transition: all 0.2s ease;
        }

        .footer-col a:hover {
            color: var(--brand-orange);
            padding-left: 6px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(248, 245, 239, 0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 12px;
            color: rgba(248, 245, 239, 0.5);
        }

        /* Buttons */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--brand-orange);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            padding: 12px 24px;
            border-radius: var(--brand-radius-btn);
            border: none;
            transition: all 0.25s ease;
            cursor: pointer;
            font-family: var(--font-family-sc);
        }

        .btn-primary:hover {
            background-color: var(--brand-orange-hover);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 14px rgba(232, 80, 26, 0.35);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--brand-deep-green);
            font-size: 14px;
            font-weight: 600;
            padding: 12px 24px;
            border-radius: var(--brand-radius-btn);
            border: 2px solid var(--brand-deep-green);
            transition: all 0.25s ease;
            cursor: pointer;
            font-family: var(--font-family-sc);
        }

        .btn-secondary:hover {
            background-color: var(--brand-deep-green);
            color: var(--brand-warm-white);
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .device-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .network-layout {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .support-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 28px;
            }
        }

        @media (max-width: 768px) {
            .nav-center {
                display: none;
            }

            .nav-right .nav-live-indicator span {
                display: none;
            }

            .nav-burger {
                display: block;
            }

            .mobile-nav-drawer.open {
                display: block;
            }

            .section-padding {
                padding: var(--section-padding-mobile);
            }

            .category-hero {
                padding: 40px 0 48px;
            }

            .guide-grid {
                grid-template-columns: 1fr;
            }

            .guide-card-thumb {
                height: 160px;
            }

            .support-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 520px) {
            .site-header {
                height: 58px;
            }

            .mobile-nav-drawer {
                top: 58px;
            }

            .nav-logo-text {
                font-size: 15px;
            }

            .nav-cta-btn {
                padding: 6px 12px;
                font-size: 12px;
            }

            .nav-right {
                gap: 8px;
            }

            .nav-notification {
                width: 32px;
                height: 32px;
            }

            .category-hero h1 {
                font-size: 24px;
            }

            .device-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 22px;
            }

            .changelog-item {
                padding-left: 40px;
            }
        }

/* roulang page: category6 */
:root {
            --brand-deep-green: #173B2A;
            --brand-deep-green-hover: #1E4F37;
            --brand-warm-beige: #F3EEE3;
            --brand-warm-white: #F8F5EF;
            --brand-orange: #E8501A;
            --brand-orange-hover: #C23F0E;
            --brand-text-dark: #1C1A17;
            --brand-text-light: #F8F5EF;
            --brand-live-green: #2FBF71;
            --brand-pre-blue: #6C7A89;
            --brand-replay-purple: #7A6A8F;
            --brand-border-light: rgba(23, 59, 42, 0.12);
            --brand-border-mid: rgba(23, 59, 42, 0.24);
            --brand-card-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
            --brand-card-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.06);
            --brand-radius-card: 12px;
            --brand-radius-btn: 8px;
            --brand-radius-tag: 6px;
            --font-family-sc: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --section-padding-desktop: 72px 0;
            --section-padding-mobile: 40px 0;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-family-sc);
            font-size: 16px;
            font-weight: 400;
            line-height: 1.9;
            color: var(--brand-text-dark);
            background-color: var(--brand-warm-white);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: var(--brand-deep-green);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: var(--brand-orange);
            text-decoration: none;
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--brand-orange);
            outline-offset: 2px;
        }
        .section-padding {
            padding: var(--section-padding-desktop);
        }
        .section-padding-tight {
            padding: 48px 0;
        }
        .container-max {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        .section-header {
            margin-bottom: 36px;
        }
        .section-header h2 {
            margin-bottom: 10px;
            font-size: clamp(22px, 4vw, 30px);
            font-weight: 700;
            color: var(--brand-text-dark);
        }
        .section-header p {
            font-size: 15px;
            max-width: 720px;
            color: rgba(28, 26, 23, 0.7);
            margin-bottom: 0;
        }
        .bg-deep-green .section-header h2 {
            color: var(--brand-warm-white);
        }
        .bg-deep-green .section-header p {
            color: rgba(248, 245, 239, 0.78);
        }
        .bg-deep-green {
            background-color: var(--brand-deep-green);
        }
        .bg-warm-beige {
            background-color: var(--brand-warm-beige);
        }
        .bg-white {
            background-color: #FFFFFF;
        }
        .site-header {
            position: sticky;
            top: 0;
            z-index: 90;
            background-color: var(--brand-deep-green);
            border-bottom: 1px solid rgba(0, 0, 0, 0.3);
            height: 68px;
            display: flex;
            align-items: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
        }
        .site-header .container-max {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .nav-logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: radial-gradient(circle at 40% 35%, #F8F5EF 0%, #E8501A 45%, #8A2E0C 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
        }
        .nav-logo-icon::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 8px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.85);
        }
        .nav-logo-text {
            font-size: 18px;
            font-weight: 700;
            color: var(--brand-warm-white);
            letter-spacing: 0.04em;
            white-space: nowrap;
        }
        .nav-center {
            display: flex;
            align-items: center;
            gap: 4px;
            flex: 1;
            justify-content: center;
        }
        .nav-center a {
            color: rgba(248, 245, 239, 0.85);
            font-size: 15px;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 6px;
            position: relative;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .nav-center a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 12px;
            right: 12px;
            height: 2px;
            background: var(--brand-orange);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.25s ease;
            border-radius: 1px;
        }
        .nav-center a:hover,
        .nav-center a:focus {
            color: var(--brand-orange);
        }
        .nav-center a:hover::after,
        .nav-center a.active::after {
            transform: scaleX(1);
        }
        .nav-center a.active {
            color: var(--brand-orange);
            font-weight: 600;
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .nav-live-indicator {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--brand-warm-white);
            font-size: 12px;
            font-weight: 500;
        }
        .nav-live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--brand-live-green);
            box-shadow: 0 0 6px rgba(47, 191, 113, 0.8);
            animation: pulse-dot 1.8s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.3); }
        }
        .nav-notify {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid rgba(248, 245, 239, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-warm-white);
            font-size: 16px;
            position: relative;
            transition: all 0.2s ease;
            cursor: pointer;
        }
        .nav-notify:hover {
            color: var(--brand-orange);
            border-color: var(--brand-orange);
        }
        .nav-notify-badge {
            position: absolute;
            top: -2px;
            right: -2px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--brand-orange);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--brand-deep-green);
        }
        .nav-cta-btn {
            background: var(--brand-orange);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: var(--brand-radius-btn);
            border: none;
            transition: all 0.2s ease;
            white-space: nowrap;
            cursor: pointer;
        }
        .nav-cta-btn:hover {
            background: var(--brand-orange-hover);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(232, 80, 26, 0.4);
        }
        .nav-burger {
            display: none;
            width: 44px;
            height: 44px;
            border-radius: 8px;
            border: 1px solid rgba(248, 245, 239, 0.25);
            background: transparent;
            color: var(--brand-warm-white);
            font-size: 20px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 4px;
            transition: all 0.2s ease;
        }
        .nav-burger span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--brand-warm-white);
            border-radius: 2px;
            transition: all 0.2s ease;
        }
        .nav-burger:hover {
            border-color: var(--brand-orange);
        }
        .nav-mobile-menu {
            display: none;
            position: fixed;
            top: 68px;
            left: 0;
            right: 0;
            background: var(--brand-deep-green);
            z-index: 85;
            padding: 16px 20px 24px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(248, 245, 239, 0.1);
        }
        .nav-mobile-menu.open {
            display: block;
        }
        .nav-mobile-menu a {
            display: block;
            color: rgba(248, 245, 239, 0.85);
            font-size: 16px;
            font-weight: 500;
            padding: 12px 0;
            border-bottom: 1px solid rgba(248, 245, 239, 0.08);
            transition: all 0.2s ease;
        }
        .nav-mobile-menu a:last-child {
            border-bottom: none;
        }
        .nav-mobile-menu a:hover,
        .nav-mobile-menu a.active {
            color: var(--brand-orange);
        }
        .breadcrumb-bar {
            background: rgba(23, 59, 42, 0.06);
            padding: 12px 0;
            border-bottom: 1px solid var(--brand-border-light);
        }
        .breadcrumb-bar .container-max {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(28, 26, 23, 0.6);
        }
        .breadcrumb-bar a {
            color: var(--brand-deep-green);
            font-weight: 500;
        }
        .breadcrumb-bar a:hover {
            color: var(--brand-orange);
        }
        .breadcrumb-sep {
            color: rgba(28, 26, 23, 0.35);
        }
        .breadcrumb-current {
            color: var(--brand-orange);
            font-weight: 500;
        }
        .cat-hero {
            background-color: var(--brand-deep-green);
            background-image: url('/assets/images/1f7552d090064cf8.webp');
            background-size: cover;
            background-position: center;
            position: relative;
            padding: 56px 0 48px;
        }
        .cat-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(23, 59, 42, 0.92) 0%, rgba(23, 59, 42, 0.75) 100%);
            z-index: 1;
        }
        .cat-hero .container-max {
            position: relative;
            z-index: 2;
        }
        .cat-hero h1 {
            font-size: clamp(26px, 5vw, 38px);
            font-weight: 800;
            color: var(--brand-warm-white);
            margin-bottom: 10px;
            line-height: 1.3;
        }
        .cat-hero p {
            font-size: 16px;
            color: rgba(248, 245, 239, 0.82);
            max-width: 720px;
            margin-bottom: 0;
            line-height: 1.8;
        }
        .cat-hero-tag {
            display: inline-block;
            background: var(--brand-orange);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 14px;
            letter-spacing: 0.06em;
        }
        .news-main-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .news-item-card {
            display: flex;
            gap: 20px;
            background: #FFFFFF;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            overflow: hidden;
            padding: 0;
            transition: all 0.28s ease;
            border: 1px solid var(--brand-border-light);
        }
        .news-item-card:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-3px);
            border-color: var(--brand-border-mid);
        }
        .news-item-thumb {
            width: 220px;
            flex-shrink: 0;
            overflow: hidden;
            position: relative;
            min-height: 160px;
        }
        .news-item-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .news-item-card:hover .news-item-thumb img {
            transform: scale(1.05);
        }
        .news-item-body {
            padding: 20px 24px 20px 0;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .news-item-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: rgba(28, 26, 23, 0.55);
            margin-bottom: 8px;
        }
        .news-item-tag {
            background: rgba(23, 59, 42, 0.08);
            color: var(--brand-deep-green);
            font-size: 11px;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 4px;
        }
        .news-item-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--brand-text-dark);
            margin-bottom: 8px;
            line-height: 1.5;
        }
        .news-item-summary {
            font-size: 14px;
            color: rgba(28, 26, 23, 0.68);
            line-height: 1.8;
            margin-bottom: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 2px solid var(--brand-deep-green);
            color: var(--brand-deep-green);
            font-size: 15px;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: var(--brand-radius-btn);
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .news-more-btn:hover {
            background: var(--brand-deep-green);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(23, 59, 42, 0.25);
        }
        .news-more-wrap {
            text-align: center;
            margin-top: 32px;
        }
        .hot-tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .hot-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(248, 245, 239, 0.08);
            border: 1px solid rgba(248, 245, 239, 0.2);
            color: var(--brand-warm-white);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 18px;
            border-radius: 30px;
            transition: all 0.25s ease;
            cursor: default;
        }
        .hot-tag:hover {
            background: var(--brand-orange);
            border-color: var(--brand-orange);
            color: #fff;
            transform: translateY(-2px);
        }
        .hot-tag i {
            font-size: 12px;
            opacity: 0.8;
        }
        .topic-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .topic-card {
            background: #FFFFFF;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            overflow: hidden;
            transition: all 0.28s ease;
            border: 1px solid var(--brand-border-light);
        }
        .topic-card:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-4px);
            border-color: var(--brand-border-mid);
        }
        .topic-card-image {
            height: 170px;
            overflow: hidden;
            position: relative;
        }
        .topic-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .topic-card:hover .topic-card-image img {
            transform: scale(1.06);
        }
        .topic-card-body {
            padding: 20px;
        }
        .topic-card-tag {
            display: inline-block;
            background: rgba(232, 80, 26, 0.1);
            color: var(--brand-orange);
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 4px;
            margin-bottom: 10px;
        }
        .topic-card h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.5;
            color: var(--brand-text-dark);
        }
        .topic-card p {
            font-size: 14px;
            color: rgba(28, 26, 23, 0.65);
            line-height: 1.75;
            margin-bottom: 0;
        }
        .editor-pick-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
        }
        .editor-pick-card {
            background: #FFFFFF;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            overflow: hidden;
            transition: all 0.28s ease;
            border: 1px solid var(--brand-border-light);
            display: flex;
            flex-direction: column;
        }
        .editor-pick-card:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-4px);
            border-color: var(--brand-border-mid);
        }
        .editor-pick-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .editor-pick-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .editor-pick-card:hover .editor-pick-image img {
            transform: scale(1.06);
        }
        .editor-pick-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background: var(--brand-orange);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.05em;
            z-index: 2;
        }
        .editor-pick-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .editor-pick-body h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.5;
            color: var(--brand-text-dark);
        }
        .editor-pick-body p {
            font-size: 14px;
            color: rgba(28, 26, 23, 0.65);
            line-height: 1.75;
            margin-bottom: 10px;
            flex: 1;
        }
        .editor-pick-meta {
            font-size: 12px;
            color: rgba(28, 26, 23, 0.5);
            display: flex;
            gap: 12px;
            align-items: center;
        }
        .subscribe-form-wrap {
            max-width: 620px;
            margin: 0 auto;
        }
        .subscribe-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .subscribe-form input {
            flex: 1;
            min-width: 220px;
            background: rgba(248, 245, 239, 0.08);
            border: 1px solid rgba(248, 245, 239, 0.25);
            border-radius: var(--brand-radius-btn);
            padding: 14px 18px;
            color: var(--brand-warm-white);
            font-size: 15px;
            font-family: var(--font-family-sc);
            outline: none;
            transition: all 0.2s ease;
        }
        .subscribe-form input::placeholder {
            color: rgba(248, 245, 239, 0.5);
        }
        .subscribe-form input:focus {
            border-color: var(--brand-orange);
            background: rgba(248, 245, 239, 0.12);
        }
        .subscribe-btn {
            background: var(--brand-orange);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            padding: 14px 32px;
            border-radius: var(--brand-radius-btn);
            border: none;
            cursor: pointer;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .subscribe-btn:hover {
            background: var(--brand-orange-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(232, 80, 26, 0.4);
        }
        .subscribe-note {
            font-size: 13px;
            color: rgba(248, 245, 239, 0.6);
            margin-top: 14px;
            margin-bottom: 0;
            text-align: center;
        }
        .discussion-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .discussion-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            background: #FFFFFF;
            border-radius: var(--brand-radius-card);
            box-shadow: var(--brand-card-shadow);
            padding: 16px 20px;
            transition: all 0.25s ease;
            border: 1px solid var(--brand-border-light);
        }
        .discussion-item:hover {
            box-shadow: var(--brand-card-shadow-hover);
            transform: translateY(-2px);
            border-color: var(--brand-border-mid);
        }
        .discussion-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand-deep-green) 0%, #2A5C43 100%);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
            flex-shrink: 0;
        }
        .discussion-content {
            flex: 1;
        }
        .discussion-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--brand-text-dark);
            margin-bottom: 4px;
        }
        .discussion-meta {
            font-size: 12px;
            color: rgba(28, 26, 23, 0.5);
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .discussion-stats {
            font-size: 12px;
            color: rgba(28, 26, 23, 0.55);
            display: flex;
            align-items: center;
            gap: 4px;
            flex-shrink: 0;
        }
        .discuss-input-wrap {
            display: flex;
            gap: 10px;
            margin-bottom: 22px;
        }
        .discuss-input {
            flex: 1;
            border: 1px solid var(--brand-border-mid);
            border-radius: var(--brand-radius-btn);
            padding: 12px 16px;
            font-size: 14px;
            font-family: var(--font-family-sc);
            color: var(--brand-text-dark);
            background: #fff;
            outline: none;
            transition: all 0.2s ease;
        }
        .discuss-input:focus {
            border-color: var(--brand-orange);
            box-shadow: 0 0 0 3px rgba(232, 80, 26, 0.12);
        }
        .discuss-submit-btn {
            background: var(--brand-deep-green);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            padding: 12px 22px;
            border-radius: var(--brand-radius-btn);
            border: none;
            cursor: pointer;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .discuss-submit-btn:hover {
            background: var(--brand-deep-green-hover);
            transform: translateY(-1px);
        }
        .site-footer {
            background-color: var(--brand-deep-green);
            color: rgba(248, 245, 239, 0.78);
            padding: 56px 0 24px;
            margin-top: 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 36px;
            margin-bottom: 32px;
        }
        .footer-brand p {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(248, 245, 239, 0.68);
            margin-top: 14px;
            margin-bottom: 0;
            max-width: 320px;
        }
        .footer-col h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--brand-warm-white);
            margin-bottom: 16px;
        }
        .footer-col a {
            display: block;
            color: rgba(248, 245, 239, 0.68);
            font-size: 14px;
            padding: 4px 0;
            transition: all 0.2s ease;
        }
        .footer-col a:hover {
            color: var(--brand-orange);
            transform: translateX(3px);
        }
        .footer-bottom {
            border-top: 1px solid rgba(248, 245, 239, 0.1);
            padding-top: 18px;
            text-align: center;
            font-size: 12px;
            color: rgba(248, 245, 239, 0.45);
        }
        @media (max-width: 1024px) {
            .nav-center {
                gap: 2px;
            }
            .nav-center a {
                padding: 8px 8px;
                font-size: 14px;
            }
            .nav-right {
                gap: 8px;
            }
            .nav-live-indicator span {
                display: none;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .news-item-thumb {
                width: 180px;
                min-height: 140px;
            }
        }
        @media (max-width: 768px) {
            .section-padding {
                padding: var(--section-padding-mobile);
            }
            .site-header {
                height: 60px;
            }
            .nav-center {
                display: none;
            }
            .nav-burger {
                display: flex;
            }
            .nav-cta-btn {
                display: none;
            }
            .nav-live-indicator {
                display: none;
            }
            .header-logo-small .nav-logo-text {
                font-size: 15px;
            }
            .cat-hero {
                padding: 40px 0 32px;
            }
            .cat-hero h1 {
                font-size: 24px;
            }
            .news-item-card {
                flex-direction: column;
            }
            .news-item-thumb {
                width: 100%;
                min-height: 180px;
            }
            .news-item-body {
                padding: 16px 18px;
            }
            .topic-card-grid,
            .editor-pick-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-brand p {
                max-width: 100%;
            }
            .subscribe-form {
                flex-direction: column;
            }
            .subscribe-btn {
                width: 100%;
            }
            .discussion-item {
                flex-wrap: wrap;
            }
            .discussion-stats {
                margin-left: 56px;
            }
        }
        @media (max-width: 520px) {
            .container-max {
                padding-left: 14px;
                padding-right: 14px;
            }
            .cat-hero h1 {
                font-size: 21px;
            }
            .cat-hero p {
                font-size: 14px;
            }
            .section-header h2 {
                font-size: 20px;
            }
            .news-item-title {
                font-size: 15px;
            }
            .news-item-summary {
                font-size: 13px;
            }
            .hot-tag {
                font-size: 12px;
                padding: 6px 14px;
            }
            .topic-card h3,
            .editor-pick-body h3 {
                font-size: 15px;
            }
            .discuss-input-wrap {
                flex-direction: column;
            }
            .discuss-submit-btn {
                width: 100%;
            }
            .discussion-avatar {
                width: 36px;
                height: 36px;
                font-size: 14px;
            }
            .discussion-stats {
                margin-left: 50px;
            }
        }
