/* roulang page: index */
:root {
            --primary: #1a3c2e;
            --primary-dark: #0d1512;
            --accent: #00e676;
            --accent-soft: rgba(0, 230, 118, 0.12);
            --accent-border: rgba(0, 230, 118, 0.18);
            --surface: rgba(26, 60, 46, 0.6);
            --surface-solid: #0f1f18;
            --surface-alt: #132920;
            --text-main: #ffffff;
            --text-body: #b8c4bc;
            --text-muted: #6b7a72;
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-sm: 6px;
            --shadow-default: 0 2px 12px rgba(0, 0, 0, 0.25);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.4);
            --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --nav-height: 72px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-body);
            line-height: 1.75;
            font-size: 15px;
            letter-spacing: 0.01em;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            color: var(--text-main);
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: -0.015em;
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: #69f0ae;
        }

        a:focus-visible, button:focus-visible, input:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-padding-sm {
            padding: 56px 0;
        }

        .section-padding-lg {
            padding: 100px 0;
        }

        .text-accent {
            color: var(--accent) !important;
        }

        .bg-surface {
            background-color: var(--surface);
            border: 1px solid var(--accent-border);
        }

        /* Navigation */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            background: rgba(13, 21, 18, 0.72);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(0, 230, 118, 0.08);
            transition: background var(--transition), box-shadow var(--transition);
            min-height: var(--nav-height);
        }

        .site-header.scrolled {
            background: rgba(13, 21, 18, 0.95);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
        }

        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 800;
            color: var(--text-main) !important;
            letter-spacing: -0.01em;
        }

        .navbar-brand-custom .logo-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent);
            display: inline-block;
            box-shadow: 0 0 12px rgba(0, 230, 118, 0.6);
            flex-shrink: 0;
        }

        .navbar-brand-custom:hover {
            color: var(--text-main) !important;
        }

        .navbar-custom .nav-link {
            color: var(--text-body);
            font-weight: 500;
            font-size: 14px;
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            position: relative;
            transition: color var(--transition);
        }

        .navbar-custom .nav-link:hover,
        .navbar-custom .nav-link.active {
            color: var(--accent);
        }

        .navbar-custom .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }

        .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 82, 82, 0.15);
            color: #ff6b6b;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 20px;
            letter-spacing: 0.03em;
            white-space: nowrap;
        }

        .live-badge .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #ff5252;
            animation: pulse-dot 1.6s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(0.7); }
        }

        .nav-cta {
            background: var(--accent);
            color: #0d1512 !important;
            font-weight: 700;
            font-size: 13px;
            padding: 9px 20px;
            border-radius: var(--radius-btn);
            transition: all var(--transition);
            border: 1px solid var(--accent);
            white-space: nowrap;
        }

        .nav-cta:hover {
            background: #69f0ae;
            border-color: #69f0ae;
            box-shadow: 0 0 20px rgba(0, 230, 118, 0.35);
            transform: translateY(-1px);
            color: #0d1512 !important;
        }

        .nav-countdown {
            font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
            font-size: 12px;
            color: var(--text-body);
            font-weight: 600;
            white-space: nowrap;
        }

        .nav-countdown .num {
            color: var(--accent);
            font-size: 14px;
        }

        .navbar-toggler {
            border: 1px solid rgba(0, 230, 118, 0.2);
            background: rgba(0, 230, 118, 0.06);
            color: var(--text-main);
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.2);
        }

        .offcanvas-custom {
            background: #0d1512;
            color: var(--text-body);
        }

        .offcanvas-custom .nav-link {
            color: var(--text-body);
            font-size: 18px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 230, 118, 0.08);
        }

        .offcanvas-custom .nav-link:hover,
        .offcanvas-custom .nav-link.active {
            color: var(--accent);
        }

        /* Top status bar */
        .top-status-bar {
            background: #0a1410;
            border-bottom: 1px solid rgba(0, 230, 118, 0.08);
            padding: 10px 0;
            margin-top: var(--nav-height);
            font-size: 12px;
            color: var(--text-body);
            display: flex;
            align-items: center;
            gap: 20px;
            overflow-x: auto;
            white-space: nowrap;
            scrollbar-width: thin;
            scrollbar-color: var(--accent) transparent;
        }

        .top-status-bar::-webkit-scrollbar {
            height: 3px;
        }

        .top-status-bar::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 3px;
        }

        .status-tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: var(--accent-soft);
            border: 1px solid var(--accent-border);
            color: var(--accent);
            padding: 3px 10px;
            border-radius: 20px;
            font-weight: 600;
            flex-shrink: 0;
        }

        .status-news {
            color: var(--text-muted);
            flex-shrink: 0;
        }

        .status-news strong {
            color: var(--text-body);
            font-weight: 600;
        }

        /* Hero with stacked cards */
        .hero-section {
            padding: 56px 0 72px;
            background-image: linear-gradient(180deg, rgba(13, 21, 18, 0.6) 0%, rgba(13, 21, 18, 0.92) 100%), url('/assets/images/7cd91766cdd5e91a.webp');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            position: relative;
            min-height: 620px;
            display: flex;
            align-items: center;
        }

        .hero-stack {
            display: grid;
            grid-template-columns: 1fr 1.6fr 1fr;
            gap: 24px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-main-card {
            background: var(--surface);
            backdrop-filter: blur(12px);
            border: 1px solid var(--accent-border);
            border-radius: var(--radius-card);
            padding: 48px 40px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
            position: relative;
        }

        .hero-main-card .hero-badge {
            display: inline-block;
            background: var(--accent-soft);
            border: 1px solid var(--accent-border);
            color: var(--accent);
            font-size: 12px;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 16px;
            letter-spacing: 0.02em;
        }

        .hero-main-card h1 {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
            color: var(--text-main);
        }

        .hero-main-card .hero-subtitle {
            font-size: 16px;
            color: var(--text-body);
            line-height: 1.8;
            margin-bottom: 24px;
            max-width: 520px;
        }

        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 8px;
        }

        .btn-primary-accent {
            background: var(--accent);
            color: #0d1512;
            border: 1px solid var(--accent);
            font-weight: 700;
            font-size: 15px;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            transition: all var(--transition);
            letter-spacing: 0.01em;
        }

        .btn-primary-accent:hover {
            background: #69f0ae;
            border-color: #69f0ae;
            color: #0d1512;
            box-shadow: 0 0 24px rgba(0, 230, 118, 0.35);
            transform: translateY(-2px);
        }

        .btn-outline-accent {
            background: transparent;
            color: var(--accent);
            border: 1px solid rgba(0, 230, 118, 0.5);
            font-weight: 600;
            font-size: 15px;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            transition: all var(--transition);
            letter-spacing: 0.01em;
        }

        .btn-outline-accent:hover {
            border-color: var(--accent);
            background: var(--accent-soft);
            color: var(--accent);
            box-shadow: 0 0 20px rgba(0, 230, 118, 0.2);
            transform: translateY(-2px);
        }

        .hero-side-card {
            background: var(--surface-solid);
            border: 1px solid rgba(0, 230, 118, 0.12);
            border-radius: var(--radius-card);
            padding: 24px 20px;
            box-shadow: var(--shadow-default);
            transition: all var(--transition);
        }

        .hero-side-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--accent-border);
        }

        .hero-side-card .side-title {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-muted);
            font-weight: 700;
            margin-bottom: 12px;
        }

        .hero-side-card .match-score {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-main);
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .hero-side-card .match-score .vs {
            font-size: 18px;
            color: var(--text-muted);
            font-weight: 400;
        }

        .hero-side-card .match-info {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 8px;
        }

        .hero-side-card .hero-stat-number {
            font-size: 28px;
            font-weight: 800;
            color: var(--accent);
            font-family: 'SF Mono', 'Menlo', monospace;
        }

        .hero-side-card .hero-stat-label {
            font-size: 11px;
            color: var(--text-muted);
        }

        /* Section titles */
        .section-title {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.7;
            margin-bottom: 40px;
            max-width: 720px;
        }

        .section-label {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        /* Cards */
        .info-card {
            background: var(--surface);
            border: 1px solid var(--accent-border);
            border-radius: var(--radius-card);
            padding: 28px 24px;
            box-shadow: var(--shadow-default);
            transition: all var(--transition);
            height: 100%;
        }

        .info-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(0, 230, 118, 0.35);
        }

        .info-card .card-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            background: var(--accent-soft);
            border: 1px solid var(--accent-border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--accent);
            margin-bottom: 16px;
        }

        .info-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .info-card p {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* Match cards */
        .match-card {
            background: var(--surface);
            border: 1px solid var(--accent-border);
            border-radius: var(--radius-card);
            padding: 22px 20px;
            box-shadow: var(--shadow-default);
            transition: all var(--transition);
            height: 100%;
            text-align: center;
        }

        .match-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(0, 230, 118, 0.35);
        }

        .match-card .match-time {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 600;
            letter-spacing: 0.06em;
            margin-bottom: 6px;
        }

        .match-card .match-teams {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 8px;
        }

        .match-card .match-score-big {
            font-size: 40px;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: -0.02em;
            line-height: 1;
            margin: 10px 0;
        }

        .match-card .match-score-big .highlight {
            color: var(--accent);
        }

        .match-card .match-detail {
            font-size: 12px;
            color: var(--text-muted);
        }

        .match-card .data-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 6px 0;
            border-bottom: 1px solid rgba(0, 230, 118, 0.08);
            font-size: 12px;
            color: var(--text-body);
        }

        .match-card .data-row:last-child {
            border-bottom: none;
        }

        .match-card .data-row .num {
            color: var(--accent);
            font-weight: 700;
            font-size: 14px;
        }

        /* Calendar */
        .calendar-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .calendar-list li {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 16px;
            border-bottom: 1px solid rgba(0, 230, 118, 0.08);
            transition: background var(--transition);
            border-radius: var(--radius-sm);
        }

        .calendar-list li:hover {
            background: var(--accent-soft);
        }

        .calendar-list .day {
            font-size: 20px;
            font-weight: 800;
            color: var(--accent);
            min-width: 36px;
            text-align: center;
        }

        .calendar-list .date-meta {
            font-size: 11px;
            color: var(--text-muted);
        }

        .calendar-list .event-title {
            font-weight: 600;
            color: var(--text-main);
            font-size: 14px;
        }

        .calendar-list .event-desc {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Social proof */
        .stat-block {
            text-align: center;
            padding: 20px;
        }

        .stat-block .stat-number {
            font-size: 48px;
            font-weight: 800;
            color: var(--accent);
            font-family: 'SF Mono', 'Menlo', monospace;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }

        .stat-block .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 6px;
            font-weight: 500;
        }

        /* Comparison table */
        .comparison-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: var(--surface-solid);
            border-radius: var(--radius-card);
            overflow: hidden;
            border: 1px solid var(--accent-border);
        }

        .comparison-table th,
        .comparison-table td {
            padding: 16px 20px;
            border-bottom: 1px solid rgba(0, 230, 118, 0.08);
            text-align: left;
            font-size: 14px;
        }

        .comparison-table th {
            background: rgba(0, 230, 118, 0.06);
            color: var(--text-main);
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 0.03em;
        }

        .comparison-table td:first-child {
            color: var(--text-body);
            font-weight: 500;
        }

        .comparison-table td.highlight-row {
            color: var(--accent);
            font-weight: 700;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .check-icon {
            color: var(--accent);
            font-weight: 700;
        }

        .muted-icon {
            color: var(--text-muted);
        }

        /* News cards */
        .news-card {
            background: var(--surface-solid);
            border: 1px solid rgba(0, 230, 118, 0.12);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-default);
            transition: all var(--transition);
            height: 100%;
        }

        .news-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(0, 230, 118, 0.3);
        }

        .news-card .news-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            background: var(--surface-alt);
        }

        .news-card .news-body {
            padding: 20px;
        }

        .news-card .news-tag {
            font-size: 11px;
            color: var(--accent);
            font-weight: 700;
            letter-spacing: 0.04em;
            margin-bottom: 8px;
        }

        .news-card h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.5;
        }

        .news-card .news-date {
            font-size: 11px;
            color: var(--text-muted);
        }

        .news-card .news-excerpt {
            font-size: 13px;
            color: var(--text-body);
            line-height: 1.7;
            margin-top: 8px;
        }

        /* FAQ Accordion */
        .accordion-custom .accordion-item {
            background: var(--surface-solid);
            border: 1px solid rgba(0, 230, 118, 0.12);
            border-radius: var(--radius-card) !important;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-default);
        }

        .accordion-custom .accordion-button {
            background: transparent;
            color: var(--text-main);
            font-weight: 700;
            font-size: 15px;
            padding: 18px 24px;
            border: none;
            box-shadow: none;
            letter-spacing: 0.01em;
            transition: all var(--transition);
        }

        .accordion-custom .accordion-button:hover {
            color: var(--accent);
        }

        .accordion-custom .accordion-button:not(.collapsed) {
            background: rgba(0, 230, 118, 0.06);
            color: var(--accent);
            border-left: 3px solid var(--accent);
            border-radius: 0 !important;
        }

        .accordion-custom .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.15);
            border-color: transparent;
        }

        .accordion-custom .accordion-button::after {
            filter: invert(1) sepia(1) saturate(5) hue-rotate(90deg);
        }

        .accordion-custom .accordion-body {
            padding: 6px 24px 20px 24px;
            color: var(--text-body);
            font-size: 14px;
            line-height: 1.8;
            background: transparent;
        }

        /* Guarantee bar */
        .guarantee-bar {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 16px;
            background: var(--surface);
            border: 1px solid var(--accent-border);
            border-radius: var(--radius-card);
            padding: 28px 32px;
        }

        .guarantee-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            color: var(--text-body);
            font-weight: 500;
        }

        .guarantee-item .gi-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--accent-soft);
            border: 1px solid var(--accent-border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 16px;
            flex-shrink: 0;
        }

        /* Brand intro */
        .brand-intro-text {
            font-size: 15px;
            line-height: 2;
            color: var(--text-body);
            max-width: 860px;
        }

        /* Article cards */
        .article-card {
            background: var(--surface-solid);
            border: 1px solid rgba(0, 230, 118, 0.12);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-default);
            transition: all var(--transition);
            height: 100%;
        }

        .article-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(0, 230, 118, 0.3);
        }

        .article-card .article-img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            background: var(--surface-alt);
        }

        .article-card .article-body {
            padding: 18px 20px;
        }

        .article-card h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 6px;
            line-height: 1.5;
        }

        .article-card .article-meta {
            font-size: 11px;
            color: var(--text-muted);
        }

        /* Data entry cards */
        .data-entry-card {
            background: var(--surface);
            border: 1px solid var(--accent-border);
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: var(--shadow-default);
            transition: all var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .data-entry-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(0, 230, 118, 0.35);
        }

        .data-entry-card .entry-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .data-entry-card .entry-data {
            font-size: 22px;
            font-weight: 800;
            color: var(--accent);
            margin: 8px 0;
            font-family: 'SF Mono', 'Menlo', monospace;
        }

        .data-entry-card .entry-desc {
            font-size: 13px;
            color: var(--text-body);
            margin-bottom: 16px;
            flex-grow: 1;
        }

        /* Subscribe form */
        .subscribe-form {
            display: flex;
            gap: 10px;
            max-width: 520px;
            flex-wrap: wrap;
        }

        .subscribe-form input[type="email"],
        .subscribe-form input[type="text"] {
            flex: 1;
            min-width: 240px;
            padding: 12px 18px;
            border-radius: var(--radius-btn);
            border: 1px solid rgba(0, 230, 118, 0.25);
            background: var(--surface-solid);
            color: var(--text-main);
            font-size: 14px;
            transition: all var(--transition);
        }

        .subscribe-form input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.15);
        }

        .subscribe-form input::placeholder {
            color: var(--text-muted);
        }

        /* Bottom fixed CTA */
        .bottom-fixed-cta {
            position: fixed;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1040;
            background: rgba(13, 21, 18, 0.9);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(0, 230, 118, 0.22);
            border-radius: 40px;
            padding: 12px 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            transition: all var(--transition);
            white-space: nowrap;
        }

        .bottom-fixed-cta .cta-text {
            font-size: 14px;
            color: var(--text-body);
            font-weight: 500;
        }

        .bottom-fixed-cta .cta-text strong {
            color: var(--text-main);
            font-weight: 700;
        }

        .bottom-fixed-cta .btn-cta-sm {
            background: var(--accent);
            color: #0d1512;
            border: none;
            font-weight: 700;
            font-size: 13px;
            padding: 8px 20px;
            border-radius: 30px;
            transition: all var(--transition);
        }

        .bottom-fixed-cta .btn-cta-sm:hover {
            background: #69f0ae;
            box-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
        }

        /* Footer */
        .site-footer {
            background: #0a1410;
            border-top: 1px solid rgba(0, 230, 118, 0.1);
            padding: 48px 0 32px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .site-footer .footer-brand {
            font-size: 20px;
            font-weight: 800;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        .site-footer .footer-brand .logo-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent);
            display: inline-block;
        }

        .site-footer .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .site-footer .footer-links li {
            margin-bottom: 6px;
        }

        .site-footer .footer-links a {
            color: var(--text-muted);
            font-size: 13px;
            transition: color var(--transition);
            text-decoration: none;
        }

        .site-footer .footer-links a:hover {
            color: var(--accent);
        }

        .site-footer .copyright {
            font-size: 12px;
            color: #4a5a52;
            margin-top: 20px;
            border-top: 1px solid rgba(0, 230, 118, 0.08);
            padding-top: 16px;
        }

        /* Scroll reveal */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .hero-stack {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .hero-main-card h1 {
                font-size: 38px;
            }

            .hero-main-card {
                padding: 32px 24px;
            }

            .hero-section {
                min-height: auto;
                padding: 40px 0 56px;
            }

            .section-title {
                font-size: 26px;
            }

            .section-padding, .section-padding-lg {
                padding: 56px 0;
            }

            .bottom-fixed-cta {
                bottom: 12px;
                padding: 10px 16px;
                gap: 10px;
                border-radius: 30px;
                max-width: calc(100% - 24px);
            }

            .bottom-fixed-cta .cta-text {
                font-size: 12px;
            }

            .bottom-fixed-cta .btn-cta-sm {
                font-size: 12px;
                padding: 6px 14px;
            }
        }

        @media (max-width: 575.98px) {
            .hero-main-card h1 {
                font-size: 32px;
            }

            .hero-subtitle {
                font-size: 14px;
            }

            .section-title {
                font-size: 22px;
            }

            .section-padding, .section-padding-lg, .section-padding-sm {
                padding: 40px 0;
            }

            .stat-block .stat-number {
                font-size: 36px;
            }

            .match-card .match-score-big {
                font-size: 30px;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 10px 12px;
                font-size: 12px;
            }

            .guarantee-bar {
                padding: 20px;
                gap: 12px;
            }

            .bottom-fixed-cta {
                display: none;
            }

            .bottom-fixed-cta.mobile-shrink {
                display: none;
            }

            .subscribe-form {
                flex-direction: column;
            }

            .subscribe-form input[type="email"],
            .subscribe-form input[type="text"] {
                min-width: 100%;
            }

            .btn-primary-accent,
            .btn-outline-accent {
                font-size: 14px;
                padding: 10px 18px;
            }

            .nav-cta {
                font-size: 12px;
                padding: 7px 14px;
            }

            .top-status-bar {
                font-size: 11px;
                gap: 12px;
                padding: 8px 0;
            }
        }

        @media (max-width: 360px) {
            .hero-main-card h1 {
                font-size: 28px;
            }

            .btn-primary-accent,
            .btn-outline-accent {
                width: 100%;
                text-align: center;
            }
        }

