/* roulang page: index */
:root {
            --primary: #1A1A1A;
            --accent: #C4A464;
            --accent-deep: #A88948;
            --teal: #2B7A78;
            --teal-deep: #1F5F5D;
            --bg: #FAF7F2;
            --bg-dark: #1A1A1A;
            --text: #222222;
            --text-light: #F5F0E6;
            --text-muted: #6B6B6B;
            --text-dark-muted: #A9A49A;
            --success: #3A7462;
            --warning: #D98E48;
            --error: #B84C4C;
            --border: rgba(196, 164, 100, 0.25);
            --border-dark: rgba(245, 240, 230, 0.15);
            --radius-card: 8px;
            --radius-btn: 4px;
            --radius-badge: 20px;
            --radius-panel: 6px;
            --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.12);
            --shadow-dark: 0 4px 16px rgba(0, 0, 0, 0.25);
            --font-mono: "DIN Alternate", "Roboto Mono", "SF Mono", "Courier New", monospace;
            --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            --spacing-section: 72px;
            --spacing-card: 20px;
            --header-height: 108px;
            --nav-height: 48px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.8;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: var(--text);
            text-decoration: none;
            transition: all 0.25s ease;
        }

        a:hover,
        a:focus {
            color: var(--accent);
            text-decoration: none;
        }

        a:focus,
        button:focus,
        input:focus {
            outline: 2px solid var(--teal);
            outline-offset: 2px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: var(--font-sans);
        }

        /* Foundation overrides */
        .grid-container {
            max-width: 1240px;
            padding-left: 16px;
            padding-right: 16px;
        }

        .grid-container.fluid {
            max-width: 100%;
        }

        /* Header / Nav */
        .site-header {
            background-color: var(--primary);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
        }

        .masthead {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--header-height);
            padding: 0 22px;
            border-bottom: 1px solid var(--border-dark);
        }

        .masthead-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .masthead-brand .brand-mark {
            width: 40px;
            height: 40px;
            border: 2px solid var(--accent);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(196, 164, 100, 0.12);
        }

        .masthead-brand .brand-mark i {
            font-size: 20px;
            color: var(--accent);
        }

        .masthead-brand .brand-name {
            font-size: 34px;
            font-weight: 800;
            letter-spacing: 2px;
            color: var(--accent);
            line-height: 1.1;
            white-space: nowrap;
        }

        .masthead-divider {
            width: 1px;
            height: 36px;
            background-color: var(--border-dark);
            margin: 0 8px;
            flex-shrink: 0;
        }

        .masthead-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex: 1;
            justify-content: flex-end;
            flex-wrap: wrap;
        }

        .masthead-nav a {
            color: var(--text-light);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            padding: 8px 12px;
            border-radius: 3px;
            position: relative;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .masthead-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }

        .masthead-nav a:hover,
        .masthead-nav a:focus {
            color: var(--accent);
            background-color: rgba(196, 164, 100, 0.08);
        }

        .masthead-nav a:hover::after,
        .masthead-nav a:focus::after {
            width: 70%;
        }

        .masthead-nav a.active {
            color: var(--accent);
            font-weight: 700;
        }

        .masthead-nav a.active::after {
            width: 70%;
        }

        .nav-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--border-dark);
            color: var(--text-light);
            font-size: 22px;
            padding: 6px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .nav-toggle:hover {
            background-color: rgba(196, 164, 100, 0.15);
            color: var(--accent);
        }

        /* Utility nav row */
        .utility-nav {
            background-color: var(--primary);
            padding: 6px 22px;
            border-bottom: 1px solid var(--border-dark);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .breadcrumb-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-dark-muted);
        }

        .breadcrumb-bar a {
            color: var(--text-dark-muted);
            font-size: 13px;
        }

        .breadcrumb-bar a:hover {
            color: var(--accent);
        }

        .breadcrumb-bar .sep {
            color: var(--border-dark);
        }

        .search-mini {
            display: flex;
            align-items: center;
            gap: 6px;
            background-color: rgba(245, 240, 230, 0.1);
            border: 1px solid var(--border-dark);
            border-radius: 20px;
            padding: 4px 14px;
            min-width: 180px;
        }

        .search-mini i {
            color: var(--text-dark-muted);
            font-size: 13px;
        }

        .search-mini input {
            background: transparent;
            border: none;
            color: var(--text-light);
            font-size: 13px;
            padding: 4px 0;
            width: 100%;
        }

        .search-mini input::placeholder {
            color: var(--text-dark-muted);
        }

        .search-mini input:focus {
            outline: none;
        }

        /* Mobile nav panel */
        .mobile-nav {
            display: none;
            background-color: var(--primary);
            border-top: 1px solid var(--border-dark);
            padding: 12px 22px;
            flex-direction: column;
            gap: 4px;
        }

        .mobile-nav a {
            color: var(--text-light);
            font-size: 15px;
            padding: 10px 8px;
            border-bottom: 1px solid var(--border-dark);
            letter-spacing: 0.5px;
        }

        .mobile-nav a:last-child {
            border-bottom: none;
        }

        .mobile-nav a:hover,
        .mobile-nav a.active {
            color: var(--accent);
            background-color: rgba(196, 164, 100, 0.06);
        }

        /* Hero Section */
        .hero-section {
            background-color: var(--primary);
            background-image: url('/assets/images/650aa7f897f96169.webp');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            position: relative;
            padding: 80px 0 96px;
            min-height: 620px;
            display: flex;
            align-items: center;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.55) 60%, rgba(26, 26, 26, 0.35) 100%);
        }

        .hero-section .grid-container {
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .hero-inner {
            display: flex;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
        }

        .hero-content {
            flex: 1 1 55%;
            min-width: 320px;
            max-width: 680px;
        }

        .hero-badge-row {
            display: flex;
            gap: 8px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .hero-badge {
            display: inline-block;
            padding: 6px 14px;
            border-radius: var(--radius-badge);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            background-color: rgba(196, 164, 100, 0.18);
            color: var(--accent);
            border: 1px solid var(--border);
        }

        .hero-badge .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: var(--accent);
            display: inline-block;
            margin-right: 6px;
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .hero-title {
            font-size: 46px;
            font-weight: 800;
            color: var(--text-light);
            letter-spacing: 1px;
            line-height: 1.25;
            margin-bottom: 20px;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        }

        .hero-title .highlight {
            color: var(--accent);
            font-weight: 800;
        }

        .hero-desc {
            font-size: 16px;
            color: var(--text-light);
            opacity: 0.85;
            line-height: 1.9;
            margin-bottom: 28px;
            max-width: 620px;
        }

        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 0.3px;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--accent);
            color: #1A1A1A;
        }

        .btn-primary:hover {
            background-color: var(--accent-deep);
            color: #1A1A1A;
            box-shadow: var(--shadow-hover);
            transform: translateY(-1px);
        }

        .btn-primary:active {
            transform: scale(0.98);
            box-shadow: none;
        }

        .btn-outline {
            background-color: transparent;
            color: var(--text-light);
            border: 1.5px solid var(--accent);
        }

        .btn-outline:hover {
            background-color: rgba(196, 164, 100, 0.15);
            color: var(--accent);
            border-color: var(--accent);
        }

        .btn-outline:active {
            transform: scale(0.98);
        }

        .btn-sm {
            padding: 8px 18px;
            font-size: 13px;
        }

        .btn-lg {
            padding: 14px 32px;
            font-size: 16px;
        }

        .hero-trust-row {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            align-items: center;
            font-size: 13px;
            color: var(--text-dark-muted);
            letter-spacing: 0.3px;
        }

        .hero-trust-row .trust-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .hero-trust-row .trust-item i {
            color: var(--accent);
            font-size: 14px;
        }

        .hero-side-panel {
            flex: 1 1 35%;
            min-width: 280px;
            max-width: 440px;
        }

        .score-card {
            background-color: rgba(26, 26, 26, 0.88);
            border: 1px solid var(--border-dark);
            border-radius: var(--radius-card);
            padding: 22px;
            box-shadow: var(--shadow-dark);
            backdrop-filter: blur(8px);
        }

        .score-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
            font-size: 13px;
            color: var(--text-dark-muted);
            letter-spacing: 0.5px;
        }

        .score-card-header .live-tag {
            background-color: rgba(43, 122, 120, 0.25);
            color: #7EC8C4;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
        }

        .score-matchup {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            margin-bottom: 14px;
        }

        .score-team {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            flex: 1;
        }

        .score-team .team-name {
            font-size: 14px;
            color: var(--text-light);
            font-weight: 600;
        }

        .score-team .team-score {
            font-family: var(--font-mono);
            font-size: 36px;
            font-weight: 800;
            color: var(--teal);
            line-height: 1.1;
        }

        .score-vs {
            font-size: 14px;
            color: var(--accent);
            font-weight: 700;
            letter-spacing: 1px;
        }

        .score-info {
            text-align: center;
            font-size: 13px;
            color: var(--text-dark-muted);
            padding: 8px 0;
            border-top: 1px solid var(--border-dark);
        }

        /* Countdown strip */
        .countdown-strip {
            background-color: var(--teal-deep);
            padding: 14px 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 18px;
            flex-wrap: wrap;
            color: var(--text-light);
            border-bottom: 1px solid rgba(245, 240, 230, 0.1);
        }

        .countdown-strip .cd-label {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: #D4E8E6;
        }

        .countdown-strip .cd-timer {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .countdown-strip .cd-unit {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 52px;
        }

        .countdown-strip .cd-num {
            font-family: var(--font-mono);
            font-size: 24px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.2;
        }

        .countdown-strip .cd-unit-label {
            font-size: 11px;
            color: var(--text-dark-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .countdown-strip .cd-sep {
            font-size: 22px;
            color: var(--accent);
            font-weight: 700;
        }

        /* Sections */
        .section {
            padding: var(--spacing-section) 0;
            background-color: var(--bg);
        }

        .section-alt {
            background-color: #F0EBE2;
        }

        .section-dark {
            background-color: var(--primary);
            color: var(--text-light);
        }

        .section-dark .section-title {
            color: var(--text-light);
        }

        .section-dark p,
        .section-dark .section-subtitle {
            color: var(--text-dark-muted);
        }

        .section-header {
            margin-bottom: 40px;
            max-width: 760px;
        }

        .section-header.center {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        .section-title {
            font-size: 30px;
            font-weight: 700;
            color: var(--text);
            letter-spacing: 0.5px;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .section-title .accent {
            color: var(--teal);
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 0;
        }

        /* Card base */
        .card {
            background-color: #FFFFFF;
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .card-h3 {
            font-size: 19px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 10px;
            line-height: 1.5;
        }

        .card-text {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.75;
            margin-bottom: 0;
        }

        /* Pain point cards */
        .pain-card {
            background-color: #FFFFFF;
            border-radius: var(--radius-card);
            padding: 24px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
            height: 100%;
        }

        .pain-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
        }

        .pain-card .pain-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background-color: rgba(196, 164, 100, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
        }

        .pain-card .pain-icon i {
            font-size: 18px;
            color: var(--accent);
        }

        .pain-card h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text);
        }

        .pain-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* Solution section */
        .solution-grid {
            display: flex;
            align-items: center;
            gap: 36px;
            flex-wrap: wrap;
        }

        .solution-image {
            flex: 1 1 40%;
            min-width: 280px;
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        .solution-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 320px;
            transition: transform 0.4s ease;
        }

        .solution-image:hover img {
            transform: scale(1.03);
        }

        .solution-list {
            flex: 1 1 50%;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .solution-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px 18px;
            background-color: #FFFFFF;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            border-left: 3px solid var(--teal);
            transition: all 0.3s ease;
        }

        .solution-item:hover {
            box-shadow: var(--shadow-hover);
            transform: translateX(4px);
        }

        .solution-item .si-icon {
            width: 36px;
            height: 36px;
            border-radius: 6px;
            background-color: rgba(43, 122, 120, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .solution-item .si-icon i {
            font-size: 16px;
            color: var(--teal);
        }

        .solution-item h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--text);
        }

        .solution-item p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* Steps */
        .steps-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
            max-width: 720px;
            margin: 0 auto;
        }

        .step-item {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            padding: 18px 22px;
            background-color: #FFFFFF;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
        }

        .step-item:hover {
            box-shadow: var(--shadow-hover);
        }

        .step-num {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--accent);
            color: #1A1A1A;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            flex-shrink: 0;
            font-family: var(--font-mono);
        }

        .step-content h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--text);
        }

        .step-content p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* Stats panel */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
        }

        .stat-card {
            background-color: #FFFFFF;
            border-radius: var(--radius-panel);
            padding: 20px 18px;
            text-align: center;
            box-shadow: var(--shadow-card);
            border-left: 3px solid var(--teal);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        .stat-card .stat-num {
            font-family: var(--font-mono);
            font-size: 34px;
            font-weight: 800;
            color: var(--teal);
            line-height: 1.2;
        }

        .stat-card .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            letter-spacing: 0.3px;
            margin-top: 6px;
        }

        .stat-card .stat-unit {
            font-size: 11px;
            color: var(--text-muted);
            opacity: 0.65;
        }

        /* Testimonials */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }

        .testimonial-card {
            background-color: #FFF9EE;
            border-radius: var(--radius-card);
            padding: 22px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            position: relative;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            box-shadow: var(--shadow-hover);
        }

        .testimonial-card .quote-mark {
            font-size: 48px;
            color: var(--accent);
            opacity: 0.3;
            font-family: Georgia, serif;
            line-height: 1;
            margin-bottom: 6px;
            display: block;
        }

        .testimonial-card .quote-text {
            font-size: 14px;
            color: var(--text);
            line-height: 1.75;
            margin-bottom: 12px;
        }

        .testimonial-card .quote-author {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .testimonial-card .quote-author i {
            color: var(--accent);
            font-size: 14px;
        }

        /* Audience */
        .audience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
        }

        .audience-tag-card {
            background-color: #FFFFFF;
            border-radius: var(--radius-card);
            padding: 18px;
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .audience-tag-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
        }

        .audience-tag-card .at-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: rgba(196, 164, 100, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .audience-tag-card .at-icon i {
            font-size: 15px;
            color: var(--accent);
        }

        .audience-tag-card h3 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 2px;
            color: var(--text);
        }

        .audience-tag-card p {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 0;
            line-height: 1.5;
        }

        /* News cards */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }

        .news-card {
            background-color: #FFFFFF;
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .news-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        .news-card .news-img {
            height: 180px;
            overflow: hidden;
            background-color: #e5e0d5;
        }

        .news-card .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .news-card:hover .news-img img {
            transform: scale(1.05);
        }

        .news-card .news-body {
            padding: 18px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .news-card .news-tag {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            background-color: rgba(43, 122, 120, 0.1);
            color: var(--teal);
            margin-bottom: 8px;
            align-self: flex-start;
        }

        .news-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
            line-height: 1.5;
        }

        .news-card h3 a {
            color: var(--text);
        }

        .news-card h3 a:hover {
            color: var(--accent);
        }

        .news-card .news-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
            flex: 1;
        }

        .news-card .news-date {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 10px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .news-card .news-date i {
            color: var(--accent);
            font-size: 12px;
        }

        /* Data metrics section */
        .data-metrics-section {
            background-color: var(--primary);
            padding: var(--spacing-section) 0;
            color: var(--text-light);
        }

        .data-metrics-section .section-title {
            color: var(--text-light);
        }

        .data-metrics-section .section-subtitle {
            color: var(--text-dark-muted);
        }

        .metrics-panel {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 14px;
        }

        .metric-block {
            background-color: rgba(245, 240, 230, 0.05);
            border-radius: var(--radius-panel);
            padding: 20px 16px;
            text-align: center;
            border: 1px solid var(--border-dark);
            transition: all 0.3s ease;
        }

        .metric-block:hover {
            background-color: rgba(245, 240, 230, 0.1);
            border-color: var(--accent);
        }

        .metric-block .mb-num {
            font-family: var(--font-mono);
            font-size: 30px;
            font-weight: 800;
            color: var(--accent);
            line-height: 1.2;
        }

        .metric-block .mb-label {
            font-size: 13px;
            color: var(--text-dark-muted);
            margin-top: 6px;
            letter-spacing: 0.3px;
        }

        .metric-block .mb-bar {
            width: 60%;
            height: 4px;
            border-radius: 2px;
            background-color: var(--teal);
            margin: 10px auto 0;
        }

        /* Tag cloud */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }

        .tag-chip {
            display: inline-block;
            padding: 8px 18px;
            border-radius: var(--radius-badge);
            font-size: 13px;
            font-weight: 500;
            background-color: #FFFFFF;
            border: 1px solid var(--border);
            color: var(--text);
            letter-spacing: 0.3px;
            transition: all 0.3s ease;
        }

        .tag-chip:hover {
            background-color: var(--accent);
            color: #1A1A1A;
            border-color: var(--accent);
            box-shadow: var(--shadow-hover);
        }

        /* Brand intro */
        .brand-intro {
            background-color: #FFFFFF;
            border-radius: var(--radius-card);
            padding: 32px 36px;
            box-shadow: var(--shadow-card);
            border-left: 4px solid var(--accent);
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            align-items: center;
        }

        .brand-intro .bi-text {
            flex: 1 1 60%;
            min-width: 280px;
        }

        .brand-intro .bi-text p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.9;
            margin-bottom: 12px;
        }

        .brand-intro .bi-text p:last-child {
            margin-bottom: 0;
        }

        .brand-intro .bi-image {
            flex: 1 1 30%;
            min-width: 220px;
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        .brand-intro .bi-image img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        /* FAQ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .faq-item {
            background-color: #FFFFFF;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(0, 0, 0, 0.04);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--border);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 16px 22px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            letter-spacing: 0.3px;
            user-select: none;
        }

        .faq-question .faq-toggle {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background-color: rgba(196, 164, 100, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
            font-size: 16px;
            color: var(--accent);
        }

        .faq-item.open .faq-toggle {
            background-color: var(--accent);
            color: #1A1A1A;
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
            padding: 0 22px;
        }

        .faq-item.open .faq-answer {
            max-height: 200px;
            padding: 0 22px 18px;
        }

        .faq-answer p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.75;
            margin-bottom: 0;
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--teal-deep);
            padding: 56px 0;
            color: var(--text-light);
        }

        .cta-inner {
            display: flex;
            align-items: center;
            gap: 28px;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .cta-text {
            flex: 1 1 60%;
            min-width: 280px;
        }

        .cta-text h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .cta-text p {
            font-size: 15px;
            color: rgba(245, 240, 230, 0.8);
            line-height: 1.7;
            margin-bottom: 0;
        }

        .cta-actions {
            flex: 0 0 auto;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .cta-actions .btn-primary {
            background-color: var(--accent);
            color: #1A1A1A;
        }

        .cta-actions .btn-primary:hover {
            background-color: #D4B870;
        }

        /* Footer */
        .site-footer {
            background-color: var(--primary);
            padding: 48px 0 24px;
            color: var(--text-light);
            border-top: 1px solid var(--border-dark);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
            gap: 30px;
            margin-bottom: 32px;
        }

        .footer-col h3 {
            font-size: 15px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 1px;
            margin-bottom: 14px;
        }

        .footer-col p {
            font-size: 13px;
            color: var(--text-dark-muted);
            line-height: 1.7;
            margin-bottom: 10px;
        }

        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            color: var(--text-dark-muted);
            font-size: 13px;
            transition: all 0.25s ease;
        }

        .footer-col ul li a:hover {
            color: var(--accent);
            padding-left: 4px;
        }

        .footer-brand .brand-name {
            font-size: 22px;
            font-weight: 800;
            color: var(--accent);
            letter-spacing: 1.5px;
            margin-bottom: 8px;
        }

        .footer-bottom {
            border-top: 1px solid var(--border-dark);
            padding-top: 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            flex-wrap: wrap;
            font-size: 13px;
            color: var(--text-dark-muted);
        }

        .footer-bottom .fb-links {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }

        .footer-bottom .fb-links a {
            color: var(--text-dark-muted);
            font-size: 13px;
        }

        .footer-bottom .fb-links a:hover {
            color: var(--accent);
        }

        /* Responsive */
        @media (max-width: 1023px) {
            .hero-inner {
                flex-direction: column;
                gap: 32px;
            }
            .hero-content {
                max-width: 100%;
            }
            .hero-title {
                font-size: 36px;
            }
            .hero-side-panel {
                max-width: 100%;
            }
            .solution-grid {
                flex-direction: column;
            }
            .brand-intro {
                flex-direction: column;
                padding: 24px 20px;
            }
            .brand-intro .bi-image img {
                height: 200px;
            }
            :root {
                --spacing-section: 56px;
            }
        }

        @media (max-width: 767px) {
            :root {
                --spacing-section: 40px;
                --header-height: 70px;
            }
            .masthead {
                height: var(--header-height);
                padding: 0 14px;
            }
            .masthead-brand .brand-name {
                font-size: 22px;
                letter-spacing: 1px;
            }
            .masthead-brand .brand-mark {
                width: 32px;
                height: 32px;
            }
            .masthead-brand .brand-mark i {
                font-size: 15px;
            }
            .masthead-nav {
                display: none;
            }
            .masthead-divider {
                display: none;
            }
            .nav-toggle {
                display: block;
            }
            .mobile-nav {
                display: none;
            }
            .mobile-nav.show {
                display: flex;
            }
            .utility-nav {
                padding: 4px 14px;
            }
            .breadcrumb-bar {
                font-size: 12px;
            }
            .search-mini {
                min-width: 140px;
            }
            .hero-section {
                padding: 48px 0 60px;
                min-height: auto;
            }
            .hero-title {
                font-size: 28px;
                line-height: 1.35;
            }
            .hero-desc {
                font-size: 14px;
            }
            .hero-actions {
                flex-direction: column;
                gap: 10px;
            }
            .btn {
                justify-content: center;
                padding: 10px 20px;
                font-size: 14px;
            }
            .btn-lg {
                padding: 12px 24px;
                font-size: 15px;
            }
            .score-card {
                padding: 16px;
            }
            .score-team .team-score {
                font-size: 28px;
            }
            .section-title {
                font-size: 24px;
            }
            .section-subtitle {
                font-size: 14px;
            }
            .card {
                padding: 18px;
            }
            .pain-card {
                padding: 18px;
            }
            .news-card .news-img {
                height: 150px;
            }
            .stat-card .stat-num {
                font-size: 26px;
            }
            .metric-block .mb-num {
                font-size: 24px;
            }
            .brand-intro {
                padding: 20px 16px;
                border-left-width: 3px;
            }
            .cta-inner {
                flex-direction: column;
                align-items: flex-start;
            }
            .countdown-strip {
                padding: 10px 14px;
            }
            .countdown-strip .cd-num {
                font-size: 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 520px) {
            .hero-title {
                font-size: 24px;
            }
            .hero-desc {
                font-size: 13px;
                line-height: 1.7;
            }
            .hero-badge {
                font-size: 11px;
                padding: 4px 10px;
            }
            .section-title {
                font-size: 21px;
            }
            .grid-container {
                padding-left: 12px;
                padding-right: 12px;
            }
            .masthead {
                padding: 0 10px;
            }
            .masthead-brand .brand-name {
                font-size: 18px;
            }
            .news-grid,
            .testimonial-grid,
            .audience-grid,
            .stats-grid,
            .metrics-panel {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .countdown-strip .cd-timer {
                gap: 6px;
            }
            .countdown-strip .cd-unit {
                min-width: 40px;
            }
            .countdown-strip .cd-num {
                font-size: 18px;
            }
            .countdown-strip .cd-sep {
                font-size: 18px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }

/* roulang page: category1 */
:root {
            --primary: #1A1A1A;
            --accent: #C4A464;
            --accent-deep: #A88948;
            --teal: #2B7A78;
            --teal-deep: #1F5F5D;
            --bg: #FAF7F2;
            --bg-dark: #1A1A1A;
            --text: #222222;
            --text-light: #F5F0E6;
            --text-muted: #6B6B6B;
            --text-dark-muted: #A9A49A;
            --success: #3A7462;
            --warning: #D98E48;
            --error: #B84C4C;
            --border: rgba(196, 164, 100, 0.25);
            --border-dark: rgba(245, 240, 230, 0.15);
            --radius-card: 8px;
            --radius-btn: 4px;
            --radius-badge: 20px;
            --radius-panel: 6px;
            --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.12);
            --shadow-dark: 0 4px 16px rgba(0, 0, 0, 0.25);
            --font-mono: "DIN Alternate", "Roboto Mono", "SF Mono", "Courier New", monospace;
            --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            --spacing-section: 72px;
            --spacing-card: 20px;
            --header-height: 108px;
            --nav-height: 48px;
        }
        @media (max-width: 1023px) {
            :root {
                --spacing-section: 56px;
            }
        }
        @media (max-width: 767px) {
            :root {
                --spacing-section: 40px;
                --header-height: 70px;
            }
        }
        * {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-sans);
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.8;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-size: 16px;
        }
        a {
            color: var(--text);
            text-decoration: none;
            transition: all 0.25s ease;
        }
        a:hover,
        a:focus {
            color: var(--accent);
            text-decoration: none;
        }
        a:focus,
        button:focus,
        input:focus {
            outline: 2px solid var(--teal);
            outline-offset: 2px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: var(--font-sans);
        }
        .grid-container {
            max-width: 1240px;
            padding-left: 16px;
            padding-right: 16px;
        }
        .grid-container.fluid {
            max-width: 100%;
        }

        /* Header / Nav */
        .site-header {
            background-color: var(--primary);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
        }
        .masthead-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: var(--header-height);
            padding: 14px 0;
            gap: 16px;
        }
        .masthead-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .masthead-brand .brand-mark {
            width: 40px;
            height: 40px;
            border: 2px solid var(--accent);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(196, 164, 100, 0.12);
            flex-shrink: 0;
        }
        .masthead-brand .brand-mark i {
            font-size: 20px;
            color: var(--accent);
        }
        .masthead-brand .brand-name {
            font-size: 34px;
            font-weight: 800;
            letter-spacing: 2px;
            color: var(--accent);
            line-height: 1.1;
            white-space: nowrap;
        }
        .masthead-divider {
            width: 1px;
            height: 36px;
            background-color: var(--border-dark);
            margin: 0 8px;
            flex-shrink: 0;
        }
        .masthead-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex: 1;
            justify-content: flex-end;
            flex-wrap: wrap;
        }
        .masthead-nav a {
            color: var(--text-light);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            padding: 8px 12px;
            border-radius: 3px;
            position: relative;
            transition: all 0.3s ease;
            white-space: nowrap;
            text-transform: uppercase;
        }
        .masthead-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        .masthead-nav a:hover,
        .masthead-nav a:focus {
            color: var(--accent);
            background-color: rgba(196, 164, 100, 0.08);
        }
        .masthead-nav a:hover::after,
        .masthead-nav a:focus::after {
            width: 70%;
        }
        .masthead-nav a.active {
            color: var(--accent);
            font-weight: 700;
        }
        .masthead-nav a.active::after {
            width: 70%;
        }
        .nav-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--border-dark);
            color: var(--text-light);
            font-size: 22px;
            padding: 6px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        .nav-toggle:hover {
            background-color: rgba(196, 164, 100, 0.15);
            color: var(--accent);
        }

        /* Mobile nav panel */
        .mobile-nav-panel {
            display: none;
            background-color: var(--primary);
            border-top: 1px solid var(--border-dark);
            padding: 16px 22px;
            flex-direction: column;
            gap: 4px;
        }
        .mobile-nav-panel.open {
            display: flex;
        }
        .mobile-nav-panel a {
            color: var(--text-light);
            font-size: 16px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-dark);
            letter-spacing: 1px;
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .mobile-nav-panel a:last-child {
            border-bottom: none;
        }
        .mobile-nav-panel a:hover,
        .mobile-nav-panel a.active {
            color: var(--accent);
            padding-left: 8px;
        }

        /* Breadcrumb */
        .breadcrumb-bar {
            background-color: var(--bg-dark);
            padding: 10px 0;
            border-bottom: 1px solid var(--border-dark);
        }
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-dark-muted);
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--accent);
            transition: color 0.25s ease;
        }
        .breadcrumb a:hover {
            color: #E0C288;
        }
        .breadcrumb .sep {
            color: var(--border-dark);
            font-size: 12px;
        }
        .breadcrumb .current {
            color: var(--text-light);
            font-weight: 600;
        }

        /* Section base */
        .section {
            padding: var(--spacing-section) 0;
        }
        .section-alt {
            background-color: #F2ECE4;
        }
        .section-dark {
            background-color: var(--bg-dark);
            color: var(--text-light);
        }
        .section-teal {
            background-color: var(--teal-deep);
            color: var(--text-light);
        }
        .section-title {
            font-size: 30px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
            line-height: 1.3;
            letter-spacing: 0.5px;
        }
        .section-dark .section-title,
        .section-teal .section-title {
            color: var(--text-light);
        }
        .section-subtitle {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 28px;
            line-height: 1.7;
            max-width: 720px;
        }
        .section-dark .section-subtitle,
        .section-teal .section-subtitle {
            color: var(--text-dark-muted);
        }
        .section-head {
            margin-bottom: 32px;
        }

        /* Category H1 area */
        .category-hero {
            background-color: var(--bg-dark);
            color: var(--text-light);
            padding: 48px 0 36px;
            border-bottom: 2px solid var(--accent);
        }
        .category-hero h1 {
            font-size: 44px;
            font-weight: 800;
            color: var(--text-light);
            margin: 0 0 12px;
            letter-spacing: 1px;
            line-height: 1.2;
        }
        .category-hero .hero-sub {
            font-size: 17px;
            color: var(--text-dark-muted);
            max-width: 640px;
            line-height: 1.7;
            margin: 0;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 22px;
            border-radius: var(--radius-btn);
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 0.5px;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            line-height: 1.5;
            justify-content: center;
        }
        .btn-primary {
            background-color: var(--accent);
            color: var(--text);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        }
        .btn-primary:hover,
        .btn-primary:focus {
            background-color: var(--accent-deep);
            color: var(--text);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
            transform: translateY(-1px);
        }
        .btn-outline {
            background-color: transparent;
            color: var(--accent);
            border: 1.5px solid var(--accent);
            box-shadow: none;
        }
        .btn-outline:hover,
        .btn-outline:focus {
            background-color: rgba(196, 164, 100, 0.12);
            color: var(--accent-deep);
            border-color: var(--accent-deep);
        }
        .btn-outline-light {
            background-color: transparent;
            color: var(--text-light);
            border: 1.5px solid var(--text-light);
        }
        .btn-outline-light:hover,
        .btn-outline-light:focus {
            background-color: rgba(245, 240, 230, 0.1);
            color: #FFFFFF;
            border-color: #FFFFFF;
        }
        .btn-sm {
            padding: 7px 14px;
            font-size: 14px;
        }
        .btn-lg {
            padding: 14px 30px;
            font-size: 18px;
        }

        /* Cards */
        .card {
            background-color: #FFFFFF;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: var(--spacing-card);
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
            border-color: var(--border);
        }
        .card .card-img {
            border-radius: 6px;
            overflow: hidden;
            margin-bottom: 14px;
            position: relative;
            background-color: #EDE8E0;
        }
        .card .card-img img {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .card:hover .card-img img {
            transform: scale(1.03);
        }
        .card .card-body {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .card .card-title {
            font-size: 19px;
            font-weight: 700;
            color: var(--text);
            margin: 0 0 8px;
            line-height: 1.4;
            letter-spacing: 0.3px;
        }
        .card .card-text {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0 0 12px;
            flex: 1;
        }
        .card .card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: var(--text-muted);
            margin-top: auto;
            flex-wrap: wrap;
        }
        .card .card-meta .tag {
            background-color: rgba(43, 122, 120, 0.1);
            color: var(--teal-deep);
            font-weight: 600;
            padding: 3px 10px;
            border-radius: var(--radius-badge);
            font-size: 12px;
            letter-spacing: 0.5px;
        }
        .card .card-meta .date {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        /* Article list card */
        .article-card {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .article-card .card-img {
            flex-shrink: 0;
        }

        /* Tags */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .tag-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 16px;
            border-radius: var(--radius-badge);
            background-color: #FFFFFF;
            border: 1px solid var(--border);
            color: var(--text);
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: default;
            letter-spacing: 0.3px;
        }
        .tag-badge:hover {
            background-color: rgba(196, 164, 100, 0.1);
            border-color: var(--accent);
            color: var(--accent-deep);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        .tag-badge.hot {
            background-color: rgba(184, 76, 76, 0.08);
            border-color: rgba(184, 76, 76, 0.3);
            color: #B84C4C;
        }
        .tag-badge.teal {
            background-color: rgba(43, 122, 120, 0.1);
            border-color: rgba(43, 122, 120, 0.25);
            color: var(--teal-deep);
        }

        /* Focus list */
        .focus-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .focus-list li {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 0;
            border-bottom: 1px solid rgba(196, 164, 100, 0.2);
            transition: all 0.25s ease;
        }
        .focus-list li:last-child {
            border-bottom: none;
        }
        .focus-list li:hover {
            padding-left: 8px;
            border-bottom-color: var(--accent);
        }
        .focus-list .focus-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: rgba(43, 122, 120, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--teal);
            font-size: 16px;
            flex-shrink: 0;
        }
        .focus-list .focus-info {
            flex: 1;
        }
        .focus-list .focus-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            line-height: 1.4;
        }
        .focus-list .focus-desc {
            font-size: 14px;
            color: var(--text-muted);
        }
        .focus-list .focus-score {
            font-family: var(--font-mono);
            font-size: 18px;
            font-weight: 700;
            color: var(--teal);
            white-space: nowrap;
            letter-spacing: 0.5px;
        }

        /* Data snapshot cards */
        .data-snap-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .data-snap {
            background-color: rgba(245, 240, 230, 0.08);
            border-left: 3px solid var(--accent);
            border-radius: var(--radius-panel);
            padding: 18px 20px;
            text-align: left;
            transition: all 0.3s ease;
        }
        .data-snap:hover {
            background-color: rgba(245, 240, 230, 0.15);
            border-left-color: #E0C288;
            transform: translateY(-2px);
        }
        .data-snap .snap-number {
            font-family: var(--font-mono);
            font-size: 32px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.2;
            margin-bottom: 4px;
            letter-spacing: 0.5px;
        }
        .data-snap .snap-label {
            font-size: 14px;
            color: var(--text-dark-muted);
            letter-spacing: 0.5px;
        }

        /* Subscribe CTA */
        .subscribe-box {
            background-color: #FFFFFF;
            border-radius: var(--radius-card);
            padding: 36px 32px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            max-width: 560px;
            margin: 0 auto;
        }
        .subscribe-form {
            display: flex;
            gap: 12px;
            margin-top: 16px;
            flex-wrap: wrap;
        }
        .subscribe-form input[type="email"] {
            flex: 1;
            min-width: 200px;
            padding: 12px 16px;
            border: 1.5px solid rgba(196, 164, 100, 0.3);
            border-radius: var(--radius-btn);
            font-size: 16px;
            font-family: var(--font-sans);
            transition: all 0.3s ease;
            background-color: #FDFCFA;
            color: var(--text);
        }
        .subscribe-form input[type="email"]::placeholder {
            color: #B0AAA0;
        }
        .subscribe-form input[type="email"]:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(196, 164, 100, 0.15);
            outline: none;
            background-color: #FFFFFF;
        }

        /* Deep read cards */
        .deep-read-card {
            display: flex;
            gap: 16px;
            align-items: center;
            background-color: #FFFFFF;
            border-radius: var(--radius-card);
            padding: 16px;
            border: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
            height: 100%;
        }
        .deep-read-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
            border-color: var(--border);
        }
        .deep-read-card .dr-img {
            width: 80px;
            height: 80px;
            border-radius: 6px;
            overflow: hidden;
            flex-shrink: 0;
            background-color: #EDE8E0;
        }
        .deep-read-card .dr-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .deep-read-card .dr-info {
            flex: 1;
        }
        .deep-read-card .dr-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            line-height: 1.4;
            margin-bottom: 4px;
        }
        .deep-read-card .dr-meta {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* Footer */
        .site-footer {
            background-color: var(--primary);
            color: var(--text-light);
            padding: 48px 0 28px;
            border-top: 2px solid var(--accent);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-col h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--accent);
            margin: 0 0 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .footer-col p {
            font-size: 14px;
            color: var(--text-dark-muted);
            line-height: 1.7;
            margin: 0;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            color: var(--text-dark-muted);
            font-size: 14px;
            transition: color 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .footer-col ul li a:hover,
        .footer-col ul li a:focus {
            color: var(--accent);
            padding-left: 4px;
        }
        .footer-brand .brand-name {
            font-size: 26px;
            font-weight: 800;
            letter-spacing: 2px;
            color: var(--accent);
            margin-bottom: 8px;
        }
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 1px solid var(--border-dark);
            font-size: 13px;
            color: var(--text-dark-muted);
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-bottom .fb-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .footer-bottom .fb-links a {
            color: var(--text-dark-muted);
            font-size: 13px;
            transition: color 0.25s ease;
        }
        .footer-bottom .fb-links a:hover {
            color: var(--accent);
        }

        /* Responsive */
        @media (max-width: 1023px) {
            .masthead-brand .brand-name {
                font-size: 26px;
                letter-spacing: 1px;
            }
            .masthead-nav a {
                font-size: 12px;
                padding: 6px 8px;
                letter-spacing: 0.5px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .data-snap-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 767px) {
            .masthead-row {
                min-height: 70px;
                padding: 10px 0;
            }
            .masthead-brand .brand-name {
                font-size: 20px;
            }
            .masthead-brand .brand-mark {
                width: 32px;
                height: 32px;
            }
            .masthead-brand .brand-mark i {
                font-size: 15px;
            }
            .masthead-divider {
                display: none;
            }
            .masthead-nav {
                display: none;
            }
            .nav-toggle {
                display: block;
            }
            .mobile-nav-panel {
                display: none;
            }
            .mobile-nav-panel.open {
                display: flex;
            }
            .category-hero h1 {
                font-size: 30px;
            }
            .section {
                padding: var(--spacing-section) 0;
            }
            .section-title {
                font-size: 24px;
            }
            .card .card-title {
                font-size: 17px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .data-snap-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .data-snap .snap-number {
                font-size: 24px;
            }
            .subscribe-box {
                padding: 24px 18px;
            }
            .subscribe-form {
                flex-direction: column;
            }
            .deep-read-card {
                flex-direction: row;
                align-items: flex-start;
            }
            .deep-read-card .dr-img {
                width: 60px;
                height: 60px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }
            .breadcrumb {
                font-size: 12px;
            }
        }
        @media (max-width: 519px) {
            .data-snap-grid {
                grid-template-columns: 1fr;
            }
            .tag-cloud {
                gap: 8px;
            }
            .tag-badge {
                font-size: 12px;
                padding: 5px 10px;
            }
        }

/* roulang page: category2 */
:root {
            --primary: #1A1A1A;
            --accent: #C4A464;
            --accent-deep: #A88948;
            --teal: #2B7A78;
            --teal-deep: #1F5F5D;
            --bg: #FAF7F2;
            --bg-dark: #1A1A1A;
            --text: #222222;
            --text-light: #F5F0E6;
            --text-muted: #6B6B6B;
            --text-dark-muted: #A9A49A;
            --success: #3A7462;
            --warning: #D98E48;
            --error: #B84C4C;
            --border: rgba(196, 164, 100, 0.25);
            --border-dark: rgba(245, 240, 230, 0.15);
            --radius-card: 8px;
            --radius-btn: 4px;
            --radius-badge: 20px;
            --radius-panel: 6px;
            --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.12);
            --shadow-dark: 0 4px 16px rgba(0, 0, 0, 0.25);
            --font-mono: "DIN Alternate", "Roboto Mono", "SF Mono", "Courier New", monospace;
            --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            --spacing-section: 72px;
            --spacing-card: 20px;
            --header-height: 108px;
            --nav-height: 48px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.8;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: var(--text);
            text-decoration: none;
            transition: all 0.25s ease;
        }

        a:hover,
        a:focus {
            color: var(--accent);
            text-decoration: none;
        }

        a:focus,
        button:focus,
        input:focus {
            outline: 2px solid var(--teal);
            outline-offset: 2px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: var(--font-sans);
        }

        .grid-container {
            max-width: 1240px;
            padding-left: 16px;
            padding-right: 16px;
        }

        .grid-container.fluid {
            max-width: 100%;
        }

        /* Header / Nav */
        .site-header {
            background-color: var(--primary);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
        }

        .masthead-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .masthead-brand .brand-mark {
            width: 40px;
            height: 40px;
            border: 2px solid var(--accent);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(196, 164, 100, 0.12);
        }

        .masthead-brand .brand-mark i {
            font-size: 20px;
            color: var(--accent);
        }

        .masthead-brand .brand-name {
            font-size: 34px;
            font-weight: 800;
            letter-spacing: 2px;
            color: var(--accent);
            line-height: 1.1;
            white-space: nowrap;
        }

        .masthead-divider {
            width: 1px;
            height: 36px;
            background-color: var(--border-dark);
            margin: 0 8px;
            flex-shrink: 0;
        }

        .masthead-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex: 1;
            justify-content: flex-end;
            flex-wrap: wrap;
        }

        .masthead-nav a {
            color: var(--text-light);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            padding: 8px 12px;
            border-radius: 3px;
            position: relative;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .masthead-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }

        .masthead-nav a:hover,
        .masthead-nav a:focus {
            color: var(--accent);
            background-color: rgba(196, 164, 100, 0.08);
        }

        .masthead-nav a:hover::after,
        .masthead-nav a:focus::after {
            width: 70%;
        }

        .masthead-nav a.active {
            color: var(--accent);
            font-weight: 700;
        }

        .masthead-nav a.active::after {
            width: 70%;
        }

        .nav-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--border-dark);
            color: var(--text-light);
            font-size: 22px;
            padding: 6px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .nav-toggle:hover {
            background-color: rgba(196, 164, 100, 0.15);
            color: var(--accent);
        }

        .utility-nav {
            background-color: var(--primary);
            padding: 6px 22px;
            border-bottom: 1px solid var(--border-dark);
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 40px;
        }

        .breadcrumb-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-dark-muted);
        }

        .breadcrumb-bar a {
            color: var(--text-dark-muted);
            transition: color 0.25s ease;
        }

        .breadcrumb-bar a:hover {
            color: var(--accent);
        }

        .breadcrumb-bar .crumb-sep {
            color: var(--border-dark);
        }

        .breadcrumb-bar .crumb-current {
            color: var(--accent);
            font-weight: 600;
        }

        .search-trigger {
            color: var(--text-dark-muted);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color 0.25s ease;
        }

        .search-trigger:hover {
            color: var(--accent);
        }

        /* Page Hero / H1 Zone */
        .page-hero {
            background-color: var(--primary);
            padding: 48px 0 40px;
            border-bottom: 1px solid var(--border);
            position: relative;
        }

        .page-hero .hero-content {
            max-width: 820px;
        }

        .page-hero h1 {
            font-size: 38px;
            font-weight: 800;
            color: var(--text-light);
            letter-spacing: 1px;
            margin: 0 0 12px;
            line-height: 1.3;
        }

        .page-hero .hero-sub {
            font-size: 16px;
            color: var(--text-dark-muted);
            line-height: 1.7;
            margin: 0;
            max-width: 680px;
        }

        .page-hero .hero-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 16px;
            flex-wrap: wrap;
        }

        .page-hero .hero-meta-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            padding: 4px 12px;
            border-radius: var(--radius-badge);
            background-color: rgba(196, 164, 100, 0.15);
            color: var(--accent);
            letter-spacing: 0.5px;
        }

        /* Sections */
        .content-section {
            padding: var(--spacing-section) 0;
        }

        .content-section.alt-bg {
            background-color: #f0e9df;
        }

        .content-section.dark-bg {
            background-color: var(--primary);
            color: var(--text-light);
        }

        .content-section.dark-bg h2 {
            color: var(--text-light);
        }

        .content-section.dark-bg p {
            color: var(--text-dark-muted);
        }

        .section-heading {
            margin-bottom: 32px;
        }

        .section-heading h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text);
            letter-spacing: 0.5px;
            margin: 0 0 8px;
            line-height: 1.35;
        }

        .section-heading p {
            font-size: 15px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.7;
        }

        .section-heading .section-tag {
            display: inline-block;
            font-size: 12px;
            color: var(--accent-deep);
            margin-bottom: 8px;
            letter-spacing: 1px;
            font-weight: 600;
        }

        /* Schedule Cards */
        .schedule-card {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 12px;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            flex-wrap: wrap;
        }

        .schedule-card:hover {
            box-shadow: var(--shadow-hover);
            border-left-color: var(--teal);
            transform: translateY(-1px);
        }

        .schedule-card .league-tag {
            display: inline-flex;
            align-items: center;
            font-size: 12px;
            font-weight: 700;
            color: #fff;
            background-color: var(--teal);
            padding: 3px 10px;
            border-radius: var(--radius-badge);
            white-space: nowrap;
            letter-spacing: 0.5px;
            min-width: 48px;
            justify-content: center;
        }

        .schedule-card .league-tag.lpl {
            background-color: #D94F4F;
        }

        .schedule-card .league-tag.lck {
            background-color: #4F7DD9;
        }

        .schedule-card .league-tag.lec {
            background-color: #7B4FD9;
        }

        .schedule-card .league-tag.lcs {
            background-color: #3A7462;
        }

        .schedule-card .match-info {
            flex: 1;
            min-width: 200px;
        }

        .schedule-card .team-name {
            font-size: 17px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.4;
        }

        .schedule-card .match-time {
            font-size: 13px;
            color: var(--text-muted);
            font-family: var(--font-mono);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .schedule-card .match-time i {
            font-size: 13px;
            color: var(--accent);
        }

        .schedule-card .score-display {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-mono);
            font-size: 22px;
            font-weight: 700;
            color: var(--teal);
            white-space: nowrap;
        }

        .schedule-card .score-display.pending {
            color: var(--text-muted);
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 1px;
        }

        .schedule-card .match-status {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: var(--radius-badge);
            white-space: nowrap;
        }

        .match-status.live {
            background-color: rgba(184, 76, 76, 0.15);
            color: var(--error);
        }

        .match-status.live::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: var(--error);
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.4;
                transform: scale(1.4);
            }
        }

        .match-status.finished {
            background-color: rgba(107, 107, 107, 0.12);
            color: var(--text-muted);
        }

        .match-status.upcoming {
            background-color: rgba(43, 122, 120, 0.12);
            color: var(--teal);
        }

        /* Date Filter Tabs */
        .date-filter {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }

        .date-filter .filter-tab {
            padding: 8px 18px;
            border-radius: var(--radius-badge);
            font-size: 13px;
            font-weight: 600;
            background-color: #fff;
            color: var(--text-muted);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            cursor: pointer;
            letter-spacing: 0.5px;
        }

        .date-filter .filter-tab:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .date-filter .filter-tab.active {
            background-color: var(--accent);
            color: #fff;
            border-color: var(--accent);
        }

        /* Focus Match */
        .focus-match-card {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
        }

        .focus-match-card:hover {
            box-shadow: var(--shadow-hover);
        }

        .focus-match-cover {
            position: relative;
            height: 220px;
            background-color: #e5dccd;
            overflow: hidden;
        }

        .focus-match-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .focus-match-card:hover .focus-match-cover img {
            transform: scale(1.03);
        }

        .focus-match-cover .cover-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(26, 26, 26, 0.15) 0%, rgba(26, 26, 26, 0.65) 100%);
            display: flex;
            align-items: flex-end;
            padding: 16px 20px;
        }

        .focus-match-cover .cover-league {
            font-size: 12px;
            font-weight: 700;
            color: #fff;
            background-color: var(--accent);
            padding: 3px 12px;
            border-radius: var(--radius-badge);
            letter-spacing: 1px;
        }

        .focus-match-body {
            padding: 20px 24px 24px;
        }

        .focus-match-body .fm-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 12px;
        }

        .focus-match-body .fm-team {
            font-size: 22px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.3;
        }

        .focus-match-body .fm-vs {
            font-size: 18px;
            font-weight: 700;
            color: var(--accent);
            font-family: var(--font-mono);
            letter-spacing: 1px;
            flex-shrink: 0;
        }

        .focus-match-body .fm-score {
            font-size: 42px;
            font-weight: 800;
            font-family: var(--font-mono);
            color: var(--teal);
            text-align: center;
            letter-spacing: 2px;
            margin: 8px 0;
        }

        .focus-match-body .fm-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 13px;
            color: var(--text-muted);
            font-family: var(--font-mono);
        }

        /* Head-to-Head Stats */
        .h2h-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 16px;
        }

        .h2h-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 20px;
            box-shadow: var(--shadow-card);
            text-align: center;
            transition: all 0.3s ease;
        }

        .h2h-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .h2h-card .h2h-teams {
            font-size: 15px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
            line-height: 1.4;
        }

        .h2h-card .h2h-num {
            font-size: 32px;
            font-weight: 800;
            font-family: var(--font-mono);
            color: var(--teal);
            line-height: 1.2;
        }

        .h2h-card .h2h-label {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 4px;
            letter-spacing: 0.5px;
        }

        /* Calendar Sync */
        .calendar-sync {
            background: #fff;
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            padding: 28px 32px;
            display: flex;
            align-items: center;
            gap: 32px;
            flex-wrap: wrap;
            box-shadow: var(--shadow-card);
        }

        .calendar-sync .sync-icon {
            width: 64px;
            height: 64px;
            border-radius: var(--radius-card);
            background-color: rgba(196, 164, 100, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .calendar-sync .sync-icon i {
            font-size: 28px;
            color: var(--accent);
        }

        .calendar-sync .sync-text {
            flex: 1;
            min-width: 240px;
        }

        .calendar-sync .sync-text h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin: 0 0 6px;
        }

        .calendar-sync .sync-text p {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.7;
        }

        .calendar-sync .sync-action {
            flex-shrink: 0;
        }

        /* Related News */
        .news-mini-card {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: all 0.3s ease;
            display: block;
        }

        .news-mini-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .news-mini-card .nm-cover {
            height: 150px;
            background-color: #e5dccd;
            overflow: hidden;
        }

        .news-mini-card .nm-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .news-mini-card:hover .nm-cover img {
            transform: scale(1.04);
        }

        .news-mini-card .nm-body {
            padding: 16px 18px;
        }

        .news-mini-card .nm-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.5;
            margin: 0 0 6px;
        }

        .news-mini-card .nm-meta {
            font-size: 12px;
            color: var(--text-muted);
            font-family: var(--font-mono);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--teal);
            padding: 48px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 12px;
            letter-spacing: 0.5px;
        }

        .cta-section p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
            margin: 0 0 24px;
            line-height: 1.7;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 26px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            letter-spacing: 0.5px;
            text-decoration: none;
        }

        .btn-primary {
            background-color: var(--accent);
            color: var(--primary);
        }

        .btn-primary:hover {
            background-color: var(--accent-deep);
            color: var(--primary);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .btn-outline-light {
            background-color: transparent;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .btn-outline-light:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: #fff;
            border-color: #fff;
        }

        .btn-outline {
            background-color: transparent;
            color: var(--accent);
            border: 1px solid var(--accent);
        }

        .btn-outline:hover {
            background-color: rgba(196, 164, 100, 0.1);
            color: var(--accent-deep);
            border-color: var(--accent-deep);
        }

        .btn-subscribe {
            background-color: #fff;
            color: var(--teal-deep);
            font-weight: 700;
            padding: 12px 32px;
            border-radius: var(--radius-btn);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-subscribe:hover {
            background-color: var(--text-light);
            color: var(--teal);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        /* Data Snapshot */
        .snapshot-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 16px;
        }

        .snapshot-item {
            background: #fff;
            border-radius: var(--radius-panel);
            padding: 18px 16px;
            text-align: center;
            box-shadow: var(--shadow-card);
            border-left: 3px solid var(--teal);
            transition: all 0.3s ease;
        }

        .snapshot-item:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-1px);
        }

        .snapshot-item .snap-num {
            font-size: 30px;
            font-weight: 800;
            font-family: var(--font-mono);
            color: var(--teal);
            line-height: 1.2;
        }

        .snapshot-item .snap-label {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 4px;
            letter-spacing: 0.5px;
        }

        /* Footer */
        .site-footer {
            background-color: var(--primary);
            color: var(--text-light);
            padding: 48px 0 20px;
            border-top: 1px solid var(--border-dark);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand .brand-name {
            font-size: 24px;
            font-weight: 800;
            color: var(--accent);
            letter-spacing: 2px;
            margin-bottom: 8px;
        }

        .footer-brand p {
            font-size: 13px;
            color: var(--text-dark-muted);
            line-height: 1.7;
            margin: 0;
        }

        .footer-col h3 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-light);
            letter-spacing: 1px;
            margin: 0 0 12px;
            text-transform: uppercase;
        }

        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 6px;
        }

        .footer-col ul li a {
            font-size: 13px;
            color: var(--text-dark-muted);
            transition: all 0.3s ease;
        }

        .footer-col ul li a:hover {
            color: var(--accent);
            padding-left: 4px;
        }

        .footer-bottom {
            border-top: 1px solid var(--border-dark);
            padding-top: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-bottom span {
            font-size: 13px;
            color: var(--text-dark-muted);
        }

        .fb-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .fb-links a {
            font-size: 13px;
            color: var(--text-dark-muted);
            transition: color 0.3s ease;
        }

        .fb-links a:hover {
            color: var(--accent);
        }

        /* Tags / Badges */
        .tag-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            font-weight: 600;
            padding: 3px 12px;
            border-radius: var(--radius-badge);
            background-color: rgba(43, 122, 120, 0.1);
            color: var(--teal);
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .tag-badge.gold {
            background-color: rgba(196, 164, 100, 0.15);
            color: var(--accent-deep);
        }

        .tag-badge.gray {
            background-color: rgba(107, 107, 107, 0.1);
            color: var(--text-muted);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .masthead-brand .brand-name {
                font-size: 28px;
            }
            .masthead-nav a {
                font-size: 12px;
                padding: 6px 8px;
                letter-spacing: 0.5px;
            }
            .page-hero h1 {
                font-size: 32px;
            }
            .focus-match-body .fm-teams {
                font-size: 18px;
            }
            .focus-match-body .fm-score {
                font-size: 34px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --spacing-section: 40px;
                --header-height: 70px;
            }

            .masthead-brand .brand-name {
                font-size: 22px;
                letter-spacing: 1px;
            }

            .masthead-brand .brand-mark {
                width: 32px;
                height: 32px;
            }

            .masthead-brand .brand-mark i {
                font-size: 15px;
            }

            .masthead-divider {
                height: 24px;
                margin: 0 4px;
            }

            .masthead-nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--primary);
                flex-direction: column;
                align-items: stretch;
                padding: 12px 16px;
                border-bottom: 1px solid var(--border-dark);
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
                z-index: 99;
            }

            .masthead-nav.open {
                display: flex;
            }

            .masthead-nav a {
                padding: 12px 16px;
                font-size: 14px;
                border-bottom: 1px solid var(--border-dark);
                border-radius: 0;
            }

            .masthead-nav a:last-child {
                border-bottom: none;
            }

            .masthead-nav a::after {
                display: none;
            }

            .nav-toggle {
                display: block;
            }

            .utility-nav {
                padding: 4px 12px;
                font-size: 11px;
                gap: 8px;
                flex-wrap: wrap;
            }

            .breadcrumb-bar {
                font-size: 11px;
                gap: 4px;
                flex-wrap: wrap;
            }

            .search-trigger span {
                display: none;
            }

            .page-hero {
                padding: 32px 0 28px;
            }

            .page-hero h1 {
                font-size: 26px;
            }

            .page-hero .hero-sub {
                font-size: 14px;
            }

            .section-heading h2 {
                font-size: 22px;
            }

            .section-heading p {
                font-size: 13px;
            }

            .schedule-card {
                padding: 14px 14px;
                gap: 10px;
                flex-direction: column;
                align-items: flex-start;
            }

            .schedule-card .match-info {
                min-width: auto;
            }

            .schedule-card .team-name {
                font-size: 15px;
            }

            .schedule-card .score-display {
                font-size: 18px;
            }

            .focus-match-cover {
                height: 160px;
            }

            .focus-match-body {
                padding: 14px 16px 18px;
            }

            .focus-match-body .fm-teams {
                font-size: 16px;
                flex-direction: column;
                gap: 6px;
                text-align: center;
            }

            .focus-match-body .fm-score {
                font-size: 28px;
            }

            .h2h-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .h2h-card {
                padding: 14px;
            }

            .h2h-card .h2h-num {
                font-size: 24px;
            }

            .calendar-sync {
                padding: 20px;
                gap: 16px;
                flex-direction: column;
                text-align: center;
            }

            .calendar-sync .sync-icon {
                width: 48px;
                height: 48px;
            }

            .calendar-sync .sync-icon i {
                font-size: 20px;
            }

            .calendar-sync .sync-action {
                width: 100%;
            }

            .news-mini-card .nm-cover {
                height: 120px;
            }

            .cta-section {
                padding: 36px 0;
            }

            .cta-section h2 {
                font-size: 22px;
            }

            .cta-section p {
                font-size: 13px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }

            .fb-links {
                justify-content: center;
            }

            .snapshot-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .snapshot-item .snap-num {
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .snapshot-grid {
                grid-template-columns: 1fr;
            }

            .page-hero h1 {
                font-size: 22px;
            }

            .schedule-card .league-tag {
                font-size: 10px;
                padding: 2px 8px;
            }

            .schedule-card .score-display {
                font-size: 16px;
                gap: 6px;
            }

            .date-filter .filter-tab {
                padding: 6px 12px;
                font-size: 11px;
            }
        }