/* roulang page: category2 */
:root {
            --primary: #1a3c2e;
            --primary-dark: #0d1512;
            --accent: #00e676;
            --accent-soft: rgba(0, 230, 118, 0.12);
            --accent-border: rgba(0, 230, 118, 0.18);
            --surface: rgba(26, 60, 46, 0.6);
            --surface-solid: #0f1f18;
            --surface-alt: #132920;
            --text-main: #ffffff;
            --text-body: #b8c4bc;
            --text-muted: #6b7a72;
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-sm: 6px;
            --shadow-default: 0 2px 12px rgba(0, 0, 0, 0.25);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.4);
            --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --nav-height: 72px;
        }
        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-body);
            line-height: 1.75;
            font-size: 15px;
            letter-spacing: 0.01em;
            overflow-x: hidden;
            padding-top: var(--nav-height);
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: #69f0ae;
        }
        a:focus-visible, button:focus-visible, input:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-padding-sm {
            padding: 56px 0;
        }
        .section-padding-lg {
            padding: 100px 0;
        }
        .text-accent {
            color: var(--accent) !important;
        }
        /* Navigation */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            background: rgba(13, 21, 18, 0.72);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(0, 230, 118, 0.08);
            transition: background var(--transition), box-shadow var(--transition);
            min-height: var(--nav-height);
        }
        .site-header.scrolled {
            background: rgba(13, 21, 18, 0.95);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
        }
        .navbar-custom {
            min-height: var(--nav-height);
            padding-top: 0;
            padding-bottom: 0;
        }
        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 800;
            color: var(--text-main) !important;
            letter-spacing: -0.01em;
            padding-top: 0;
            padding-bottom: 0;
        }
        .navbar-brand-custom .logo-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent);
            display: inline-block;
            box-shadow: 0 0 12px rgba(0, 230, 118, 0.6);
            flex-shrink: 0;
        }
        .navbar-brand-custom:hover {
            color: var(--text-main) !important;
        }
        .navbar-custom .nav-link {
            color: var(--text-body);
            font-weight: 500;
            font-size: 14px;
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            position: relative;
            transition: color var(--transition);
        }
        .navbar-custom .nav-link:hover,
        .navbar-custom .nav-link.active {
            color: var(--accent);
        }
        .navbar-custom .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }
        .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 82, 82, 0.15);
            color: #ff6b6b;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 20px;
            letter-spacing: 0.03em;
            white-space: nowrap;
        }
        .live-badge .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #ff5252;
            animation: pulse-dot 1.6s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.4); }
        }
        .nav-cta {
            background: var(--accent);
            color: #0d1512 !important;
            font-weight: 700;
            font-size: 13px;
            padding: 9px 20px;
            border-radius: var(--radius-btn);
            transition: all var(--transition);
            border: 1px solid var(--accent);
            white-space: nowrap;
        }
        .nav-cta:hover {
            background: #69f0ae;
            border-color: #69f0ae;
            box-shadow: 0 0 20px rgba(0, 230, 118, 0.35);
            transform: translateY(-1px);
            color: #0d1512 !important;
        }
        .nav-countdown {
            font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
            font-size: 12px;
            color: var(--text-body);
            font-weight: 600;
            white-space: nowrap;
        }
        .nav-countdown .num {
            color: var(--accent);
            font-size: 14px;
        }
        .navbar-toggler {
            border: 1px solid rgba(0, 230, 118, 0.2);
            background: rgba(0, 230, 118, 0.06);
            color: var(--text-main);
            padding: 8px 12px;
        }
        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.2);
        }
        .offcanvas-custom {
            background: #0d1512;
            color: var(--text-body);
        }
        .offcanvas-custom .nav-link {
            color: var(--text-body);
            font-size: 18px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 230, 118, 0.08);
        }
        .offcanvas-custom .nav-link:hover,
        .offcanvas-custom .nav-link.active {
            color: var(--accent);
        }
        /* Footer */
        .site-footer {
            background: #0a0f0c;
            border-top: 1px solid rgba(0, 230, 118, 0.08);
            padding: 56px 0 24px;
            margin-top: 0;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 12px;
        }
        .footer-brand .logo-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--accent);
            display: inline-block;
            box-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            color: var(--text-muted);
            font-size: 13px;
            transition: color var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        .copyright {
            border-top: 1px solid rgba(0, 230, 118, 0.06);
            margin-top: 32px;
            padding-top: 16px;
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
        }
        /* Card base */
        .data-card {
            background: var(--surface);
            border: 1px solid var(--accent-border);
            border-radius: var(--radius-card);
            padding: 24px;
            transition: all var(--transition);
            box-shadow: var(--shadow-default);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .data-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(0, 230, 118, 0.35);
        }
        .data-card .card-img-wrap {
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 16px;
            position: relative;
            aspect-ratio: 16/9;
            background: #0a0f0c;
        }
        .data-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition);
        }
        .data-card:hover .card-img-wrap img {
            transform: scale(1.04);
        }
        .data-card .card-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            color: var(--accent);
            background: var(--accent-soft);
            border: 1px solid var(--accent-border);
            padding: 2px 10px;
            border-radius: 20px;
            margin-bottom: 10px;
            letter-spacing: 0.03em;
        }
        .data-card .card-date {
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .data-card h3, .data-card .card-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-main);
            margin: 8px 0;
            line-height: 1.4;
        }
        .data-card .card-summary {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.7;
            margin-bottom: 0;
        }
        /* Hero banner (category page) */
        .category-banner {
            background: linear-gradient(135deg, rgba(26, 60, 46, 0.9) 0%, rgba(13, 21, 18, 0.95) 60%),
                        url('/assets/images/5ebb7518f37790b8.webp') center/cover no-repeat;
            padding: 72px 0 64px;
            border-bottom: 1px solid rgba(0, 230, 118, 0.1);
            position: relative;
        }
        .category-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(0, 230, 118, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }
        .breadcrumb-custom {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 12px;
            position: relative;
        }
        .breadcrumb-custom a {
            color: var(--text-muted);
            transition: color var(--transition);
        }
        .breadcrumb-custom a:hover {
            color: var(--accent);
        }
        .breadcrumb-custom .sep {
            margin: 0 8px;
            color: var(--text-muted);
        }
        .category-banner h1 {
            font-size: 42px;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 12px;
            letter-spacing: -0.02em;
            position: relative;
        }
        .category-banner .banner-desc {
            font-size: 16px;
            color: var(--text-body);
            max-width: 640px;
            line-height: 1.8;
            position: relative;
            margin-bottom: 0;
        }
        /* Stats strip */
        .stat-strip {
            background: var(--surface-solid);
            border: 1px solid var(--accent-border);
            border-radius: var(--radius-card);
            padding: 20px 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
            justify-content: space-between;
        }
        .stat-item {
            display: flex;
            flex-direction: column;
            min-width: 100px;
        }
        .stat-item .stat-label {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 4px;
        }
        .stat-item .stat-value {
            font-size: 26px;
            font-weight: 800;
            color: var(--accent);
            font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
            line-height: 1.2;
        }
        .stat-item .stat-sub {
            font-size: 12px;
            color: var(--text-body);
        }
        /* Tag cloud */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag-pill {
            display: inline-flex;
            align-items: center;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-body);
            background: var(--surface);
            border: 1px solid rgba(0, 230, 118, 0.14);
            padding: 6px 16px;
            border-radius: 20px;
            transition: all var(--transition);
            cursor: default;
        }
        .tag-pill:hover {
            color: var(--accent);
            border-color: var(--accent-border);
            background: var(--accent-soft);
        }
        .tag-pill .tag-num {
            color: var(--text-muted);
            font-size: 11px;
            margin-left: 6px;
        }
        /* Table */
        .table-custom {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: var(--surface);
            border-radius: var(--radius-card);
            overflow: hidden;
            border: 1px solid var(--accent-border);
        }
        .table-custom thead th {
            background: rgba(0, 230, 118, 0.08);
            color: var(--text-main);
            font-size: 13px;
            font-weight: 700;
            padding: 14px 16px;
            text-align: left;
            border-bottom: 1px solid rgba(0, 230, 118, 0.12);
            white-space: nowrap;
        }
        .table-custom tbody td {
            padding: 13px 16px;
            font-size: 14px;
            color: var(--text-body);
            border-bottom: 1px solid rgba(0, 230, 118, 0.06);
            white-space: nowrap;
        }
        .table-custom tbody tr:last-child td {
            border-bottom: none;
        }
        .table-custom tbody tr:hover td {
            background: rgba(0, 230, 118, 0.04);
            color: var(--text-main);
        }
        .table-custom .rank-1,
        .table-custom .rank-highlight {
            color: var(--accent) !important;
            font-weight: 700;
        }
        /* CTA section */
        .cta-section {
            background: linear-gradient(135deg, rgba(26, 60, 46, 0.85) 0%, rgba(13, 21, 18, 0.95) 70%),
                        url('/assets/images/24f7baff28d73639.webp') center/cover no-repeat;
            border-radius: var(--radius-card);
            border: 1px solid var(--accent-border);
            padding: 48px 40px;
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            align-items: center;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 230, 118, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-section h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 6px;
            position: relative;
            z-index: 1;
        }
        .cta-section p {
            font-size: 14px;
            color: var(--text-body);
            margin-bottom: 0;
            position: relative;
            z-index: 1;
        }
        .cta-input-group {
            display: flex;
            gap: 10px;
            position: relative;
            z-index: 1;
            flex-wrap: wrap;
        }
        .cta-input-group input {
            background: rgba(13, 21, 18, 0.8);
            border: 1px solid rgba(0, 230, 118, 0.2);
            color: var(--text-main);
            font-size: 14px;
            padding: 10px 16px;
            border-radius: var(--radius-btn);
            min-width: 240px;
            transition: all var(--transition);
        }
        .cta-input-group input::placeholder {
            color: var(--text-muted);
        }
        .cta-input-group input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.15);
        }
        .btn-accent {
            background: var(--accent);
            color: #0d1512 !important;
            font-weight: 700;
            font-size: 14px;
            padding: 10px 24px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--accent);
            transition: all var(--transition);
            white-space: nowrap;
        }
        .btn-accent:hover {
            background: #69f0ae;
            border-color: #69f0ae;
            box-shadow: 0 0 20px rgba(0, 230, 118, 0.35);
            transform: translateY(-1px);
        }
        .btn-outline-accent {
            background: transparent;
            color: var(--accent);
            font-weight: 600;
            font-size: 14px;
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--accent-border);
            transition: all var(--transition);
        }
        .btn-outline-accent:hover {
            background: var(--accent-soft);
            border-color: var(--accent);
            color: var(--accent);
        }
        /* Ranking list (support section) */
        .ranking-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 16px;
            background: var(--surface);
            border: 1px solid rgba(0, 230, 118, 0.1);
            border-radius: var(--radius-sm);
            margin-bottom: 10px;
            transition: all var(--transition);
        }
        .ranking-item:hover {
            border-color: var(--accent-border);
            background: rgba(0, 230, 118, 0.04);
            transform: translateX(4px);
        }
        .ranking-item .rank-num {
            font-size: 20px;
            font-weight: 800;
            color: var(--accent);
            font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
            width: 36px;
            text-align: center;
            flex-shrink: 0;
        }
        .ranking-item .rank-info {
            flex: 1;
            min-width: 0;
        }
        .ranking-item .rank-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-main);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .ranking-item .rank-meta {
            font-size: 12px;
            color: var(--text-muted);
        }
        .ranking-item .rank-value {
            font-size: 18px;
            font-weight: 700;
            color: var(--accent);
            font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
            flex-shrink: 0;
        }
        /* Section heading */
        .section-heading {
            margin-bottom: 36px;
        }
        .section-heading h2 {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }
        .section-heading .heading-line {
            width: 40px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
            margin-bottom: 12px;
        }
        .section-heading p {
            font-size: 14px;
            color: var(--text-muted);
            max-width: 560px;
            margin-bottom: 0;
        }
        /* Responsive */
        @media (max-width: 992px) {
            .navbar-custom .navbar-nav {
                padding: 16px 0;
            }
            .navbar-custom .nav-link {
                padding: 8px 0;
                font-size: 14px;
            }
            .category-banner h1 {
                font-size: 34px;
            }
            .section-heading h2 {
                font-size: 24px;
            }
            .section-padding {
                padding: 64px 0;
            }
        }
        @media (max-width: 768px) {
            .category-banner {
                padding: 56px 0 48px;
            }
            .category-banner h1 {
                font-size: 30px;
            }
            .stats-row .col-md-3 {
                margin-bottom: 12px;
            }
            .stat-strip {
                padding: 16px;
                gap: 16px;
            }
            .stat-item .stat-value {
                font-size: 20px;
            }
            .cta-section {
                padding: 32px 24px;
                flex-direction: column;
                align-items: flex-start;
            }
            .cta-input-group {
                width: 100%;
            }
            .cta-input-group input {
                min-width: 100%;
            }
        }
        @media (max-width: 520px) {
            body {
                font-size: 14px;
            }
            .category-banner h1 {
                font-size: 26px;
            }
            .section-heading h2 {
                font-size: 20px;
            }
            .data-card {
                padding: 18px;
            }
            .table-custom thead th,
            .table-custom tbody td {
                padding: 10px 10px;
                font-size: 12px;
            }
            .breadcrumb-custom {
                font-size: 12px;
            }
        }
        /* Scroll reveal animation */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* Divider */
        .divider-glow {
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(0, 230, 118, 0.2) 50%, transparent 100%);
            margin: 0;
            border: none;
        }
        /* Offcanvas mobile nav */
        .offcanvas-custom .offcanvas-header {
            border-bottom: 1px solid rgba(0, 230, 118, 0.08);
        }
        .offcanvas-custom .btn-close {
            filter: invert(1);
            opacity: 0.7;
        }

/* roulang page: category1 */
:root {
            --primary: #1a3c2e;
            --primary-dark: #0d1512;
            --accent: #00e676;
            --accent-soft: rgba(0, 230, 118, 0.12);
            --accent-border: rgba(0, 230, 118, 0.18);
            --surface: rgba(26, 60, 46, 0.6);
            --surface-solid: #0f1f18;
            --surface-alt: #132920;
            --text-main: #ffffff;
            --text-body: #b8c4bc;
            --text-muted: #6b7a72;
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-sm: 6px;
            --shadow-default: 0 2px 12px rgba(0, 0, 0, 0.25);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.4);
            --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --nav-height: 72px;
        }
        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-body);
            line-height: 1.75;
            font-size: 15px;
            letter-spacing: 0.01em;
            overflow-x: hidden;
            padding-top: var(--nav-height);
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: #69f0ae;
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-padding-sm {
            padding: 56px 0;
        }
        .section-padding-lg {
            padding: 100px 0;
        }
        .text-accent {
            color: var(--accent) !important;
        }
        .text-main {
            color: var(--text-main) !important;
        }
        .text-muted {
            color: var(--text-muted) !important;
        }
        /* Navigation */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            background: rgba(13, 21, 18, 0.72);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(0, 230, 118, 0.08);
            transition: background var(--transition), box-shadow var(--transition);
            min-height: var(--nav-height);
            display: flex;
            align-items: center;
        }
        .site-header.scrolled {
            background: rgba(13, 21, 18, 0.95);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
        }
        .navbar-custom {
            padding: 0;
            min-height: var(--nav-height);
            width: 100%;
        }
        .navbar-custom .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: nowrap;
        }
        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 800;
            color: var(--text-main) !important;
            letter-spacing: -0.01em;
            padding: 12px 0;
            white-space: nowrap;
        }
        .navbar-brand-custom .logo-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent);
            display: inline-block;
            box-shadow: 0 0 12px rgba(0, 230, 118, 0.6);
            flex-shrink: 0;
        }
        .navbar-brand-custom:hover {
            color: var(--text-main) !important;
        }
        .navbar-custom .nav-link {
            color: var(--text-body);
            font-weight: 500;
            font-size: 14px;
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            position: relative;
            transition: color var(--transition);
        }
        .navbar-custom .nav-link:hover,
        .navbar-custom .nav-link.active {
            color: var(--accent);
        }
        .navbar-custom .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }
        .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 82, 82, 0.15);
            color: #ff6b6b;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 20px;
            letter-spacing: 0.03em;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .live-badge .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #ff5252;
            animation: pulse-dot 1.6s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.4;
                transform: scale(0.7);
            }
        }
        .nav-cta {
            background: var(--accent);
            color: #0d1512 !important;
            font-weight: 700;
            font-size: 13px;
            padding: 9px 20px;
            border-radius: var(--radius-btn);
            transition: all var(--transition);
            border: 1px solid var(--accent);
            white-space: nowrap;
            display: inline-block;
            flex-shrink: 0;
        }
        .nav-cta:hover {
            background: #69f0ae;
            border-color: #69f0ae;
            box-shadow: 0 0 20px rgba(0, 230, 118, 0.35);
            transform: translateY(-1px);
            color: #0d1512 !important;
        }
        .nav-countdown {
            font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
            font-size: 12px;
            color: var(--text-body);
            font-weight: 600;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .nav-countdown .num {
            color: var(--accent);
            font-size: 14px;
        }
        .navbar-toggler {
            border: 1px solid rgba(0, 230, 118, 0.2);
            background: rgba(0, 230, 118, 0.06);
            color: var(--text-main);
            padding: 8px 12px;
            border-radius: var(--radius-sm);
            flex-shrink: 0;
        }
        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.2);
        }
        .offcanvas-custom {
            background: #0d1512;
            color: var(--text-body);
        }
        .offcanvas-custom .offcanvas-header {
            border-bottom: 1px solid rgba(0, 230, 118, 0.1);
            padding: 20px 24px;
        }
        .offcanvas-custom .offcanvas-title {
            color: var(--text-main);
            font-weight: 700;
            font-size: 20px;
        }
        .offcanvas-custom .btn-close {
            filter: invert(1);
        }
        .offcanvas-custom .offcanvas-body {
            padding: 20px 24px;
        }
        .offcanvas-custom .nav-link {
            color: var(--text-body);
            font-size: 18px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 230, 118, 0.08);
            border-radius: 0;
        }
        .offcanvas-custom .nav-link:hover,
        .offcanvas-custom .nav-link.active {
            color: var(--accent);
            background: transparent;
        }
        .offcanvas-custom .nav-link.active {
            border-left: 3px solid var(--accent);
            padding-left: 12px;
        }
        .offcanvas-custom .nav-cta {
            margin-top: 16px;
            display: inline-block;
        }
        @media (max-width: 991.98px) {
            .navbar-custom .navbar-collapse {
                display: none !important;
            }
            .navbar-toggler {
                display: inline-block !important;
            }
            .navbar-custom .d-flex.align-items-center.gap-2 {
                display: none !important;
            }
        }
        @media (min-width: 992px) {
            .navbar-toggler {
                display: none;
            }
            .offcanvas {
                display: none !important;
            }
        }
        /* Breadcrumb */
        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 16px;
            font-size: 13px;
            color: var(--text-muted);
        }
        .breadcrumb-custom a {
            color: var(--text-muted);
            transition: color var(--transition);
        }
        .breadcrumb-custom a:hover {
            color: var(--accent);
        }
        .breadcrumb-custom .separator {
            color: rgba(0, 230, 118, 0.4);
            font-size: 12px;
        }
        .breadcrumb-custom .current {
            color: var(--accent);
            font-weight: 600;
        }
        /* Category Banner */
        .category-banner {
            position: relative;
            background: linear-gradient(180deg, rgba(13, 21, 18, 0.92) 0%, rgba(13, 21, 18, 0.6) 100%), url('/assets/images/7cd91766cdd5e91a.webp') center center / cover no-repeat;
            padding: 72px 0 56px;
            border-bottom: 1px solid rgba(0, 230, 118, 0.1);
            overflow: hidden;
        }
        .category-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(0, 230, 118, 0.06) 0%, transparent 60%);
            pointer-events: none;
        }
        .category-banner .container {
            position: relative;
            z-index: 1;
        }
        .category-banner h1 {
            color: var(--text-main);
            font-size: 48px;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 12px;
            line-height: 1.2;
        }
        .category-banner .subtitle {
            color: var(--text-body);
            font-size: 18px;
            max-width: 600px;
            line-height: 1.7;
            margin-bottom: 0;
        }
        .category-banner .banner-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--accent-soft);
            color: var(--accent);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            border: 1px solid var(--accent-border);
            margin-bottom: 16px;
        }
        /* Section heading */
        .section-heading {
            margin-bottom: 40px;
        }
        .section-heading .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 8px;
        }
        .section-heading .eyebrow::before {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }
        .section-heading h2 {
            color: var(--text-main);
            font-size: 32px;
            font-weight: 800;
            letter-spacing: -0.01em;
            line-height: 1.3;
            margin-bottom: 8px;
        }
        .section-heading .heading-desc {
            color: var(--text-muted);
            font-size: 15px;
            max-width: 600px;
            line-height: 1.7;
            margin-bottom: 0;
        }
        /* Match card */
        .match-card {
            background: var(--surface);
            border: 1px solid var(--accent-border);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: all var(--transition);
            height: 100%;
            position: relative;
        }
        .match-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(0, 230, 118, 0.35);
        }
        .match-card .match-image {
            position: relative;
            height: 180px;
            overflow: hidden;
            background: var(--surface-alt);
        }
        .match-card .match-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .match-card:hover .match-image img {
            transform: scale(1.04);
        }
        .match-card .match-image .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(13, 21, 18, 0.9) 100%);
        }
        .match-card .match-league-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(13, 21, 18, 0.8);
            color: var(--accent);
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 4px;
            letter-spacing: 0.04em;
            border: 1px solid rgba(0, 230, 118, 0.25);
            backdrop-filter: blur(6px);
        }
        .match-card .match-status {
            position: absolute;
            top: 12px;
            right: 12px;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 4px;
            letter-spacing: 0.04em;
        }
        .match-status.live-now {
            background: rgba(255, 82, 82, 0.2);
            color: #ff6b6b;
            border: 1px solid rgba(255, 82, 82, 0.35);
            animation: pulse-status 2s ease-in-out infinite;
        }
        .match-status.finished {
            background: rgba(107, 122, 114, 0.25);
            color: var(--text-muted);
            border: 1px solid rgba(107, 122, 114, 0.3);
        }
        .match-status.upcoming {
            background: rgba(0, 230, 118, 0.12);
            color: var(--accent);
            border: 1px solid var(--accent-border);
        }
        @keyframes pulse-status {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.6;
            }
        }
        .match-card .match-body {
            padding: 20px 20px 22px;
        }
        .match-card .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 14px;
        }
        .match-card .match-team {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            flex: 1;
            min-width: 0;
        }
        .match-card .match-team .team-name {
            color: var(--text-main);
            font-size: 14px;
            font-weight: 600;
            line-height: 1.3;
            text-align: center;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .match-card .match-team .team-logo {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--surface-solid);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(0, 230, 118, 0.15);
            font-size: 18px;
            color: var(--accent);
            font-weight: 700;
            overflow: hidden;
        }
        .match-card .match-team .team-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        .match-card .match-score {
            text-align: center;
            flex-shrink: 0;
        }
        .match-card .match-score .score {
            color: var(--text-main);
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 0.02em;
            line-height: 1.1;
        }
        .match-card .match-score .score.highlight {
            color: var(--accent);
        }
        .match-card .match-score .score-divider {
            color: var(--text-muted);
            font-size: 18px;
        }
        .match-card .match-time {
            color: var(--text-muted);
            font-size: 12px;
            font-weight: 500;
            text-align: center;
            margin-top: 2px;
        }
        .match-card .match-meta {
            display: flex;
            justify-content: center;
            gap: 12px;
            font-size: 12px;
            color: var(--text-muted);
            border-top: 1px solid rgba(0, 230, 118, 0.08);
            padding-top: 14px;
            margin-top: 4px;
        }
        .match-card .match-meta span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .match-card .match-meta i {
            color: var(--accent);
            font-size: 11px;
        }
        /* Tag cloud */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag-cloud .tag-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(26, 60, 46, 0.5);
            border: 1px solid rgba(0, 230, 118, 0.15);
            color: var(--text-body);
            font-size: 13px;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all var(--transition);
            cursor: pointer;
        }
        .tag-cloud .tag-item:hover,
        .tag-cloud .tag-item.active {
            background: var(--accent-soft);
            border-color: var(--accent);
            color: var(--accent);
        }
        .tag-cloud .tag-item i {
            font-size: 11px;
            color: var(--accent);
        }
        /* Data snapshot */
        .data-snapshot-panel {
            background: var(--surface);
            border: 1px solid var(--accent-border);
            border-radius: var(--radius-card);
            padding: 36px 32px;
        }
        .data-snapshot-panel .snapshot-item {
            text-align: center;
            padding: 16px 8px;
            border-right: 1px solid rgba(0, 230, 118, 0.1);
        }
        .data-snapshot-panel .snapshot-item:last-child {
            border-right: none;
        }
        .data-snapshot-panel .snapshot-number {
            color: var(--accent);
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
        }
        .data-snapshot-panel .snapshot-label {
            color: var(--text-body);
            font-size: 13px;
            margin-top: 6px;
            font-weight: 500;
        }
        .data-snapshot-panel .snapshot-note {
            color: var(--text-muted);
            font-size: 11px;
            margin-top: 2px;
        }
        /* Related card */
        .related-card {
            background: var(--surface);
            border: 1px solid var(--accent-border);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: all var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .related-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(0, 230, 118, 0.35);
        }
        .related-card .related-image {
            height: 160px;
            overflow: hidden;
            background: var(--surface-alt);
        }
        .related-card .related-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .related-card:hover .related-image img {
            transform: scale(1.04);
        }
        .related-card .related-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .related-card .related-date {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }
        .related-card .related-title {
            color: var(--text-main);
            font-size: 16px;
            font-weight: 700;
            line-height: 1.5;
            margin-bottom: 8px;
            flex: 1;
        }
        .related-card .related-title a {
            color: var(--text-main);
            transition: color var(--transition);
        }
        .related-card .related-title a:hover {
            color: var(--accent);
        }
        .related-card .related-excerpt {
            color: var(--text-muted);
            font-size: 13px;
            line-height: 1.7;
            margin-bottom: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        /* Subscribe panel */
        .subscribe-panel {
            background: var(--surface);
            border: 1px solid var(--accent-border);
            border-radius: var(--radius-card);
            padding: 48px 40px;
            position: relative;
            overflow: hidden;
        }
        .subscribe-panel::before {
            content: '';
            position: absolute;
            right: -60px;
            top: -60px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(0, 230, 118, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .subscribe-panel .subscribe-title {
            color: var(--text-main);
            font-size: 24px;
            font-weight: 800;
            line-height: 1.4;
            margin-bottom: 8px;
        }
        .subscribe-panel .subscribe-desc {
            color: var(--text-body);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 20px;
            max-width: 480px;
        }
        .subscribe-form {
            display: flex;
            gap: 10px;
            max-width: 420px;
            flex-wrap: wrap;
        }
        .subscribe-form input[type="email"],
        .subscribe-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            background: rgba(13, 21, 18, 0.7);
            border: 1px solid rgba(0, 230, 118, 0.2);
            border-radius: var(--radius-btn);
            color: var(--text-main);
            padding: 12px 16px;
            font-size: 14px;
            transition: border-color var(--transition), box-shadow var(--transition);
        }
        .subscribe-form input[type="email"]::placeholder,
        .subscribe-form input[type="text"]::placeholder {
            color: var(--text-muted);
        }
        .subscribe-form input[type="email"]:focus,
        .subscribe-form input[type="text"]:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.15);
            outline: none;
        }
        .subscribe-form .btn-subscribe {
            background: var(--accent);
            color: #0d1512;
            font-weight: 700;
            font-size: 14px;
            padding: 12px 24px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--accent);
            transition: all var(--transition);
            white-space: nowrap;
        }
        .subscribe-form .btn-subscribe:hover {
            background: #69f0ae;
            border-color: #69f0ae;
            box-shadow: 0 0 20px rgba(0, 230, 118, 0.35);
            transform: translateY(-1px);
        }
        /* Editor pick */
        .editor-pick-item {
            display: flex;
            gap: 16px;
            background: var(--surface);
            border: 1px solid var(--accent-border);
            border-radius: var(--radius-card);
            padding: 16px 20px;
            transition: all var(--transition);
            align-items: center;
        }
        .editor-pick-item:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-default);
            border-color: rgba(0, 230, 118, 0.35);
        }
        .editor-pick-item .pick-rank {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--accent-soft);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 16px;
            border: 1px solid var(--accent-border);
        }
        .editor-pick-item .pick-content {
            flex: 1;
            min-width: 0;
        }
        .editor-pick-item .pick-title {
            color: var(--text-main);
            font-size: 15px;
            font-weight: 600;
            line-height: 1.5;
            margin-bottom: 2px;
        }
        .editor-pick-item .pick-meta {
            color: var(--text-muted);
            font-size: 12px;
        }
        .editor-pick-item .pick-arrow {
            flex-shrink: 0;
            color: var(--text-muted);
            font-size: 14px;
            transition: all var(--transition);
        }
        .editor-pick-item:hover .pick-arrow {
            color: var(--accent);
            transform: translateX(4px);
        }
        /* Section background alternate */
        .section-alt {
            background: rgba(26, 60, 46, 0.25);
        }
        /* Footer */
        .site-footer {
            background: #09110d;
            border-top: 1px solid rgba(0, 230, 118, 0.08);
            padding: 56px 0 32px;
            color: var(--text-body);
        }
        .site-footer .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 12px;
        }
        .site-footer .footer-brand .logo-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent);
            display: inline-block;
            box-shadow: 0 0 12px rgba(0, 230, 118, 0.6);
        }
        .site-footer h6 {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 12px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            color: var(--text-muted);
            font-size: 13px;
            transition: color var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        .site-footer .copyright {
            border-top: 1px solid rgba(0, 230, 118, 0.06);
            margin-top: 40px;
            padding-top: 20px;
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
        }
        .site-footer .copyright a {
            color: var(--text-muted);
        }
        .site-footer .copyright a:hover {
            color: var(--accent);
        }
        /* Responsive */
        @media (max-width: 991.98px) {
            .category-banner h1 {
                font-size: 36px;
            }
            .category-banner {
                padding: 48px 0 40px;
            }
            .section-heading h2 {
                font-size: 26px;
            }
            .data-snapshot-panel .snapshot-item {
                border-right: none;
                border-bottom: 1px solid rgba(0, 230, 118, 0.1);
                padding: 12px 8px;
            }
            .data-snapshot-panel .snapshot-item:last-child {
                border-bottom: none;
            }
            .data-snapshot-panel {
                padding: 24px 16px;
            }
            .data-snapshot-panel .snapshot-number {
                font-size: 32px;
            }
            .section-padding {
                padding: 56px 0;
            }
            .section-padding-lg {
                padding: 72px 0;
            }
            .category-banner .subtitle {
                font-size: 16px;
            }
        }
        @media (max-width: 767.98px) {
            .category-banner h1 {
                font-size: 30px;
            }
            .section-heading h2 {
                font-size: 22px;
            }
            .section-heading .heading-desc {
                font-size: 14px;
            }
            .match-card .match-teams {
                gap: 8px;
            }
            .match-card .match-team .team-logo {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }
            .match-card .match-score .score {
                font-size: 22px;
            }
            .match-card .match-body {
                padding: 16px;
            }
            .match-card .match-image {
                height: 140px;
            }
            .subscribe-panel {
                padding: 32px 24px;
            }
            .subscribe-panel .subscribe-title {
                font-size: 20px;
            }
            .subscribe-form {
                flex-direction: column;
            }
            .subscribe-form input[type="email"],
            .subscribe-form input[type="text"] {
                min-width: 100%;
            }
            .subscribe-form .btn-subscribe {
                width: 100%;
                text-align: center;
            }
            .editor-pick-item {
                padding: 14px 16px;
            }
            .editor-pick-item .pick-rank {
                width: 32px;
                height: 32px;
                font-size: 13px;
            }
            .editor-pick-item .pick-title {
                font-size: 14px;
            }
            .section-padding {
                padding: 44px 0;
            }
            .section-padding-lg {
                padding: 56px 0;
            }
            .breadcrumb-custom {
                font-size: 12px;
            }
            .tag-cloud .tag-item {
                font-size: 12px;
                padding: 6px 12px;
            }
        }
        @media (max-width: 575.98px) {
            .category-banner h1 {
                font-size: 26px;
            }
            .category-banner .subtitle {
                font-size: 14px;
            }
            .section-heading h2 {
                font-size: 20px;
            }
            .match-card .match-score .score {
                font-size: 20px;
            }
            .related-card .related-image {
                height: 130px;
            }
            .section-padding {
                padding: 36px 0;
            }
            .navbar-brand-custom {
                font-size: 19px;
            }
        }

/* roulang page: category3 */
:root {
            --primary: #1a3c2e;
            --primary-dark: #0d1512;
            --accent: #00e676;
            --accent-soft: rgba(0, 230, 118, 0.12);
            --accent-border: rgba(0, 230, 118, 0.18);
            --surface: rgba(26, 60, 46, 0.6);
            --surface-solid: #0f1f18;
            --surface-alt: #132920;
            --text-main: #ffffff;
            --text-body: #b8c4bc;
            --text-muted: #6b7a72;
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-sm: 6px;
            --shadow-default: 0 2px 12px rgba(0, 0, 0, 0.25);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.4);
            --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --nav-height: 72px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-body);
            line-height: 1.75;
            font-size: 15px;
            letter-spacing: 0.01em;
            overflow-x: hidden;
            padding-top: var(--nav-height);
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: #69f0ae;
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }

        .section-padding {
            padding: 72px 0;
        }
        .section-padding-sm {
            padding: 48px 0;
        }
        .section-padding-lg {
            padding: 96px 0;
        }

        .text-accent {
            color: var(--accent) !important;
        }

        /* ============ Navigation ============ */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            background: rgba(13, 21, 18, 0.72);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(0, 230, 118, 0.08);
            transition: background var(--transition), box-shadow var(--transition);
            min-height: var(--nav-height);
        }
        .site-header.scrolled {
            background: rgba(13, 21, 18, 0.95);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
        }

        .navbar-custom {
            min-height: var(--nav-height);
            padding-top: 8px;
            padding-bottom: 8px;
        }

        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 800;
            color: var(--text-main) !important;
            letter-spacing: -0.01em;
        }
        .navbar-brand-custom .logo-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent);
            display: inline-block;
            box-shadow: 0 0 12px rgba(0, 230, 118, 0.6);
            flex-shrink: 0;
        }
        .navbar-brand-custom:hover {
            color: var(--text-main) !important;
        }

        .navbar-custom .nav-link {
            color: var(--text-body);
            font-weight: 500;
            font-size: 14px;
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            position: relative;
            transition: color var(--transition);
        }
        .navbar-custom .nav-link:hover,
        .navbar-custom .nav-link.active {
            color: var(--accent);
        }
        .navbar-custom .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }

        .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 82, 82, 0.15);
            color: #ff6b6b;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 20px;
            letter-spacing: 0.03em;
            white-space: nowrap;
        }
        .live-badge .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #ff5252;
            animation: pulse-dot 1.6s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(0.7); }
        }

        .nav-cta {
            background: var(--accent);
            color: #0d1512 !important;
            font-weight: 700;
            font-size: 13px;
            padding: 9px 20px;
            border-radius: var(--radius-btn);
            transition: all var(--transition);
            border: 1px solid var(--accent);
            white-space: nowrap;
        }
        .nav-cta:hover {
            background: #69f0ae;
            border-color: #69f0ae;
            box-shadow: 0 0 20px rgba(0, 230, 118, 0.35);
            transform: translateY(-1px);
            color: #0d1512 !important;
        }

        .nav-countdown {
            font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
            font-size: 12px;
            color: var(--text-body);
            font-weight: 600;
            white-space: nowrap;
        }
        .nav-countdown .num {
            color: var(--accent);
            font-size: 14px;
        }

        .navbar-toggler {
            border: 1px solid rgba(0, 230, 118, 0.2);
            background: rgba(0, 230, 118, 0.06);
            color: var(--text-main);
            padding: 8px 12px;
        }
        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.2);
        }

        .offcanvas-custom {
            background: #0d1512;
            color: var(--text-body);
        }
        .offcanvas-custom .offcanvas-header {
            border-bottom: 1px solid rgba(0, 230, 118, 0.1);
            padding: 16px 20px;
        }
        .offcanvas-custom .offcanvas-title {
            color: var(--text-main);
            font-weight: 800;
            font-size: 20px;
        }
        .offcanvas-custom .btn-close {
            filter: invert(1) brightness(3);
        }
        .offcanvas-custom .nav-link {
            color: var(--text-body);
            font-size: 18px;
            padding: 14px 0;
            border-bottom: 1px solid rgba(0, 230, 118, 0.08);
            transition: color var(--transition);
        }
        .offcanvas-custom .nav-link:hover,
        .offcanvas-custom .nav-link.active {
            color: var(--accent);
        }
        .offcanvas-custom .nav-cta {
            margin-top: 16px;
            display: inline-block;
            text-align: center;
        }

        /* ============ Breadcrumb / H1 Banner ============ */
        .category-banner {
            background: linear-gradient(180deg, rgba(26, 60, 46, 0.45) 0%, rgba(13, 21, 18, 0.9) 100%), url('/assets/images/7cd91766cdd5e91a.webp') center/cover no-repeat;
            padding: 80px 0 60px;
            border-bottom: 1px solid rgba(0, 230, 118, 0.12);
            position: relative;
        }
        .category-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to top, var(--primary-dark), transparent);
            pointer-events: none;
        }
        .category-banner .breadcrumb {
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        .breadcrumb-item a {
            color: var(--text-muted);
            font-size: 13px;
            transition: color var(--transition);
        }
        .breadcrumb-item a:hover {
            color: var(--accent);
        }
        .breadcrumb-item.active {
            color: var(--accent);
            font-size: 13px;
        }
        .breadcrumb-item+.breadcrumb-item::before {
            color: var(--text-muted);
            content: '›';
        }
        .category-banner h1 {
            color: var(--text-main);
            font-size: 44px;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }
        .category-banner .banner-subtitle {
            color: var(--text-body);
            font-size: 16px;
            max-width: 620px;
            position: relative;
            z-index: 1;
        }

        /* ============ Cards ============ */
        .card-custom {
            background: var(--surface);
            border: 1px solid var(--accent-border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-default);
            transition: all var(--transition);
            overflow: hidden;
            height: 100%;
        }
        .card-custom:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(0, 230, 118, 0.35);
        }
        .card-custom .card-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16/9;
            background: #0d1512;
        }
        .card-custom .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition);
        }
        .card-custom:hover .card-img-wrap img {
            transform: scale(1.04);
        }
        .card-custom .card-img-wrap .card-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(13, 21, 18, 0.85);
            color: var(--accent);
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 20px;
            letter-spacing: 0.02em;
            border: 1px solid var(--accent-border);
        }
        .card-custom .card-body {
            padding: 20px 22px 22px;
        }
        .card-custom .card-title {
            color: var(--text-main);
            font-size: 17px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 8px;
        }
        .card-custom .card-title a {
            color: var(--text-main);
        }
        .card-custom .card-title a:hover {
            color: var(--accent);
        }
        .card-custom .card-summary {
            color: var(--text-body);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .card-custom .card-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 12px;
            color: var(--text-muted);
        }
        .card-custom .card-meta i {
            color: var(--accent);
            font-size: 11px;
            margin-right: 4px;
        }

        /* ============ Featured article card ============ */
        .card-featured {
            background: var(--surface);
            border: 1px solid var(--accent-border);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-default);
            transition: all var(--transition);
            margin-bottom: 28px;
        }
        .card-featured:hover {
            box-shadow: var(--shadow-hover);
            border-color: rgba(0, 230, 118, 0.35);
            transform: translateY(-3px);
        }
        .card-featured .featured-img {
            aspect-ratio: 21/9;
            min-height: 280px;
            background: #0d1512;
            position: relative;
            overflow: hidden;
        }
        .card-featured .featured-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .card-featured .featured-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px 30px 24px;
            background: linear-gradient(to top, rgba(13, 21, 18, 0.95), transparent);
        }
        .card-featured .featured-tag {
            display: inline-block;
            background: var(--accent);
            color: #0d1512;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 8px;
        }
        .card-featured .featured-title {
            color: var(--text-main);
            font-size: 22px;
            font-weight: 800;
            line-height: 1.35;
            margin-bottom: 6px;
        }
        .card-featured .featured-summary {
            color: var(--text-body);
            font-size: 14px;
            max-width: 600px;
            margin-bottom: 0;
        }
        .card-featured .featured-meta {
            color: var(--text-muted);
            font-size: 12px;
            margin-top: 10px;
            display: flex;
            gap: 16px;
            align-items: center;
        }

        /* ============ Tags ============ */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(26, 60, 46, 0.5);
            border: 1px solid var(--accent-border);
            color: var(--text-body);
            font-size: 13px;
            padding: 6px 16px;
            border-radius: 20px;
            transition: all var(--transition);
        }
        .tag-pill:hover {
            background: var(--accent-soft);
            border-color: var(--accent);
            color: var(--accent);
        }
        .tag-pill .tag-count {
            color: var(--text-muted);
            font-size: 11px;
        }
        .tag-pill:hover .tag-count {
            color: var(--accent);
        }

        /* ============ Data snapshot ============ */
        .data-card {
            background: var(--surface-solid);
            border: 1px solid var(--accent-border);
            border-radius: var(--radius-card);
            padding: 24px 22px;
            text-align: center;
            transition: all var(--transition);
            height: 100%;
        }
        .data-card:hover {
            border-color: rgba(0, 230, 118, 0.4);
            box-shadow: var(--shadow-hover);
        }
        .data-card .data-number {
            font-size: 38px;
            font-weight: 800;
            color: var(--accent);
            line-height: 1.2;
            letter-spacing: -0.02em;
            font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
        }
        .data-card .data-label {
            color: var(--text-body);
            font-size: 14px;
            margin-top: 4px;
        }
        .data-card .data-sub {
            color: var(--text-muted);
            font-size: 12px;
            margin-top: 2px;
        }

        /* ============ Section titles ============ */
        .section-title {
            color: var(--text-main);
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.01em;
            margin-bottom: 8px;
            line-height: 1.3;
        }
        .section-subtitle {
            color: var(--text-body);
            font-size: 15px;
            max-width: 580px;
            margin-bottom: 32px;
        }
        .section-divider {
            height: 1px;
            background: rgba(0, 230, 118, 0.1);
            margin: 0 0 28px;
        }

        /* ============ List items ============ */
        .news-list-item {
            display: flex;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid rgba(0, 230, 118, 0.08);
            transition: all var(--transition);
        }
        .news-list-item:hover {
            padding-left: 8px;
            border-bottom-color: var(--accent-border);
        }
        .news-list-item .list-img {
            width: 80px;
            height: 80px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
            background: #0d1512;
        }
        .news-list-item .list-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .news-list-item .list-content {
            flex: 1;
            min-width: 0;
        }
        .news-list-item .list-title {
            color: var(--text-main);
            font-size: 15px;
            font-weight: 700;
            line-height: 1.45;
            margin-bottom: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-list-item .list-title a {
            color: var(--text-main);
        }
        .news-list-item .list-title a:hover {
            color: var(--accent);
        }
        .news-list-item .list-meta {
            color: var(--text-muted);
            font-size: 12px;
            display: flex;
            gap: 12px;
        }

        /* ============ Subscribe ============ */
        .subscribe-box {
            background: var(--surface);
            border: 1px solid var(--accent-border);
            border-radius: var(--radius-card);
            padding: 36px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }
        .subscribe-box .sub-text h3 {
            color: var(--text-main);
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .subscribe-box .sub-text p {
            color: var(--text-body);
            font-size: 14px;
            margin-bottom: 0;
        }
        .subscribe-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            min-width: 280px;
        }
        .subscribe-form input[type="email"] {
            flex: 1;
            min-width: 200px;
            background: rgba(13, 21, 18, 0.8);
            border: 1px solid rgba(0, 230, 118, 0.2);
            border-radius: var(--radius-btn);
            color: var(--text-main);
            padding: 10px 16px;
            font-size: 14px;
            transition: all var(--transition);
        }
        .subscribe-form input[type="email"]::placeholder {
            color: var(--text-muted);
        }
        .subscribe-form input[type="email"]:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.15);
            outline: none;
        }
        .subscribe-form button {
            background: var(--accent);
            color: #0d1512;
            font-weight: 700;
            font-size: 14px;
            padding: 10px 24px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--accent);
            transition: all var(--transition);
            white-space: nowrap;
        }
        .subscribe-form button:hover {
            background: #69f0ae;
            border-color: #69f0ae;
            box-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
        }

        /* ============ Footer ============ */
        .site-footer {
            background: #080e0b;
            border-top: 1px solid rgba(0, 230, 118, 0.1);
            padding: 48px 0 28px;
            margin-top: 40px;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 12px;
        }
        .footer-brand .logo-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent);
            display: inline-block;
            box-shadow: 0 0 12px rgba(0, 230, 118, 0.6);
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            color: var(--text-muted);
            font-size: 13px;
            transition: color var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        .copyright {
            border-top: 1px solid rgba(0, 230, 118, 0.08);
            margin-top: 32px;
            padding-top: 20px;
            color: var(--text-muted);
            font-size: 12px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
            justify-content: space-between;
        }

        /* ============ Buttons ============ */
        .btn-primary-custom {
            background: var(--accent);
            color: #0d1512 !important;
            font-weight: 700;
            font-size: 14px;
            padding: 10px 24px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--accent);
            transition: all var(--transition);
            display: inline-block;
        }
        .btn-primary-custom:hover {
            background: #69f0ae;
            border-color: #69f0ae;
            box-shadow: 0 0 20px rgba(0, 230, 118, 0.35);
            transform: translateY(-2px);
            color: #0d1512 !important;
        }
        .btn-outline-custom {
            background: transparent;
            color: var(--accent);
            font-weight: 700;
            font-size: 14px;
            padding: 10px 24px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--accent);
            transition: all var(--transition);
            display: inline-block;
        }
        .btn-outline-custom:hover {
            background: var(--accent-soft);
            border-color: #69f0ae;
            color: #69f0ae;
            transform: translateY(-2px);
        }

        /* ============ Scroll animation ============ */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============ Responsive ============ */
        @media (max-width: 991.98px) {
            .category-banner h1 {
                font-size: 34px;
            }
            .section-title {
                font-size: 24px;
            }
            .card-custom .card-title {
                font-size: 15px;
            }
            .subscribe-box {
                flex-direction: column;
                align-items: flex-start;
                padding: 28px 22px;
            }
        }

        @media (max-width: 767.98px) {
            body {
                font-size: 14px;
            }
            .section-padding {
                padding: 48px 0;
            }
            .section-padding-lg {
                padding: 64px 0;
            }
            .category-banner {
                padding: 56px 0 44px;
            }
            .category-banner h1 {
                font-size: 28px;
            }
            .category-banner .banner-subtitle {
                font-size: 14px;
            }
            .section-title {
                font-size: 20px;
            }
            .card-featured .featured-img {
                min-height: 200px;
            }
            .card-featured .featured-title {
                font-size: 17px;
            }
            .data-card .data-number {
                font-size: 28px;
            }
            .navbar-brand-custom {
                font-size: 18px;
            }
            .subscribe-form {
                flex-direction: column;
                width: 100%;
                min-width: auto;
            }
            .subscribe-form input[type="email"] {
                width: 100%;
            }
        }

        @media (max-width: 575.98px) {
            .category-banner h1 {
                font-size: 24px;
            }
            .card-custom .card-body {
                padding: 16px 18px 18px;
            }
            .news-list-item .list-img {
                width: 60px;
                height: 60px;
            }
            .news-list-item .list-title {
                font-size: 14px;
            }
            .copyright {
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
            }
        }