/* roulang page: category3 */
:root {
            --primary: #1A1A1A;
            --accent: #C4A464;
            --accent-deep: #A88948;
            --teal: #2B7A78;
            --teal-deep: #1F5F5D;
            --bg: #FAF7F2;
            --bg-dark: #1A1A1A;
            --text: #222222;
            --text-light: #F5F0E6;
            --text-muted: #6B6B6B;
            --text-dark-muted: #A9A49A;
            --success: #3A7462;
            --warning: #D98E48;
            --error: #B84C4C;
            --border: rgba(196, 164, 100, 0.25);
            --border-dark: rgba(245, 240, 230, 0.15);
            --radius-card: 8px;
            --radius-btn: 4px;
            --radius-badge: 20px;
            --radius-panel: 6px;
            --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.12);
            --shadow-dark: 0 4px 16px rgba(0, 0, 0, 0.25);
            --font-mono: "DIN Alternate", "Roboto Mono", "SF Mono", "Courier New", monospace;
            --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            --spacing-section: 72px;
            --spacing-card: 20px;
            --header-height: 108px;
            --nav-height: 48px;
        }
        @media (max-width: 1023px) {
            :root {
                --spacing-section: 56px;
            }
        }
        @media (max-width: 767px) {
            :root {
                --spacing-section: 40px;
                --header-height: 70px;
            }
        }
        html {
            scroll-behavior: smooth;
            box-sizing: border-box;
        }
        *,
        *::before,
        *::after {
            box-sizing: inherit;
        }
        body {
            font-family: var(--font-sans);
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.8;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: var(--text);
            text-decoration: none;
            transition: all 0.25s ease;
        }
        a:hover,
        a:focus {
            color: var(--accent-deep);
            text-decoration: none;
        }
        a:focus,
        button:focus,
        input:focus {
            outline: 2px solid var(--teal);
            outline-offset: 2px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: var(--font-sans);
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            margin-top: 0;
            line-height: 1.3;
        }
        p {
            margin-top: 0;
        }
        ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .grid-container {
            max-width: 1240px;
            padding-left: 16px;
            padding-right: 16px;
        }
        .grid-container.fluid {
            max-width: 100%;
        }
        .site-header {
            background-color: var(--primary);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: var(--header-height);
            padding: 12px 16px;
            gap: 16px;
        }
        .masthead-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .masthead-brand .brand-mark {
            width: 40px;
            height: 40px;
            border: 2px solid var(--accent);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(196, 164, 100, 0.12);
            flex-shrink: 0;
        }
        .masthead-brand .brand-mark i {
            font-size: 20px;
            color: var(--accent);
        }
        .masthead-brand .brand-name {
            font-size: 34px;
            font-weight: 800;
            letter-spacing: 2px;
            color: var(--accent);
            line-height: 1.1;
            white-space: nowrap;
        }
        .masthead-divider {
            width: 1px;
            height: 36px;
            background-color: var(--border-dark);
            margin: 0 8px;
            flex-shrink: 0;
            display: none;
        }
        .masthead-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex: 1;
            justify-content: flex-end;
            flex-wrap: wrap;
        }
        .masthead-nav a {
            color: var(--text-light);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            padding: 8px 12px;
            border-radius: 3px;
            position: relative;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .masthead-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        .masthead-nav a:hover,
        .masthead-nav a:focus {
            color: var(--accent);
            background-color: rgba(196, 164, 100, 0.08);
        }
        .masthead-nav a:hover::after,
        .masthead-nav a:focus::after {
            width: 70%;
        }
        .masthead-nav a.active {
            color: var(--accent);
            font-weight: 700;
        }
        .masthead-nav a.active::after {
            width: 70%;
        }
        .nav-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--border-dark);
            color: var(--text-light);
            font-size: 22px;
            padding: 6px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        .nav-toggle:hover {
            background-color: rgba(196, 164, 100, 0.15);
            color: var(--accent);
        }
        .utility-nav {
            background-color: var(--primary);
            padding: 6px 22px;
            border-bottom: 1px solid var(--border-dark);
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 13px;
            color: var(--text-dark-muted);
        }
        .utility-nav .breadcrumb-trail {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .utility-nav .breadcrumb-trail a {
            color: var(--text-dark-muted);
            font-size: 13px;
            transition: color 0.25s ease;
        }
        .utility-nav .breadcrumb-trail a:hover {
            color: var(--accent);
        }
        .utility-nav .breadcrumb-trail .sep {
            color: var(--accent);
            font-size: 12px;
        }
        .utility-nav .breadcrumb-trail .current {
            color: var(--accent);
            font-weight: 600;
            font-size: 13px;
        }
        .breadcrumb-search {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .breadcrumb-search input {
            background-color: rgba(245, 240, 230, 0.08);
            border: 1px solid var(--border-dark);
            border-radius: 4px;
            padding: 6px 12px;
            color: var(--text-light);
            font-size: 13px;
            width: 180px;
            transition: all 0.3s ease;
        }
        .breadcrumb-search input::placeholder {
            color: var(--text-dark-muted);
        }
        .breadcrumb-search input:focus {
            outline: none;
            border-color: var(--accent);
            background-color: rgba(245, 240, 230, 0.12);
        }
        .breadcrumb-search button {
            background: transparent;
            border: 1px solid var(--border-dark);
            color: var(--accent);
            border-radius: 4px;
            padding: 6px 10px;
            transition: all 0.3s ease;
        }
        .breadcrumb-search button:hover {
            background-color: rgba(196, 164, 100, 0.15);
        }
        .page-hero {
            background-color: var(--bg-dark);
            padding: 48px 0 56px;
            border-bottom: 1px solid var(--border);
        }
        .page-hero .hero-content {
            max-width: 800px;
        }
        .page-hero .hero-eyebrow {
            display: inline-block;
            color: var(--accent);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 4px;
        }
        .page-hero h1 {
            font-size: 40px;
            font-weight: 800;
            color: var(--text-light);
            letter-spacing: 1px;
            margin-bottom: 16px;
        }
        .page-hero .hero-desc {
            color: var(--text-dark-muted);
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 0;
        }
        .section {
            padding: var(--spacing-section) 0;
        }
        .section-alt {
            background-color: #F3EDE3;
        }
        .section-dark {
            background-color: var(--bg-dark);
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text);
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }
        .section-subtitle {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 32px;
            max-width: 680px;
        }
        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-card);
        }
        .team-card {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }
        .team-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .team-card .team-cover {
            position: relative;
            height: 160px;
            overflow: hidden;
            background-color: #2a2a2a;
        }
        .team-card .team-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .team-card:hover .team-cover img {
            transform: scale(1.03);
        }
        .team-card .team-cover .region-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background-color: rgba(26, 26, 26, 0.85);
            color: var(--accent);
            font-size: 12px;
            padding: 4px 10px;
            border-radius: var(--radius-badge);
            letter-spacing: 0.5px;
        }
        .team-card .team-body {
            padding: 20px 18px;
        }
        .team-card .team-name {
            font-size: 19px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
            line-height: 1.3;
        }
        .team-card .team-tagline {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 14px;
            line-height: 1.5;
        }
        .team-card .team-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .team-card .team-stats .stat-chip {
            background-color: #F0EBE2;
            color: var(--text);
            font-size: 12px;
            padding: 3px 10px;
            border-radius: var(--radius-badge);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .team-card .team-stats .stat-chip .mono {
            font-family: var(--font-mono);
            color: var(--teal);
            font-weight: 700;
        }
        .dimension-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-card);
        }
        .dimension-item {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 24px;
            border-left: 3px solid var(--teal);
            box-shadow: var(--shadow-card);
        }
        .dimension-item h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }
        .dimension-item p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 0;
        }
        .dimension-item .dim-icon {
            color: var(--teal);
            font-size: 22px;
            margin-bottom: 10px;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag-cloud .team-tag {
            background-color: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-badge);
            padding: 8px 18px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            transition: all 0.3s ease;
            cursor: default;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .tag-cloud .team-tag:hover {
            background-color: var(--accent);
            color: var(--text-light);
            border-color: var(--accent);
            box-shadow: var(--shadow-card);
        }
        .tag-cloud .team-tag .hot-icon {
            color: var(--warning);
            font-size: 14px;
        }
        .stats-panel {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .stat-block {
            background-color: rgba(245, 240, 230, 0.06);
            border: 1px solid var(--border-dark);
            border-radius: var(--radius-panel);
            padding: 24px 20px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .stat-block:hover {
            background-color: rgba(245, 240, 230, 0.1);
            border-color: var(--accent);
        }
        .stat-block .stat-number {
            font-family: var(--font-mono);
            font-size: 36px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.2;
            margin-bottom: 6px;
        }
        .stat-block .stat-label {
            font-size: 13px;
            color: var(--text-dark-muted);
            letter-spacing: 0.5px;
        }
        .region-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        .region-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 20px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: var(--shadow-card);
            border-left: 3px solid var(--accent);
            transition: all 0.3s ease;
        }
        .region-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateX(3px);
        }
        .region-card .region-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
        }
        .region-card .region-count {
            font-family: var(--font-mono);
            font-size: 24px;
            font-weight: 700;
            color: var(--teal);
        }
        .analysis-list {
            display: grid;
            gap: 16px;
        }
        .analysis-row {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 18px;
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
        }
        .analysis-row:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .analysis-row .analysis-icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            background-color: rgba(43, 122, 120, 0.1);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--teal);
            font-size: 20px;
        }
        .analysis-row .analysis-content {
            flex: 1;
        }
        .analysis-row .analysis-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
            line-height: 1.4;
        }
        .analysis-row .analysis-meta {
            font-size: 13px;
            color: var(--text-muted);
        }
        .analysis-row .analysis-link {
            flex-shrink: 0;
            color: var(--accent-deep);
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
        }
        .cta-panel {
            background-color: var(--teal-deep);
            border-radius: var(--radius-card);
            padding: 48px 40px;
            text-align: center;
            box-shadow: var(--shadow-dark);
        }
        .cta-panel h2 {
            color: var(--text-light);
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .cta-panel p {
            color: rgba(245, 240, 230, 0.8);
            font-size: 15px;
            max-width: 540px;
            margin: 0 auto 28px;
            line-height: 1.7;
        }
        .cta-panel .cta-form {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            max-width: 480px;
            margin: 0 auto;
        }
        .cta-panel .cta-form input {
            flex: 1;
            min-width: 200px;
            background-color: rgba(245, 240, 230, 0.1);
            border: 1px solid var(--border-dark);
            border-radius: var(--radius-btn);
            padding: 12px 16px;
            color: var(--text-light);
            font-size: 14px;
            transition: all 0.3s ease;
        }
        .cta-panel .cta-form input::placeholder {
            color: rgba(245, 240, 230, 0.5);
        }
        .cta-panel .cta-form input:focus {
            outline: none;
            border-color: var(--accent);
            background-color: rgba(245, 240, 230, 0.16);
        }
        .btn {
            display: inline-block;
            border: none;
            border-radius: var(--radius-btn);
            padding: 12px 24px;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-align: center;
            transition: all 0.3s ease;
            font-family: var(--font-sans);
        }
        .btn-primary {
            background-color: var(--accent);
            color: var(--text);
        }
        .btn-primary:hover,
        .btn-primary:focus {
            background-color: var(--accent-deep);
            color: var(--text);
            box-shadow: var(--shadow-card);
        }
        .btn-primary:active {
            transform: scale(0.98);
            background-color: #967A3A;
        }
        .btn-outline {
            background: transparent;
            border: 1px solid var(--accent);
            color: var(--accent);
        }
        .btn-outline:hover,
        .btn-outline:focus {
            background-color: rgba(196, 164, 100, 0.12);
            color: var(--accent-deep);
        }
        .btn-light {
            background-color: var(--accent);
            color: var(--text);
        }
        .btn-light:hover,
        .btn-light:focus {
            background-color: var(--accent-deep);
            color: var(--text);
        }
        .site-footer {
            background-color: var(--primary);
            color: var(--text-light);
            padding: 56px 0 24px;
            border-top: 1px solid var(--border);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 40px;
        }
        .footer-col .brand-name {
            font-size: 26px;
            font-weight: 800;
            letter-spacing: 1.5px;
            color: var(--accent);
            margin-bottom: 12px;
        }
        .footer-col p {
            font-size: 14px;
            color: var(--text-dark-muted);
            line-height: 1.7;
            margin-bottom: 0;
        }
        .footer-col h3 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-light);
            letter-spacing: 1px;
            margin-bottom: 16px;
            text-transform: uppercase;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            color: var(--text-dark-muted);
            font-size: 14px;
            transition: all 0.3s ease;
        }
        .footer-col ul li a:hover {
            color: var(--accent);
            padding-left: 4px;
        }
        .footer-bottom {
            border-top: 1px solid var(--border-dark);
            padding-top: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-bottom span {
            font-size: 13px;
            color: var(--text-dark-muted);
        }
        .footer-bottom .fb-links {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }
        .footer-bottom .fb-links a {
            color: var(--text-dark-muted);
            font-size: 13px;
            transition: all 0.3s ease;
        }
        .footer-bottom .fb-links a:hover {
            color: var(--accent);
        }
        @media (max-width: 1023px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .dimension-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-panel {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .masthead-brand .brand-name {
                font-size: 28px;
            }
        }
        @media (max-width: 767px) {
            .header-inner {
                flex-wrap: wrap;
                min-height: auto;
                padding: 10px 14px;
            }
            .masthead-brand .brand-name {
                font-size: 24px;
                letter-spacing: 1px;
            }
            .masthead-brand .brand-mark {
                width: 34px;
                height: 34px;
            }
            .masthead-brand .brand-mark i {
                font-size: 16px;
            }
            .masthead-nav {
                display: none;
                flex-direction: column;
                align-items: stretch;
                width: 100%;
                background-color: var(--primary);
                padding: 12px 4px;
                border-top: 1px solid var(--border-dark);
                gap: 0;
            }
            .masthead-nav.open {
                display: flex;
            }
            .masthead-nav a {
                padding: 12px 16px;
                border-bottom: 1px solid rgba(245, 240, 230, 0.08);
                font-size: 15px;
                letter-spacing: 0.5px;
            }
            .masthead-nav a::after {
                display: none;
            }
            .nav-toggle {
                display: block;
                margin-left: auto;
            }
            .utility-nav {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                padding: 8px 16px;
            }
            .breadcrumb-search input {
                width: 100%;
            }
            .breadcrumb-search {
                width: 100%;
            }
            .breadcrumb-search input {
                flex: 1;
            }
            .page-hero {
                padding: 32px 0 40px;
            }
            .page-hero h1 {
                font-size: 28px;
            }
            .page-hero .hero-desc {
                font-size: 15px;
            }
            .section {
                padding: var(--spacing-section) 0;
            }
            .section-title {
                font-size: 22px;
            }
            .team-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .team-card .team-cover {
                height: 110px;
            }
            .team-card .team-body {
                padding: 14px 12px;
            }
            .team-card .team-name {
                font-size: 16px;
            }
            .team-card .team-tagline {
                font-size: 12px;
                margin-bottom: 8px;
            }
            .team-card .team-stats .stat-chip {
                font-size: 10px;
                padding: 2px 7px;
            }
            .dimension-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .stats-panel {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-block {
                padding: 16px 12px;
            }
            .stat-block .stat-number {
                font-size: 26px;
            }
            .stat-block .stat-label {
                font-size: 11px;
            }
            .region-list {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .analysis-row {
                flex-direction: column;
                align-items: flex-start;
                padding: 16px;
                gap: 10px;
            }
            .analysis-row .analysis-link {
                align-self: flex-end;
            }
            .cta-panel {
                padding: 32px 20px;
            }
            .cta-panel h2 {
                font-size: 21px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
        }
        @media (max-width: 480px) {
            .team-grid {
                grid-template-columns: 1fr;
            }
            .stats-panel {
                grid-template-columns: 1fr 1fr;
            }
        }

/* roulang page: category4 */
:root {
            --primary: #1A1A1A;
            --accent: #C4A464;
            --accent-deep: #A88948;
            --accent-light: #D9C89E;
            --teal: #2B7A78;
            --teal-deep: #1F5F5D;
            --teal-bg: rgba(43, 122, 120, 0.08);
            --bg: #FAF7F2;
            --bg-dark: #1A1A1A;
            --bg-warm: #F3EDE3;
            --text: #222222;
            --text-light: #F5F0E6;
            --text-muted: #6B6B6B;
            --text-dark-muted: #A9A49A;
            --success: #3A7462;
            --warning: #D98E48;
            --error: #B84C4C;
            --border: rgba(196, 164, 100, 0.25);
            --border-dark: rgba(245, 240, 230, 0.15);
            --border-soft: rgba(34, 34, 34, 0.08);
            --radius-card: 8px;
            --radius-btn: 4px;
            --radius-badge: 20px;
            --radius-panel: 6px;
            --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.12);
            --shadow-dark: 0 4px 16px rgba(0, 0, 0, 0.25);
            --font-mono: "DIN Alternate", "Roboto Mono", "SF Mono", "Courier New", monospace;
            --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            --spacing-section: 72px;
            --spacing-card: 20px;
            --header-height: 108px;
            --nav-height: 48px;
            --transition-base: 0.25s ease;
            --transition-slow: 0.35s ease;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.8;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: var(--text);
            text-decoration: none;
            transition: color var(--transition-base), background-color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
        }

        a:hover,
        a:focus {
            color: var(--accent);
            text-decoration: none;
        }

        a:focus,
        button:focus,
        input:focus,
        textarea:focus {
            outline: 2px solid var(--teal);
            outline-offset: 2px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: var(--font-sans);
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            margin: 0 0 16px;
            line-height: 1.3;
            color: var(--text);
        }

        p {
            margin: 0 0 16px;
        }

        ul,
        ol {
            margin: 0 0 16px;
            padding-left: 20px;
        }

        /* Foundation overrides */
        .grid-container {
            max-width: 1240px;
            padding-left: 16px;
            padding-right: 16px;
        }
        .grid-container.fluid {
            max-width: 100%;
        }

        /* ============ Header / Masthead Nav ============ */
        .site-header {
            background-color: var(--primary);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
        }
        .masthead-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            min-height: var(--header-height);
            padding: 10px 0;
        }
        .masthead-left {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .masthead-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .masthead-brand .brand-mark {
            width: 42px;
            height: 42px;
            border: 2px solid var(--accent);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(196, 164, 100, 0.12);
            flex-shrink: 0;
        }
        .masthead-brand .brand-mark i {
            font-size: 20px;
            color: var(--accent);
        }
        .masthead-brand .brand-name {
            font-size: 32px;
            font-weight: 800;
            letter-spacing: 2px;
            color: var(--accent);
            line-height: 1.1;
            white-space: nowrap;
        }
        .masthead-divider {
            width: 1px;
            height: 36px;
            background-color: var(--border-dark);
            margin: 0 8px;
            flex-shrink: 0;
        }
        .masthead-right {
            display: flex;
            align-items: center;
            flex: 1;
            justify-content: flex-end;
        }
        .masthead-nav {
            display: flex;
            align-items: center;
            gap: 2px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }
        .masthead-nav a {
            color: var(--text-light);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            padding: 8px 12px;
            border-radius: 3px;
            position: relative;
            transition: color var(--transition-base), background-color var(--transition-base);
            white-space: nowrap;
        }
        .masthead-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width var(--transition-base);
        }
        .masthead-nav a:hover,
        .masthead-nav a:focus {
            color: var(--accent);
            background-color: rgba(196, 164, 100, 0.08);
        }
        .masthead-nav a:hover::after,
        .masthead-nav a:focus::after {
            width: 70%;
        }
        .masthead-nav a.active {
            color: var(--accent);
            font-weight: 700;
        }
        .masthead-nav a.active::after {
            width: 70%;
        }
        .nav-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--border-dark);
            color: var(--text-light);
            font-size: 22px;
            padding: 6px 12px;
            border-radius: 4px;
            transition: background-color var(--transition-base), color var(--transition-base);
            flex-shrink: 0;
            margin-left: 8px;
        }
        .nav-toggle:hover {
            background-color: rgba(196, 164, 100, 0.15);
            color: var(--accent);
        }

        /* Utility nav row */
        .utility-nav {
            background-color: var(--primary);
            padding: 8px 22px;
            border-bottom: 1px solid var(--border-dark);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 13px;
            color: var(--text-dark-muted);
        }
        .utility-nav .breadcrumb {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .utility-nav .breadcrumb a {
            color: var(--text-dark-muted);
            font-size: 13px;
        }
        .utility-nav .breadcrumb a:hover {
            color: var(--accent);
        }
        .utility-nav .breadcrumb .sep {
            color: var(--border-dark);
        }
        .utility-nav .breadcrumb .current {
            color: var(--accent);
        }
        .utility-nav .search-trigger {
            color: var(--text-dark-muted);
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
        }
        .utility-nav .search-trigger:hover {
            color: var(--accent);
        }

        /* ============ Section Base ============ */
        .section {
            padding: var(--spacing-section) 0;
        }
        .section-alt {
            background-color: var(--bg-warm);
        }
        .section-dark {
            background-color: var(--bg-dark);
            color: var(--text-light);
        }
        .section-dark h2,
        .section-dark h3 {
            color: var(--text-light);
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }
        .section-subtitle {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 680px;
            line-height: 1.7;
            margin-bottom: 32px;
        }
        .section-dark .section-subtitle {
            color: var(--text-dark-muted);
        }
        .section-head-row {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }
        .section-head-row .section-title {
            margin-bottom: 0;
        }

        /* ============ Category H1 Banner ============ */
        .cat-banner {
            background-color: var(--bg-dark);
            padding: 48px 0 40px;
            border-bottom: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }
        .cat-banner::after {
            content: '';
            position: absolute;
            right: -80px;
            top: -80px;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: rgba(196, 164, 100, 0.06);
            pointer-events: none;
        }
        .cat-banner .cat-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-dark-muted);
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        .cat-banner .cat-breadcrumb a {
            color: var(--text-dark-muted);
        }
        .cat-banner .cat-breadcrumb a:hover {
            color: var(--accent);
        }
        .cat-banner .cat-breadcrumb .sep {
            color: rgba(245, 240, 230, 0.25);
        }
        .cat-banner .cat-breadcrumb .current {
            color: var(--accent);
        }
        .cat-banner h1 {
            font-size: 40px;
            font-weight: 800;
            color: var(--text-light);
            letter-spacing: 1px;
            margin-bottom: 12px;
        }
        .cat-banner .cat-desc {
            font-size: 15px;
            color: var(--text-dark-muted);
            max-width: 620px;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* ============ Analysis Article Card List ============ */
        .article-list-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .article-card {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            border: 1px solid var(--border-soft);
            transition: box-shadow var(--transition-slow), transform var(--transition-slow);
            display: flex;
            flex-direction: column;
        }
        .article-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .article-card .article-cover {
            position: relative;
            width: 100%;
            height: 180px;
            overflow: hidden;
            background-color: #e9e2d6;
        }
        .article-card .article-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .article-card:hover .article-cover img {
            transform: scale(1.03);
        }
        .article-card .article-cover .badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--accent);
            color: var(--primary);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: var(--radius-badge);
            letter-spacing: 0.5px;
        }
        .article-card .article-body {
            padding: 20px 20px 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .article-card .article-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .article-card .article-title a {
            color: var(--text);
        }
        .article-card .article-title a:hover {
            color: var(--accent-deep);
        }
        .article-card .article-summary {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 12px;
            flex: 1;
        }
        .article-card .article-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-soft);
            padding-top: 12px;
        }
        .article-card .article-meta .tag {
            color: var(--teal);
            font-weight: 500;
        }

        /* ============ Analyst Cards ============ */
        .analyst-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .analyst-card {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 24px 20px;
            border: 1px solid var(--border-soft);
            text-align: center;
            transition: box-shadow var(--transition-base), transform var(--transition-base);
        }
        .analyst-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .analyst-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--teal-bg);
            border: 2px solid var(--teal);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            color: var(--teal);
            margin: 0 auto 12px;
        }
        .analyst-name {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .analyst-role {
            font-size: 13px;
            color: var(--accent-deep);
            font-weight: 500;
            margin-bottom: 8px;
        }
        .analyst-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* ============ Topic Badges ============ */
        .topic-badge-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .topic-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #fff;
            border: 1px solid var(--border);
            color: var(--text);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: var(--radius-badge);
            transition: all var(--transition-base);
            cursor: default;
        }
        .topic-badge:hover {
            border-color: var(--accent);
            color: var(--accent-deep);
            background: rgba(196, 164, 100, 0.06);
        }
        .topic-badge .count {
            font-size: 12px;
            color: var(--teal);
            background: var(--teal-bg);
            padding: 2px 8px;
            border-radius: 10px;
            font-weight: 600;
        }

        /* ============ Data Tool Row ============ */
        .tool-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .tool-item {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 20px 24px;
            border-left: 3px solid var(--teal);
            display: flex;
            align-items: flex-start;
            gap: 14px;
            transition: box-shadow var(--transition-base), transform var(--transition-base);
        }
        .tool-item:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .tool-item .tool-icon {
            width: 40px;
            height: 40px;
            border-radius: 6px;
            background: var(--teal-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--teal);
            font-size: 18px;
            flex-shrink: 0;
        }
        .tool-item .tool-name {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .tool-item .tool-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* ============ Feature Long Read ============ */
        .feature-longread {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 32px;
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            border: 1px solid var(--border-soft);
        }
        .feature-longread .flr-image {
            position: relative;
            min-height: 320px;
            overflow: hidden;
            background-color: #e9e2d6;
        }
        .feature-longread .flr-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }
        .feature-longread .flr-content {
            padding: 36px 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .feature-longread .flr-badge {
            display: inline-block;
            background: var(--accent);
            color: var(--primary);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: var(--radius-badge);
            margin-bottom: 16px;
            align-self: flex-start;
        }
        .feature-longread .flr-title {
            font-size: 24px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 12px;
        }
        .feature-longread .flr-excerpt {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 18px;
        }
        .feature-longread .flr-link {
            color: var(--accent-deep);
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .feature-longread .flr-link:hover {
            color: var(--teal);
        }

        /* ============ Data Snapshot ============ */
        .snapshot-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .snapshot-card {
            background: #fff;
            border-radius: var(--radius-panel);
            box-shadow: var(--shadow-card);
            padding: 20px 16px;
            border-left: 3px solid var(--teal);
            text-align: center;
        }
        .snapshot-card .snap-number {
            font-family: var(--font-mono);
            font-size: 32px;
            font-weight: 700;
            color: var(--teal);
            line-height: 1.2;
            margin-bottom: 6px;
        }
        .snapshot-card .snap-label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* ============ Subscribe CTA ============ */
        .subscribe-cta {
            background: var(--bg-dark);
            border-radius: var(--radius-card);
            padding: 48px 40px;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 32px;
            align-items: center;
            box-shadow: var(--shadow-dark);
            border: 1px solid var(--border-dark);
        }
        .subscribe-cta .cta-text h2 {
            color: var(--text-light);
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .subscribe-cta .cta-text p {
            color: var(--text-dark-muted);
            font-size: 14px;
            margin-bottom: 0;
            line-height: 1.7;
        }
        .subscribe-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .subscribe-form input[type="email"] {
            flex: 1;
            min-width: 200px;
            background: rgba(245, 240, 230, 0.08);
            border: 1px solid var(--border-dark);
            border-radius: var(--radius-btn);
            padding: 12px 16px;
            font-size: 14px;
            font-family: var(--font-sans);
            color: var(--text-light);
            transition: border-color var(--transition-base);
        }
        .subscribe-form input[type="email"]::placeholder {
            color: rgba(245, 240, 230, 0.45);
        }
        .subscribe-form input[type="email"]:focus {
            border-color: var(--accent);
            outline: none;
        }
        .subscribe-form .btn-gold {
            background: var(--accent);
            color: var(--primary);
            font-weight: 700;
            font-size: 14px;
            padding: 12px 24px;
            border: none;
            border-radius: var(--radius-btn);
            letter-spacing: 0.5px;
            transition: background-color var(--transition-base), transform var(--transition-base);
            white-space: nowrap;
        }
        .subscribe-form .btn-gold:hover {
            background: var(--accent-deep);
            transform: translateY(-1px);
        }
        .subscribe-form .btn-gold:active {
            transform: scale(0.98);
        }

        /* ============ Footer ============ */
        .site-footer {
            background-color: var(--primary);
            color: var(--text-light);
            padding: 48px 0 0;
            border-top: 1px solid var(--border);
            margin-top: 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 32px;
            padding-bottom: 32px;
        }
        .footer-col h3 {
            color: var(--text-light);
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            color: var(--text-dark-muted);
            font-size: 14px;
            transition: color var(--transition-base);
        }
        .footer-col ul li a:hover {
            color: var(--accent);
        }
        .footer-brand .brand-name {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 2px;
            color: var(--accent);
            margin-bottom: 10px;
        }
        .footer-brand p {
            font-size: 13px;
            color: var(--text-dark-muted);
            line-height: 1.7;
            margin-bottom: 0;
        }
        .footer-bottom {
            border-top: 1px solid var(--border-dark);
            padding: 16px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 13px;
            color: var(--text-dark-muted);
        }
        .footer-bottom .fb-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .footer-bottom .fb-links a {
            color: var(--text-dark-muted);
            font-size: 13px;
        }
        .footer-bottom .fb-links a:hover {
            color: var(--accent);
        }

        /* ============ Buttons (global) ============ */
        .btn-gold {
            background: var(--accent);
            color: var(--primary);
            font-weight: 700;
            font-size: 15px;
            padding: 12px 28px;
            border: none;
            border-radius: var(--radius-btn);
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
            cursor: pointer;
        }
        .btn-gold:hover {
            background: var(--accent-deep);
            box-shadow: 0 4px 12px rgba(196, 164, 100, 0.3);
            transform: translateY(-1px);
            color: var(--primary);
        }
        .btn-gold:active {
            transform: scale(0.98);
        }
        .btn-outline {
            background: transparent;
            color: var(--text);
            font-weight: 600;
            font-size: 15px;
            padding: 12px 28px;
            border: 1px solid var(--accent);
            border-radius: var(--radius-btn);
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base);
            cursor: pointer;
        }
        .btn-outline:hover {
            background: rgba(196, 164, 100, 0.08);
            color: var(--accent-deep);
            border-color: var(--accent-deep);
        }

        /* ============ Mobile Nav ============ */
        @media (max-width: 1024px) {
            .masthead-nav {
                gap: 0;
            }
            .masthead-nav a {
                padding: 8px 8px;
                font-size: 13px;
                letter-spacing: 0.5px;
            }
            .masthead-brand .brand-name {
                font-size: 26px;
                letter-spacing: 1px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --spacing-section: 40px;
                --header-height: 70px;
            }
            .masthead-inner {
                min-height: var(--header-height);
                flex-wrap: wrap;
                padding: 8px 0;
            }
            .masthead-brand .brand-name {
                font-size: 22px;
                letter-spacing: 1px;
            }
            .masthead-brand .brand-mark {
                width: 34px;
                height: 34px;
            }
            .masthead-brand .brand-mark i {
                font-size: 16px;
            }
            .masthead-divider {
                height: 28px;
            }
            .nav-toggle {
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
            .masthead-right {
                position: relative;
            }
            .masthead-nav {
                display: none;
                position: absolute;
                top: 100%;
                right: 0;
                flex-direction: column;
                align-items: stretch;
                background: var(--primary);
                border: 1px solid var(--border-dark);
                border-radius: 6px;
                box-shadow: var(--shadow-dark);
                padding: 8px;
                min-width: 180px;
                z-index: 200;
            }
            .masthead-nav.open {
                display: flex;
            }
            .masthead-nav a {
                padding: 12px 16px;
                text-align: left;
                white-space: normal;
                border-bottom: 1px solid var(--border-dark);
            }
            .masthead-nav a:last-child {
                border-bottom: none;
            }
            .masthead-nav a::after {
                display: none;
            }
            .utility-nav {
                padding: 4px 16px;
                font-size: 12px;
                flex-wrap: wrap;
            }
            .cat-banner {
                padding: 36px 0 28px;
            }
            .cat-banner h1 {
                font-size: 30px;
            }
            .cat-banner .cat-desc {
                font-size: 14px;
            }
            .article-list-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .analyst-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
            .tool-list {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .feature-longread {
                grid-template-columns: 1fr;
            }
            .feature-longread .flr-image {
                min-height: 200px;
            }
            .feature-longread .flr-content {
                padding: 24px 20px;
            }
            .snapshot-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .subscribe-cta {
                grid-template-columns: 1fr;
                padding: 32px 24px;
                gap: 20px;
            }
            .subscribe-cta .cta-text h2 {
                font-size: 22px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
        }

        @media (max-width: 520px) {
            :root {
                --spacing-section: 32px;
            }
            .section-title {
                font-size: 22px;
            }
            .cat-banner h1 {
                font-size: 26px;
            }
            .analyst-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .snapshot-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .snapshot-card .snap-number {
                font-size: 24px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .masthead-brand .brand-name {
                font-size: 20px;
            }
            .subscribe-form {
                flex-direction: column;
            }
            .subscribe-form input[type="email"] {
                min-width: auto;
            }
        }

/* roulang page: category5 */
:root {
            --primary: #1A1A1A;
            --accent: #C4A464;
            --accent-deep: #A88948;
            --teal: #2B7A78;
            --teal-deep: #1F5F5D;
            --bg: #FAF7F2;
            --bg-dark: #1A1A1A;
            --text: #222222;
            --text-light: #F5F0E6;
            --text-muted: #6B6B6B;
            --text-dark-muted: #A9A49A;
            --success: #3A7462;
            --warning: #D98E48;
            --error: #B84C4C;
            --border: rgba(196, 164, 100, 0.25);
            --border-dark: rgba(245, 240, 230, 0.15);
            --radius-card: 8px;
            --radius-btn: 4px;
            --radius-badge: 20px;
            --radius-panel: 6px;
            --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.12);
            --shadow-dark: 0 4px 16px rgba(0, 0, 0, 0.25);
            --font-mono: "DIN Alternate", "Roboto Mono", "SF Mono", "Courier New", monospace;
            --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            --spacing-section: 72px;
            --spacing-card: 20px;
            --header-height: 108px;
            --nav-height: 48px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.8;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: var(--text);
            text-decoration: none;
            transition: all 0.25s ease;
        }
        a:hover,
        a:focus {
            color: var(--accent);
            text-decoration: none;
        }
        a:focus,
        button:focus,
        input:focus {
            outline: 2px solid var(--teal);
            outline-offset: 2px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: var(--font-sans);
        }

        .grid-container {
            max-width: 1240px;
            padding-left: 16px;
            padding-right: 16px;
        }
        .grid-container.fluid {
            max-width: 100%;
        }

        /* Header / Nav */
        .site-header {
            background-color: var(--primary);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
        }
        .masthead-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .masthead-brand .brand-mark {
            width: 40px;
            height: 40px;
            border: 2px solid var(--accent);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(196, 164, 100, 0.12);
        }
        .masthead-brand .brand-mark i {
            font-size: 20px;
            color: var(--accent);
        }
        .masthead-brand .brand-name {
            font-size: 34px;
            font-weight: 800;
            letter-spacing: 2px;
            color: var(--accent);
            line-height: 1.1;
            white-space: nowrap;
        }
        .masthead-divider {
            width: 1px;
            height: 36px;
            background-color: var(--border-dark);
            margin: 0 8px;
            flex-shrink: 0;
        }
        .masthead-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex: 1;
            justify-content: flex-end;
            flex-wrap: wrap;
        }
        .masthead-nav a {
            color: var(--text-light);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            padding: 8px 12px;
            border-radius: 3px;
            position: relative;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .masthead-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        .masthead-nav a:hover,
        .masthead-nav a:focus {
            color: var(--accent);
            background-color: rgba(196, 164, 100, 0.08);
        }
        .masthead-nav a:hover::after,
        .masthead-nav a:focus::after {
            width: 70%;
        }
        .masthead-nav a.active {
            color: var(--accent);
            font-weight: 700;
        }
        .masthead-nav a.active::after {
            width: 70%;
        }
        .nav-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--border-dark);
            color: var(--text-light);
            font-size: 22px;
            padding: 6px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        .nav-toggle:hover {
            background-color: rgba(196, 164, 100, 0.15);
            color: var(--accent);
        }

        /* Utility nav row */
        .utility-nav {
            background-color: var(--primary);
            padding: 6px 22px;
            border-bottom: 1px solid var(--border-dark);
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 38px;
            flex-wrap: wrap;
            gap: 8px;
        }
        .utility-nav .breadcrumb {
            color: var(--text-dark-muted);
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .utility-nav .breadcrumb a {
            color: var(--text-dark-muted);
            font-size: 13px;
            transition: color 0.25s ease;
        }
        .utility-nav .breadcrumb a:hover {
            color: var(--accent);
        }
        .utility-nav .breadcrumb .sep {
            color: var(--text-dark-muted);
            font-size: 12px;
        }
        .utility-nav .breadcrumb .current {
            color: var(--accent);
            font-weight: 600;
        }
        .utility-nav .search-box {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .utility-nav .search-box input {
            background-color: rgba(245, 240, 230, 0.08);
            border: 1px solid var(--border-dark);
            border-radius: 4px;
            padding: 6px 12px;
            color: var(--text-light);
            font-size: 13px;
            min-width: 180px;
            transition: border-color 0.3s ease;
        }
        .utility-nav .search-box input::placeholder {
            color: var(--text-dark-muted);
        }
        .utility-nav .search-box input:focus {
            border-color: var(--accent);
            outline: none;
        }
        .utility-nav .search-box button {
            background-color: transparent;
            border: 1px solid var(--accent);
            color: var(--accent);
            padding: 6px 14px;
            border-radius: 4px;
            font-size: 13px;
            transition: all 0.3s ease;
        }
        .utility-nav .search-box button:hover {
            background-color: rgba(196, 164, 100, 0.15);
        }

        /* Page H1 Area */
        .page-head {
            background-color: var(--bg);
            padding: 40px 0 32px;
            border-bottom: 1px solid var(--border);
        }
        .page-head .h1-wrap {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            flex-wrap: wrap;
        }
        .page-head .h1-icon {
            width: 56px;
            height: 56px;
            border-radius: 6px;
            background-color: var(--teal);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .page-head .h1-icon i {
            font-size: 24px;
            color: var(--text-light);
        }
        .page-head h1 {
            font-size: 42px;
            font-weight: 800;
            color: var(--text);
            margin: 0;
            line-height: 1.2;
            letter-spacing: 1px;
        }
        .page-head .h1-desc {
            max-width: 680px;
            margin-top: 12px;
            color: var(--text-muted);
            font-size: 16px;
            line-height: 1.8;
        }

        /* Section base */
        .section {
            padding: var(--spacing-section) 0;
        }
        .section-alt {
            background-color: #F0EAE0;
        }
        .section-dark {
            background-color: var(--bg-dark);
        }
        .section-dark h2 {
            color: var(--text-light);
        }
        .section-dark .section-sub {
            color: var(--text-dark-muted);
        }
        .section-title {
            margin-bottom: 32px;
        }
        .section-title h2 {
            font-size: 30px;
            font-weight: 700;
            color: var(--text);
            margin: 0 0 8px;
            letter-spacing: 0.5px;
        }
        .section-dark .section-title h2 {
            color: var(--text-light);
        }
        .section-sub {
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.7;
            max-width: 720px;
            margin: 0;
        }
        .section-dark .section-sub {
            color: var(--text-dark-muted);
        }
        .section-head-row {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 32px;
        }
        .section-head-row .section-title {
            margin-bottom: 0;
        }

        /* Video Cards Grid */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .video-card {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: all 0.35s ease;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }
        .video-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .video-card .video-thumb {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background-color: var(--bg-dark);
        }
        .video-card .video-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .video-card:hover .video-thumb img {
            transform: scale(1.04);
        }
        .video-card .video-thumb .thumb-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.35s ease;
        }
        .video-card:hover .video-thumb .thumb-overlay {
            background: rgba(0, 0, 0, 0.2);
        }
        .video-card .video-thumb .play-btn-circle {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background-color: rgba(196, 164, 100, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.35s ease;
        }
        .video-card .video-thumb .play-btn-circle i {
            font-size: 20px;
            color: var(--text);
            margin-left: 3px;
        }
        .video-card:hover .video-thumb .play-btn-circle {
            background-color: var(--accent);
            transform: scale(1.08);
        }
        .video-card .duration-badge {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background-color: rgba(0, 0, 0, 0.75);
            color: #fff;
            font-family: var(--font-mono);
            font-size: 12px;
            padding: 3px 10px;
            border-radius: 4px;
            letter-spacing: 0.5px;
        }
        .video-card .video-info {
            padding: 18px 20px 20px;
        }
        .video-card .video-info h3 {
            font-size: 17px;
            font-weight: 700;
            margin: 0 0 10px;
            line-height: 1.5;
            color: var(--text);
        }
        .video-card .video-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .video-card .video-meta .badge-tag {
            background-color: rgba(43, 122, 120, 0.1);
            color: var(--teal);
            font-size: 12px;
            padding: 3px 12px;
            border-radius: var(--radius-badge);
            font-weight: 600;
        }
        .video-card .video-meta .video-date {
            color: var(--text-muted);
            font-size: 13px;
        }
        .video-card .video-meta .video-views {
            color: var(--text-muted);
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .video-card .video-meta .video-views i {
            font-size: 11px;
            color: var(--accent);
        }

        /* Horizontal Scroll Strip */
        .hot-strip {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding-bottom: 12px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }
        .hot-strip::-webkit-scrollbar {
            height: 6px;
        }
        .hot-strip::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.05);
            border-radius: 3px;
        }
        .hot-strip::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 3px;
        }
        .hot-strip .hot-item {
            flex: 0 0 300px;
            scroll-snap-align: start;
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }
        .hot-strip .hot-item:hover {
            box-shadow: var(--shadow-hover);
        }
        .hot-strip .hot-item .hot-thumb {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background-color: var(--bg-dark);
        }
        .hot-strip .hot-item .hot-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .hot-strip .hot-item:hover .hot-thumb img {
            transform: scale(1.03);
        }
        .hot-strip .hot-item .hot-thumb .duration-badge {
            position: absolute;
            bottom: 8px;
            right: 8px;
            background-color: rgba(0, 0, 0, 0.75);
            color: #fff;
            font-family: var(--font-mono);
            font-size: 11px;
            padding: 2px 8px;
            border-radius: 3px;
        }
        .hot-strip .hot-item .hot-info {
            padding: 14px 16px 16px;
        }
        .hot-strip .hot-item .hot-info h3 {
            font-size: 14px;
            font-weight: 700;
            margin: 0 0 8px;
            line-height: 1.5;
            color: var(--text);
        }
        .hot-strip .hot-item .hot-rank {
            font-family: var(--font-mono);
            font-size: 13px;
            color: var(--teal);
            font-weight: 700;
        }

        /* Category Tag Cloud */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag-cloud .tag-pill {
            background-color: #fff;
            border: 1px solid var(--border);
            color: var(--text);
            padding: 8px 20px;
            border-radius: var(--radius-badge);
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: default;
            letter-spacing: 0.3px;
        }
        .tag-cloud .tag-pill:hover {
            background-color: var(--accent);
            color: #fff;
            border-color: var(--accent);
            transform: translateY(-1px);
        }
        .tag-cloud .tag-pill.active-tag {
            background-color: var(--accent);
            color: #fff;
            border-color: var(--accent);
        }
        .tag-cloud .tag-pill .tag-count {
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--teal);
            margin-left: 6px;
        }
        .tag-cloud .tag-pill.active-tag .tag-count {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Replay Info Panel */
        .replay-panel {
            background-color: var(--bg-dark);
            border-radius: var(--radius-card);
            padding: 32px 36px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            box-shadow: var(--shadow-dark);
        }
        .replay-panel .replay-text h3 {
            color: var(--accent);
            font-size: 20px;
            font-weight: 700;
            margin: 0 0 12px;
        }
        .replay-panel .replay-text p {
            color: var(--text-dark-muted);
            font-size: 15px;
            line-height: 1.8;
            margin: 0;
        }
        .replay-panel .replay-text .replay-list {
            list-style: none;
            padding: 0;
            margin: 16px 0 0;
        }
        .replay-panel .replay-text .replay-list li {
            color: var(--text-light);
            font-size: 14px;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .replay-panel .replay-text .replay-list li i {
            color: var(--accent);
            font-size: 12px;
        }
        .replay-panel .replay-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .replay-panel .replay-indicator .indicator-circle {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            border: 4px solid var(--accent);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: rgba(196, 164, 100, 0.08);
        }
        .replay-panel .replay-indicator .indicator-circle .ind-num {
            font-size: 48px;
            font-weight: 700;
            font-family: var(--font-mono);
            color: var(--accent);
            line-height: 1;
        }
        .replay-panel .replay-indicator .indicator-circle .ind-label {
            font-size: 13px;
            color: var(--text-dark-muted);
            margin-top: 8px;
        }

        /* Data Snapshot */
        .snapshot-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .snapshot-card {
            background: #fff;
            border-radius: var(--radius-panel);
            padding: 20px 18px;
            border-left: 3px solid var(--teal);
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
        }
        .snapshot-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .snapshot-card .snap-num {
            font-size: 30px;
            font-weight: 700;
            font-family: var(--font-mono);
            color: var(--teal);
            line-height: 1;
            margin-bottom: 6px;
        }
        .snapshot-card .snap-label {
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 600;
        }

        /* Subscribe CTA */
        .subscribe-cta {
            background: linear-gradient(135deg, #1F5F5D 0%, #2B7A78 55%, #1F5F5D 100%);
            border-radius: 10px;
            padding: 48px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 24px;
            box-shadow: 0 6px 24px rgba(43, 122, 120, 0.3);
        }
        .subscribe-cta .cta-text h2 {
            color: var(--text-light);
            font-size: 26px;
            font-weight: 700;
            margin: 0 0 8px;
        }
        .subscribe-cta .cta-text p {
            color: rgba(245, 240, 230, 0.75);
            font-size: 15px;
            margin: 0;
        }
        .subscribe-cta .cta-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .subscribe-cta .cta-form input {
            background-color: rgba(245, 240, 230, 0.1);
            border: 1px solid rgba(245, 240, 230, 0.3);
            border-radius: var(--radius-btn);
            padding: 12px 18px;
            color: var(--text-light);
            font-size: 15px;
            min-width: 260px;
            transition: all 0.3s ease;
        }
        .subscribe-cta .cta-form input::placeholder {
            color: rgba(245, 240, 230, 0.5);
        }
        .subscribe-cta .cta-form input:focus {
            border-color: var(--accent);
            outline: none;
            background-color: rgba(245, 240, 230, 0.15);
        }
        .subscribe-cta .cta-form .btn-accent {
            background-color: var(--accent);
            color: var(--text);
            border: none;
            border-radius: var(--radius-btn);
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 700;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .subscribe-cta .cta-form .btn-accent:hover {
            background-color: var(--accent-deep);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        /* Hot Recommend Section */
        .hot-reco {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 24px;
        }
        .hot-reco .reco-main {
            position: relative;
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            aspect-ratio: 16 / 9;
            background-color: var(--bg-dark);
        }
        .hot-reco .reco-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hot-reco .reco-main .reco-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 24px;
        }
        .hot-reco .reco-main .reco-overlay h3 {
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            margin: 0 0 6px;
        }
        .hot-reco .reco-main .reco-overlay p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            margin: 0;
        }
        .hot-reco .reco-side {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .hot-reco .reco-side .reco-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background-color: #fff;
            border-radius: var(--radius-card);
            padding: 12px 14px;
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
            cursor: default;
        }
        .hot-reco .reco-side .reco-item:hover {
            box-shadow: var(--shadow-hover);
            transform: translateX(3px);
        }
        .hot-reco .reco-side .reco-item .reco-thumb {
            width: 90px;
            height: 54px;
            border-radius: 4px;
            overflow: hidden;
            flex-shrink: 0;
            background-color: var(--bg-dark);
        }
        .hot-reco .reco-side .reco-item .reco-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hot-reco .reco-side .reco-item .reco-info h4 {
            font-size: 14px;
            font-weight: 700;
            margin: 0 0 4px;
            color: var(--text);
        }
        .hot-reco .reco-side .reco-item .reco-info .reco-date {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Footer */
        .site-footer {
            background-color: var(--bg-dark);
            padding: 56px 0 28px;
            border-top: 1px solid var(--border-dark);
            margin-top: 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-brand .brand-name {
            font-size: 26px;
            font-weight: 800;
            color: var(--accent);
            letter-spacing: 2px;
            margin-bottom: 12px;
        }
        .footer-brand p {
            color: var(--text-dark-muted);
            font-size: 14px;
            line-height: 1.7;
            margin: 0;
        }
        .footer-col h3 {
            color: var(--text-light);
            font-size: 15px;
            font-weight: 700;
            margin: 0 0 14px;
            letter-spacing: 0.5px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            color: var(--text-dark-muted);
            font-size: 14px;
            transition: color 0.25s ease;
        }
        .footer-col ul li a:hover {
            color: var(--accent);
        }
        .footer-bottom {
            border-top: 1px solid var(--border-dark);
            padding-top: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-bottom span {
            color: var(--text-dark-muted);
            font-size: 13px;
        }
        .footer-bottom .fb-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .footer-bottom .fb-links a {
            color: var(--text-dark-muted);
            font-size: 13px;
            transition: color 0.25s ease;
        }
        .footer-bottom .fb-links a:hover {
            color: var(--accent);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .snapshot-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hot-reco {
                grid-template-columns: 1fr;
            }
            .replay-panel {
                grid-template-columns: 1fr;
                padding: 24px;
            }
            .page-head h1 {
                font-size: 36px;
            }
            :root {
                --spacing-section: 56px;
            }
        }

        @media (max-width: 768px) {
            .masthead-nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--primary);
                flex-direction: column;
                align-items: stretch;
                padding: 12px 16px;
                gap: 0;
                border-bottom: 1px solid var(--border-dark);
                box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
            }
            .masthead-nav.open {
                display: flex;
            }
            .masthead-nav a {
                padding: 12px 8px;
                border-bottom: 1px solid var(--border-dark);
                font-size: 15px;
                text-align: left;
            }
            .masthead-nav a:last-child {
                border-bottom: none;
            }
            .masthead-nav a::after {
                display: none;
            }
            .nav-toggle {
                display: block;
            }
            .masthead-brand .brand-name {
                font-size: 26px;
            }
            .masthead-divider {
                display: none;
            }
            .page-head {
                padding: 28px 0 24px;
            }
            .page-head h1 {
                font-size: 28px;
            }
            .page-head .h1-icon {
                width: 44px;
                height: 44px;
            }
            .page-head .h1-icon i {
                font-size: 18px;
            }
            .video-grid {
                grid-template-columns: 1fr;
            }
            .snapshot-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
            .hot-strip .hot-item {
                flex: 0 0 260px;
            }
            .subscribe-cta {
                padding: 28px 20px;
            }
            .subscribe-cta .cta-form input {
                min-width: 100%;
            }
            .subscribe-cta .cta-form .btn-accent {
                width: 100%;
            }
            .replay-panel .replay-indicator .indicator-circle {
                width: 120px;
                height: 120px;
            }
            .replay-panel .replay-indicator .indicator-circle .ind-num {
                font-size: 36px;
            }
            .utility-nav {
                padding: 6px 12px;
            }
            .utility-nav .search-box input {
                min-width: 120px;
                width: 100%;
            }
            :root {
                --spacing-section: 40px;
                --header-height: 70px;
            }
        }

        @media (max-width: 520px) {
            .masthead-brand .brand-name {
                font-size: 22px;
                letter-spacing: 1px;
            }
            .masthead-brand .brand-mark {
                width: 32px;
                height: 32px;
            }
            .masthead-brand .brand-mark i {
                font-size: 15px;
            }
            .page-head h1 {
                font-size: 24px;
            }
            .section-title h2 {
                font-size: 22px;
            }
            .video-card .video-info h3 {
                font-size: 15px;
            }
            .hot-strip .hot-item {
                flex: 0 0 220px;
            }
            .tag-cloud .tag-pill {
                padding: 6px 14px;
                font-size: 13px;
            }
        }