/* roulang page: category4 */
:root {
            --primary: #1a3c2e;
            --primary-dark: #0d1512;
            --accent: #00e676;
            --accent-soft: rgba(0, 230, 118, 0.12);
            --accent-border: rgba(0, 230, 118, 0.18);
            --surface: rgba(26, 60, 46, 0.6);
            --surface-solid: #0f1f18;
            --surface-alt: #132920;
            --text-main: #ffffff;
            --text-body: #b8c4bc;
            --text-muted: #6b7a72;
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-sm: 6px;
            --shadow-default: 0 2px 12px rgba(0, 0, 0, 0.25);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.4);
            --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --nav-height: 72px;
        }
        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-body);
            line-height: 1.75;
            font-size: 15px;
            letter-spacing: 0.01em;
            overflow-x: hidden;
            padding-top: var(--nav-height);
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: #69f0ae;
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-padding-sm {
            padding: 56px 0;
        }
        .section-padding-lg {
            padding: 100px 0;
        }
        .text-accent {
            color: var(--accent) !important;
        }
        /* ===== Navigation ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            background: rgba(13, 21, 18, 0.72);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(0, 230, 118, 0.08);
            transition: background var(--transition), box-shadow var(--transition);
            min-height: var(--nav-height);
        }
        .site-header.scrolled {
            background: rgba(13, 21, 18, 0.95);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
        }
        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 800;
            color: var(--text-main) !important;
            letter-spacing: -0.01em;
        }
        .navbar-brand-custom .logo-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent);
            display: inline-block;
            box-shadow: 0 0 12px rgba(0, 230, 118, 0.6);
            flex-shrink: 0;
        }
        .navbar-brand-custom:hover {
            color: var(--text-main) !important;
        }
        .navbar-custom .nav-link {
            color: var(--text-body);
            font-weight: 500;
            font-size: 14px;
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            position: relative;
            transition: color var(--transition);
        }
        .navbar-custom .nav-link:hover,
        .navbar-custom .nav-link.active {
            color: var(--accent);
        }
        .navbar-custom .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }
        .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 82, 82, 0.15);
            color: #ff6b6b;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 20px;
            letter-spacing: 0.03em;
            white-space: nowrap;
        }
        .live-badge .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #ff5252;
            animation: pulse-dot 1.6s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(0.7); }
        }
        .nav-cta {
            background: var(--accent);
            color: #0d1512 !important;
            font-weight: 700;
            font-size: 13px;
            padding: 9px 20px;
            border-radius: var(--radius-btn);
            transition: all var(--transition);
            border: 1px solid var(--accent);
            white-space: nowrap;
        }
        .nav-cta:hover {
            background: #69f0ae;
            border-color: #69f0ae;
            box-shadow: 0 0 20px rgba(0, 230, 118, 0.35);
            transform: translateY(-1px);
            color: #0d1512 !important;
        }
        .nav-countdown {
            font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
            font-size: 12px;
            color: var(--text-body);
            font-weight: 600;
            white-space: nowrap;
        }
        .nav-countdown .num {
            color: var(--accent);
            font-size: 14px;
        }
        .navbar-toggler {
            border: 1px solid rgba(0, 230, 118, 0.2);
            background: rgba(0, 230, 118, 0.06);
            color: var(--text-main);
        }
        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.2);
        }
        .offcanvas-custom {
            background: #0d1512;
            color: var(--text-body);
        }
        .offcanvas-custom .nav-link {
            color: var(--text-body);
            font-size: 18px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 230, 118, 0.08);
        }
        .offcanvas-custom .nav-link:hover,
        .offcanvas-custom .nav-link.active {
            color: var(--accent);
        }
        /* ===== Breadcrumb ===== */
        .breadcrumb-wrap {
            background: transparent;
            padding: 12px 0;
            margin-bottom: 0;
        }
        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
            font-size: 13px;
            color: var(--text-muted);
            flex-wrap: wrap;
        }
        .breadcrumb-custom a {
            color: var(--text-muted);
            transition: color var(--transition);
        }
        .breadcrumb-custom a:hover {
            color: var(--accent);
        }
        .breadcrumb-custom .separator {
            color: var(--text-muted);
            opacity: 0.6;
        }
        .breadcrumb-custom .current {
            color: var(--accent);
            font-weight: 600;
        }
        /* ===== Category H1 Banner ===== */
        .cat-banner {
            background: linear-gradient(180deg, rgba(26, 60, 46, 0.45) 0%, rgba(13, 21, 18, 0.95) 100%), url('/assets/images/2b4c0fbbeea3498f.webp') center center / cover no-repeat;
            padding: 72px 0 56px;
            border-bottom: 1px solid rgba(0, 230, 118, 0.08);
            position: relative;
        }
        .cat-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(13, 21, 18, 0.6) 0%, transparent 60%);
            pointer-events: none;
        }
        .cat-banner .container {
            position: relative;
            z-index: 1;
        }
        .cat-banner h1 {
            font-size: 44px;
            font-weight: 800;
            color: var(--text-main);
            margin: 12px 0 10px;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }
        .cat-banner .subtitle {
            font-size: 16px;
            color: var(--text-body);
            max-width: 640px;
            line-height: 1.7;
            margin-bottom: 0;
        }
        /* ===== Card base ===== */
        .card-custom {
            background: var(--surface-solid);
            border: 1px solid rgba(0, 230, 118, 0.1);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-default);
            transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
            height: 100%;
        }
        .card-custom:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(0, 230, 118, 0.25);
        }
        .card-custom .card-img-wrap {
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: #0a130f;
            position: relative;
        }
        .card-custom .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .card-custom:hover .card-img-wrap img {
            transform: scale(1.04);
        }
        .card-custom .card-body {
            padding: 22px 22px 24px;
        }
        .card-custom .card-meta {
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 10px;
        }
        .card-custom .card-meta .tag {
            display: inline-block;
            background: var(--accent-soft);
            color: var(--accent);
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 20px;
            font-size: 11px;
            letter-spacing: 0.03em;
        }
        .card-custom .card-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-main);
            line-height: 1.45;
            margin-bottom: 8px;
        }
        .card-custom .card-text {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.75;
            margin-bottom: 14px;
        }
        .card-custom .card-link {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap var(--transition), color var(--transition);
        }
        .card-custom .card-link:hover {
            gap: 10px;
            color: #69f0ae;
        }
        /* ===== Tags ===== */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag-cloud a {
            display: inline-block;
            background: rgba(0, 230, 118, 0.06);
            border: 1px solid rgba(0, 230, 118, 0.15);
            color: var(--text-body);
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            transition: all var(--transition);
        }
        .tag-cloud a:hover {
            background: var(--accent-soft);
            border-color: var(--accent);
            color: var(--accent);
            transform: translateY(-2px);
        }
        /* ===== Data snapshot ===== */
        .data-table-card {
            background: var(--surface-solid);
            border: 1px solid rgba(0, 230, 118, 0.1);
            border-radius: var(--radius-card);
            padding: 28px;
            box-shadow: var(--shadow-default);
        }
        .data-table-card .section-label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        .data-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 230, 118, 0.06);
            gap: 16px;
            transition: background var(--transition);
        }
        .data-row:last-child {
            border-bottom: none;
        }
        .data-row:hover {
            background: rgba(0, 230, 118, 0.03);
            border-radius: 4px;
        }
        .data-row .player-info {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
        }
        .data-row .player-number {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(0, 230, 118, 0.1);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 13px;
            flex-shrink: 0;
        }
        .data-row .player-name {
            color: var(--text-main);
            font-weight: 600;
            font-size: 15px;
        }
        .data-row .player-team {
            font-size: 12px;
            color: var(--text-muted);
        }
        .data-row .stat-value {
            color: var(--accent);
            font-weight: 800;
            font-size: 20px;
            font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
            white-space: nowrap;
        }
        /* ===== Subscribe CTA ===== */
        .subscribe-card {
            background: linear-gradient(135deg, rgba(26, 60, 46, 0.7) 0%, rgba(13, 21, 18, 0.9) 100%);
            border: 1px solid rgba(0, 230, 118, 0.15);
            border-radius: var(--radius-card);
            padding: 40px 36px;
            box-shadow: var(--shadow-default);
        }
        .subscribe-card .form-control {
            background: rgba(13, 21, 18, 0.8);
            border: 1px solid rgba(0, 230, 118, 0.15);
            color: var(--text-main);
            border-radius: var(--radius-btn);
            padding: 12px 18px;
            font-size: 14px;
            transition: border-color var(--transition), box-shadow var(--transition);
        }
        .subscribe-card .form-control::placeholder {
            color: var(--text-muted);
        }
        .subscribe-card .form-control:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.12);
            background: rgba(13, 21, 18, 0.9);
            color: var(--text-main);
        }
        .subscribe-card .btn-submit {
            background: var(--accent);
            color: #0d1512;
            font-weight: 700;
            font-size: 14px;
            border: none;
            border-radius: var(--radius-btn);
            padding: 12px 28px;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .subscribe-card .btn-submit:hover {
            background: #69f0ae;
            box-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
            transform: translateY(-1px);
        }
        /* ===== Section title ===== */
        .section-title {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: -0.01em;
            margin-bottom: 12px;
            line-height: 1.35;
        }
        .section-subtitle {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 560px;
            margin-bottom: 0;
        }
        .section-head {
            margin-bottom: 36px;
        }
        /* ===== Related / list link ===== */
        .article-link-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid rgba(0, 230, 118, 0.06);
            transition: padding-left var(--transition), background var(--transition);
        }
        .article-link-item:hover {
            padding-left: 8px;
            background: rgba(0, 230, 118, 0.02);
        }
        .article-link-item .link-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(0, 230, 118, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            flex-shrink: 0;
            font-size: 14px;
        }
        .article-link-item .link-content {
            min-width: 0;
        }
        .article-link-item .link-title {
            color: var(--text-main);
            font-weight: 600;
            font-size: 15px;
            line-height: 1.4;
            margin-bottom: 2px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .article-link-item .link-meta {
            font-size: 12px;
            color: var(--text-muted);
        }
        .article-link-item a {
            color: inherit;
            display: block;
            width: 100%;
        }
        .article-link-item a:hover .link-title {
            color: var(--accent);
        }
        /* ===== Ranking list ===== */
        .ranking-list .list-group-item {
            background: transparent;
            border: 1px solid rgba(0, 230, 118, 0.06);
            border-radius: 8px;
            margin-bottom: 10px;
            padding: 18px 20px;
            color: var(--text-body);
            transition: all var(--transition);
        }
        .ranking-list .list-group-item:hover {
            background: rgba(0, 230, 118, 0.03);
            border-color: rgba(0, 230, 118, 0.15);
        }
        .ranking-list .rank-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(0, 230, 118, 0.1);
            color: var(--accent);
            font-weight: 700;
            font-size: 13px;
            margin-right: 12px;
            flex-shrink: 0;
        }
        .ranking-list .rank-badge.gold {
            background: rgba(255, 193, 7, 0.15);
            color: #ffd54f;
        }
        .ranking-list .rank-badge.silver {
            background: rgba(158, 158, 158, 0.15);
            color: #e0e0e0;
        }
        .ranking-list .rank-badge.bronze {
            background: rgba(205, 127, 50, 0.15);
            color: #d7a86e;
        }
        /* ===== Footer ===== */
        .site-footer {
            background: #0a130f;
            border-top: 1px solid rgba(0, 230, 118, 0.08);
            padding: 60px 0 32px;
            margin-top: 40px;
        }
        .site-footer .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 12px;
        }
        .site-footer .footer-brand .logo-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent);
            display: inline-block;
            box-shadow: 0 0 12px rgba(0, 230, 118, 0.6);
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            color: var(--text-muted);
            font-size: 13px;
            transition: color var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        .copyright {
            border-top: 1px solid rgba(0, 230, 118, 0.06);
            margin-top: 36px;
            padding-top: 20px;
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
        }
        /* ===== Scroll reveal ===== */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* ===== Section separators ===== */
        .section-divider {
            border-top: 1px solid rgba(0, 230, 118, 0.06);
        }
        /* ===== Offcanvas mobile nav ===== */
        .offcanvas-custom .navbar-brand-custom {
            font-size: 20px;
            margin-bottom: 20px;
        }
        .offcanvas-custom .live-badge {
            margin-bottom: 16px;
        }
        .offcanvas-custom .nav-cta {
            display: inline-block;
            margin-top: 16px;
        }
        /* ===== Responsive ===== */
        @media (max-width: 991.98px) {
            .cat-banner h1 {
                font-size: 36px;
            }
            .section-title {
                font-size: 24px;
            }
            .subscribe-card {
                padding: 32px 24px;
            }
            .data-table-card {
                padding: 20px;
            }
        }
        @media (max-width: 767.98px) {
            body {
                font-size: 14px;
                padding-top: 64px;
            }
            :root {
                --nav-height: 64px;
            }
            .section-padding {
                padding: 56px 0;
            }
            .section-padding-lg {
                padding: 72px 0;
            }
            .cat-banner {
                padding: 48px 0 40px;
            }
            .cat-banner h1 {
                font-size: 30px;
            }
            .section-title {
                font-size: 22px;
            }
            .card-custom .card-body {
                padding: 18px;
            }
            .card-custom .card-title {
                font-size: 16px;
            }
            .subscribe-card {
                padding: 24px 18px;
            }
            .subscribe-card .btn-submit {
                width: 100%;
                margin-top: 12px;
            }
            .data-row .stat-value {
                font-size: 17px;
            }
            .data-row .player-name {
                font-size: 14px;
            }
            .navbar-brand-custom {
                font-size: 19px;
            }
            .nav-cta {
                font-size: 12px;
                padding: 7px 14px;
            }
        }
        @media (max-width: 575.98px) {
            .cat-banner h1 {
                font-size: 26px;
            }
            .section-title {
                font-size: 20px;
            }
            .card-custom .card-meta {
                font-size: 11px;
                gap: 8px;
            }
            .card-custom .card-text {
                font-size: 13px;
            }
            .tag-cloud a {
                font-size: 12px;
                padding: 5px 14px;
            }
            .data-table-card {
                padding: 16px;
            }
            .data-row {
                padding: 10px 0;
                gap: 10px;
            }
            .data-row .player-number {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }
            .data-row .stat-value {
                font-size: 15px;
            }
            .breadcrumb-custom {
                font-size: 12px;
            }
        }

/* roulang page: category5 */
:root {
            --primary: #1a3c2e;
            --primary-dark: #0d1512;
            --accent: #00e676;
            --accent-soft: rgba(0, 230, 118, 0.12);
            --accent-border: rgba(0, 230, 118, 0.18);
            --surface: rgba(26, 60, 46, 0.6);
            --surface-solid: #0f1f18;
            --surface-alt: #132920;
            --text-main: #ffffff;
            --text-body: #b8c4bc;
            --text-muted: #6b7a72;
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-sm: 6px;
            --shadow-default: 0 2px 12px rgba(0, 0, 0, 0.25);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.4);
            --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --nav-height: 72px;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-body);
            line-height: 1.75;
            font-size: 15px;
            letter-spacing: 0.01em;
            overflow-x: hidden;
            padding-top: var(--nav-height);
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: #69f0ae;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-padding-sm {
            padding: 56px 0;
        }

        .section-padding-lg {
            padding: 100px 0;
        }

        .text-accent {
            color: var(--accent) !important;
        }

        /* Navigation */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            background: rgba(13, 21, 18, 0.72);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(0, 230, 118, 0.08);
            transition: background var(--transition), box-shadow var(--transition);
            min-height: var(--nav-height);
        }

        .site-header.scrolled {
            background: rgba(13, 21, 18, 0.95);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
        }

        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 800;
            color: var(--text-main) !important;
            letter-spacing: -0.01em;
        }

        .navbar-brand-custom .logo-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent);
            display: inline-block;
            box-shadow: 0 0 12px rgba(0, 230, 118, 0.6);
            flex-shrink: 0;
        }

        .navbar-brand-custom:hover {
            color: var(--text-main) !important;
        }

        .navbar-custom .nav-link {
            color: var(--text-body);
            font-weight: 500;
            font-size: 14px;
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            position: relative;
            transition: color var(--transition);
        }

        .navbar-custom .nav-link:hover,
        .navbar-custom .nav-link.active {
            color: var(--accent);
        }

        .navbar-custom .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }

        .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 82, 82, 0.15);
            color: #ff6b6b;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 20px;
            letter-spacing: 0.03em;
            white-space: nowrap;
        }

        .live-badge .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #ff5252;
            animation: pulse-dot 1.6s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.4);
            }
        }

        .nav-cta {
            background: var(--accent);
            color: #0d1512 !important;
            font-weight: 700;
            font-size: 13px;
            padding: 9px 20px;
            border-radius: var(--radius-btn);
            transition: all var(--transition);
            border: 1px solid var(--accent);
            white-space: nowrap;
            display: inline-block;
        }

        .nav-cta:hover {
            background: #69f0ae;
            border-color: #69f0ae;
            box-shadow: 0 0 20px rgba(0, 230, 118, 0.35);
            transform: translateY(-1px);
            color: #0d1512 !important;
        }

        .navbar-toggler {
            border: 1px solid rgba(0, 230, 118, 0.2);
            background: rgba(0, 230, 118, 0.06);
            color: var(--text-main);
            font-size: 18px;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.2);
        }

        .offcanvas-custom {
            background: #0d1512;
            color: var(--text-body);
        }

        .offcanvas-custom .nav-link {
            color: var(--text-body);
            font-size: 18px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 230, 118, 0.08);
        }

        .offcanvas-custom .nav-link:hover,
        .offcanvas-custom .nav-link.active {
            color: var(--accent);
        }

        .offcanvas-custom .btn-close {
            filter: invert(1) brightness(2);
        }

        /* Breadcrumb */
        .breadcrumb-custom {
            --bs-breadcrumb-divider-color: var(--text-muted);
            --bs-breadcrumb-item-active-color: var(--accent);
            margin-bottom: 0;
            font-size: 13px;
            font-weight: 500;
        }

        .breadcrumb-custom .breadcrumb-item a {
            color: var(--text-muted);
            transition: color var(--transition);
        }

        .breadcrumb-custom .breadcrumb-item a:hover {
            color: var(--accent);
        }

        /* Category Banner */
        .category-banner {
            padding: 80px 0 56px;
            background:
                linear-gradient(135deg, rgba(13, 21, 18, 0.92) 0%, rgba(26, 60, 46, 0.55) 60%, rgba(13, 21, 18, 0.85) 100%),
                url('/assets/images/7cd91766cdd5e91a.webp') center / cover no-repeat;
            border-bottom: 1px solid rgba(0, 230, 118, 0.1);
            position: relative;
        }

        .category-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 230, 118, 0.35), transparent);
        }

        .category-banner h1 {
            font-size: 44px;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: -0.02em;
            line-height: 1.25;
            margin-bottom: 12px;
        }

        .category-banner .category-lead {
            font-size: 16px;
            color: var(--text-body);
            max-width: 560px;
            line-height: 1.8;
        }

        /* Section Titles */
        .section-title {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: -0.01em;
            line-height: 1.35;
            margin-bottom: 10px;
        }

        .section-subtitle {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 600px;
        }

        .section-head {
            margin-bottom: 40px;
        }

        .section-head .divider {
            width: 40px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
            margin-top: 14px;
        }

        /* Cards */
        .card-custom {
            background: var(--surface);
            border: 1px solid var(--accent-border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-default);
            overflow: hidden;
            transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
            height: 100%;
        }

        .card-custom:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(0, 230, 118, 0.35);
        }

        .card-custom .card-img-wrap {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: var(--surface-alt);
        }

        .card-custom .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition);
        }

        .card-custom:hover .card-img-wrap img {
            transform: scale(1.04);
        }

        .card-custom .card-img-wrap .card-tag {
            position: absolute;
            top: 14px;
            left: 14px;
            background: rgba(13, 21, 18, 0.8);
            color: var(--accent);
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 20px;
            letter-spacing: 0.03em;
            border: 1px solid var(--accent-border);
            backdrop-filter: blur(6px);
        }

        .card-custom .card-body-custom {
            padding: 20px 22px 22px;
        }

        .card-custom .card-title-custom {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-main);
            line-height: 1.5;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card-custom .card-summary {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.7;
            margin-bottom: 14px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card-custom .card-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 12px;
            color: var(--text-muted);
            border-top: 1px solid rgba(0, 230, 118, 0.08);
            padding-top: 12px;
        }

        .card-custom .card-meta i {
            color: var(--accent);
            margin-right: 4px;
            font-size: 11px;
        }

        /* Tag Cloud */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag-cloud .tag-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: rgba(26, 60, 46, 0.5);
            border: 1px solid var(--accent-border);
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-body);
            transition: all var(--transition);
            cursor: default;
        }

        .tag-cloud .tag-pill:hover {
            background: var(--accent-soft);
            border-color: rgba(0, 230, 118, 0.4);
            color: var(--accent);
            transform: translateY(-1px);
        }

        .tag-cloud .tag-pill i {
            font-size: 10px;
            color: var(--accent);
        }

        /* Data Snapshot */
        .data-snapshot-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 18px;
        }

        .data-snapshot-item {
            background: var(--surface);
            border: 1px solid var(--accent-border);
            border-radius: var(--radius-card);
            padding: 24px 20px;
            text-align: center;
            transition: transform var(--transition), border-color var(--transition);
        }

        .data-snapshot-item:hover {
            transform: translateY(-3px);
            border-color: rgba(0, 230, 118, 0.35);
        }

        .data-snapshot-item .data-number {
            font-size: 38px;
            font-weight: 800;
            color: var(--accent);
            font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-bottom: 6px;
        }

        .data-snapshot-item .data-label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .data-snapshot-item .data-note {
            font-size: 12px;
            color: var(--text-body);
            margin-top: 6px;
            opacity: 0.8;
        }

        /* Subscribe CTA */
        .subscribe-box {
            background: var(--surface-solid);
            border: 1px solid var(--accent-border);
            border-radius: var(--radius-card);
            padding: 48px 36px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .subscribe-box::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(0, 230, 118, 0.06);
            pointer-events: none;
        }

        .subscribe-box .subscribe-title {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 8px;
        }

        .subscribe-box .subscribe-desc {
            font-size: 15px;
            color: var(--text-body);
            margin-bottom: 24px;
            max-width: 420px;
            margin-left: auto;
            margin-right: auto;
        }

        .subscribe-box .subscribe-form {
            display: flex;
            gap: 12px;
            max-width: 480px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        .subscribe-box .subscribe-form .form-control {
            flex: 1;
            min-width: 0;
            background: rgba(13, 21, 18, 0.7);
            border: 1px solid rgba(0, 230, 118, 0.2);
            border-radius: var(--radius-btn);
            color: var(--text-main);
            padding: 12px 16px;
            font-size: 14px;
            transition: border-color var(--transition), box-shadow var(--transition);
        }

        .subscribe-box .subscribe-form .form-control::placeholder {
            color: var(--text-muted);
        }

        .subscribe-box .subscribe-form .form-control:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.15);
            background: rgba(13, 21, 18, 0.9);
        }

        .btn-accent {
            background: var(--accent);
            color: #0d1512 !important;
            font-weight: 700;
            font-size: 14px;
            padding: 12px 24px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--accent);
            transition: all var(--transition);
            white-space: nowrap;
        }

        .btn-accent:hover {
            background: #69f0ae;
            border-color: #69f0ae;
            box-shadow: 0 0 20px rgba(0, 230, 118, 0.35);
            transform: translateY(-1px);
            color: #0d1512 !important;
        }

        .btn-outline-accent {
            background: transparent;
            color: var(--accent) !important;
            font-weight: 700;
            font-size: 14px;
            padding: 12px 24px;
            border-radius: var(--radius-btn);
            border: 1px solid rgba(0, 230, 118, 0.4);
            transition: all var(--transition);
            white-space: nowrap;
        }

        .btn-outline-accent:hover {
            background: var(--accent-soft);
            border-color: var(--accent);
            box-shadow: 0 0 16px rgba(0, 230, 118, 0.2);
        }

        /* Editor Picks */
        .editor-pick-item {
            display: flex;
            gap: 16px;
            align-items: center;
            padding: 16px 0;
            border-bottom: 1px solid rgba(0, 230, 118, 0.08);
        }

        .editor-pick-item:last-child {
            border-bottom: none;
        }

        .editor-pick-item .pick-rank {
            font-size: 22px;
            font-weight: 800;
            color: var(--accent);
            font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
            width: 36px;
            flex-shrink: 0;
        }

        .editor-pick-item .pick-info {
            flex: 1;
        }

        .editor-pick-item .pick-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-main);
            line-height: 1.5;
            margin-bottom: 4px;
            transition: color var(--transition);
        }

        .editor-pick-item .pick-title:hover {
            color: var(--accent);
        }

        .editor-pick-item .pick-meta {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Footer */
        .site-footer {
            background: #0a100d;
            border-top: 1px solid rgba(0, 230, 118, 0.1);
            padding: 56px 0 32px;
            margin-top: 40px;
        }

        .site-footer .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 14px;
        }

        .site-footer .footer-brand .logo-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent);
            display: inline-block;
            box-shadow: 0 0 12px rgba(0, 230, 118, 0.6);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: var(--text-muted);
            font-size: 13px;
            transition: color var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .copyright {
            border-top: 1px solid rgba(0, 230, 118, 0.08);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Scroll Animation */
        .fade-up {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                display: none;
            }
            .category-banner h1 {
                font-size: 36px;
            }
            .section-title {
                font-size: 24px;
            }
            .section-padding {
                padding: 60px 0;
            }
            .section-padding-lg {
                padding: 72px 0;
            }
        }

        @media (max-width: 575.98px) {
            .category-banner {
                padding: 60px 0 40px;
            }
            .category-banner h1 {
                font-size: 30px;
            }
            .category-banner .category-lead {
                font-size: 14px;
            }
            .section-title {
                font-size: 21px;
            }
            .section-padding {
                padding: 48px 0;
            }
            .data-snapshot-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .data-snapshot-item .data-number {
                font-size: 28px;
            }
            .subscribe-box {
                padding: 32px 20px;
            }
            .subscribe-box .subscribe-form {
                flex-direction: column;
            }
            .subscribe-box .subscribe-form .form-control {
                width: 100%;
            }
            .card-custom .card-body-custom {
                padding: 16px 16px 18px;
            }
            .card-custom .card-title-custom {
                font-size: 15px;
            }
        }

        @media (min-width: 992px) {
            .navbar-toggler {
                display: none;
            }
            .offcanvas {
                display: none;
            }
        }

/* roulang: framework shim */
/* 覆盖 Bootstrap 等对 a/btn 的全局默认，避免导航出现下划线/蓝链 */
.site-header a,.site-header a:hover,.navbar a,.navbar a:hover,.nav-links a,.nav-links a:hover,header nav a,header nav a:hover{text-decoration:none}
.site-header .btn,.navbar .btn,.nav-cta{text-decoration:none}
