/* roulang page: index */
:root {
            --primary: #2E7DEA;
            --primary-hover: #2568C7;
            --primary-light: #EBF3FE;
            --primary-faint: #F0F5FE;
            --green: #3C9A5F;
            --green-light: #E8F5EC;
            --amber: #F5A623;
            --amber-light: #FFF4E0;
            --text-main: #1A2233;
            --text-secondary: #5A6577;
            --text-muted: #8A93A6;
            --border: #E4E9F2;
            --bg-gray: #F5F8FC;
            --white: #FFFFFF;
            --shadow-sm: 0 2px 8px rgba(26, 34, 51, 0.06);
            --shadow-md: 0 8px 24px rgba(26, 34, 51, 0.08);
            --shadow-lg: 0 12px 32px rgba(26, 34, 51, 0.12);
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-icon: 10px;
            --radius-price: 14px;
            --font-mono: 'Roboto Mono', 'SF Mono', 'Cascadia Mono', 'Consolas', 'Courier New', monospace;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Helvetica Neue', Arial, sans-serif;
            --transition: 0.2s ease;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            color: var(--text-main);
            background-color: var(--white);
            line-height: 1.75;
            font-size: 16px;
            font-weight: 400;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--primary-hover);
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible {
            outline: 3px solid rgba(46, 125, 234, 0.35);
            outline-offset: 2px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .section-padding {
            padding: 80px 0;
        }
        .section-padding-sm {
            padding: 60px 0;
        }
        .bg-gray-section {
            background-color: var(--bg-gray);
        }

        .section-label {
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            background-color: var(--primary-light);
            padding: 6px 14px;
            border-radius: 20px;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 14px;
            line-height: 1.4;
        }
        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.85;
            max-width: 720px;
        }
        .section-title-area {
            margin-bottom: 36px;
        }
        .section-title-area .section-title {
            margin-bottom: 8px;
        }

        /* Header / Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background-color: var(--white);
            box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(26, 34, 51, 0.04);
        }
        .brand-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            flex-wrap: wrap;
            gap: 12px;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-main);
            text-decoration: none;
        }
        .brand-logo:hover {
            color: var(--primary);
        }
        .brand-logo .logo-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--primary) 0%, #6DA8F5 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            flex-shrink: 0;
        }
        .brand-logo span.logo-text {
            font-size: 20px;
            letter-spacing: 0.3px;
        }

        .nav-icon-grid {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-item-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 8px 14px;
            border-radius: 10px;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 12px;
            font-weight: 500;
            transition: all var(--transition);
            min-width: 68px;
            text-align: center;
        }
        .nav-item-icon i {
            font-size: 22px;
            color: var(--text-secondary);
            transition: color var(--transition);
        }
        .nav-item-icon:hover {
            background-color: var(--primary-faint);
            color: var(--primary);
        }
        .nav-item-icon:hover i {
            color: var(--primary);
        }
        .nav-item-icon.active {
            background-color: var(--primary-light);
            color: var(--primary);
        }
        .nav-item-icon.active i {
            color: var(--primary);
        }

        .navbar-toggler {
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 8px 12px;
            color: var(--text-main);
            background-color: var(--white);
        }
        .navbar-toggler:focus {
            box-shadow: none;
            border-color: var(--primary);
        }
        .mobile-nav-collapse {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .mobile-nav-collapse.show {
            max-height: 420px;
        }
        .mobile-nav-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            padding: 16px 0 20px;
            border-top: 1px solid var(--border);
        }
        .mobile-nav-grid .nav-item-icon {
            min-width: auto;
            padding: 10px 6px;
            background-color: var(--bg-gray);
            border-radius: 10px;
        }

        /* Hero */
        .hero-section {
            background: linear-gradient(135deg, #F0F5FE 0%, #E5EEFD 55%, #DCE8FB 100%);
            padding: 72px 0 60px;
            position: relative;
            overflow: hidden;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(46, 125, 234, 0.18), transparent);
        }
        .hero-bg-img {
            position: absolute;
            top: 0;
            right: 0;
            width: 42%;
            height: 100%;
            object-fit: cover;
            opacity: 0.22;
            pointer-events: none;
            z-index: 0;
        }
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 720px;
        }
        .hero-content h1 {
            font-size: 38px;
            font-weight: 700;
            color: var(--text-main);
            line-height: 1.3;
            margin-bottom: 18px;
        }
        .hero-desc {
            font-size: 17px;
            color: var(--text-secondary);
            line-height: 1.85;
            margin-bottom: 28px;
        }
        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }
        .btn-primary-custom {
            background-color: var(--primary);
            border: none;
            color: #fff;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-primary-custom:hover {
            background-color: var(--primary-hover);
            color: #fff;
            transform: scale(1.02);
        }
        .btn-outline-custom {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            font-weight: 600;
            padding: 10px 26px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-outline-custom:hover {
            background-color: var(--primary-light);
            color: var(--primary-hover);
            border-color: var(--primary-hover);
        }

        .roadmap-bar {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 0;
            background-color: rgba(255, 255, 255, 0.75);
            border-radius: 14px;
            padding: 18px 22px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(8px);
            flex-wrap: wrap;
        }
        .roadmap-node {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
            min-width: 140px;
            position: relative;
            padding: 0 8px;
        }
        .roadmap-node:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -4px;
            top: 50%;
            transform: translateY(-50%);
            width: 18px;
            height: 2px;
            background-color: var(--border);
        }
        .roadmap-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--primary);
            flex-shrink: 0;
            box-shadow: 0 0 0 4px rgba(46, 125, 234, 0.15);
        }
        .roadmap-dot.completed {
            background-color: var(--green);
            box-shadow: 0 0 0 4px rgba(60, 154, 95, 0.15);
        }
        .roadmap-dot.pending {
            background-color: var(--amber);
            box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.15);
        }
        .roadmap-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-main);
            white-space: nowrap;
        }
        .roadmap-label small {
            display: block;
            font-size: 11px;
            font-weight: 400;
            color: var(--text-muted);
        }

        /* Data cards */
        .data-score-card {
            background-color: var(--white);
            border-radius: var(--radius-card);
            padding: 18px 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            transition: all var(--transition);
            height: 100%;
        }
        .data-score-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .match-status {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 12px;
            margin-bottom: 10px;
            letter-spacing: 0.3px;
        }
        .match-status.live {
            background-color: #FDECEA;
            color: #D32F2F;
            animation: pulse-text 1.8s infinite;
        }
        .match-status.finished {
            background-color: var(--bg-gray);
            color: var(--text-muted);
        }
        .match-status.upcoming {
            background-color: var(--amber-light);
            color: #B8750A;
        }
        @keyframes pulse-text {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }
        .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 6px;
        }
        .match-score {
            font-family: var(--font-mono);
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            text-align: center;
            letter-spacing: 1px;
        }
        .match-score.live-score {
            color: #D32F2F;
            animation: pulse-text 1.8s infinite;
        }
        .match-time {
            font-size: 12px;
            color: var(--text-muted);
            font-family: var(--font-mono);
        }

        /* Feature cards */
        .feature-card {
            background-color: var(--white);
            border-radius: var(--radius-card);
            padding: 28px 24px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            transition: all var(--transition);
            height: 100%;
            text-align: left;
        }
        .feature-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: rgba(46, 125, 234, 0.2);
        }
        .feature-icon {
            width: 52px;
            height: 52px;
            border-radius: var(--radius-icon);
            background-color: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            font-size: 24px;
            color: var(--primary);
        }
        .feature-card h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 8px;
        }
        .feature-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 0;
        }

        /* Scene cards */
        .scene-card {
            background-color: var(--white);
            border-radius: var(--radius-card);
            padding: 24px 22px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            transition: all var(--transition);
            height: 100%;
            position: relative;
        }
        .scene-card:hover {
            box-shadow: var(--shadow-md);
        }
        .scene-step {
            display: inline-block;
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 700;
            color: var(--primary);
            background-color: var(--primary-light);
            padding: 2px 10px;
            border-radius: 6px;
            margin-bottom: 10px;
        }
        .scene-card h3 {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 8px;
        }
        .scene-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 0;
        }

        /* Screenshot module */
        .screenshot-thumb {
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border);
            transition: all var(--transition);
        }
        .screenshot-thumb:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }
        .screenshot-thumb img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        .screenshot-caption {
            padding: 12px 16px;
            background-color: var(--white);
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Brand intro */
        .brand-intro-card {
            background-color: var(--white);
            border-radius: var(--radius-card);
            padding: 40px 36px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            border-left: 4px solid var(--primary);
        }
        .brand-intro-card p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 2.0;
            margin-bottom: 14px;
        }
        .brand-intro-card p:last-child {
            margin-bottom: 0;
        }

        /* Timeline */
        .timeline-card {
            background-color: var(--white);
            border-radius: var(--radius-card);
            padding: 20px 22px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            display: flex;
            gap: 16px;
            align-items: flex-start;
            transition: all var(--transition);
            height: 100%;
        }
        .timeline-card:hover {
            box-shadow: var(--shadow-md);
        }
        .timeline-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: var(--primary);
            flex-shrink: 0;
            margin-top: 5px;
            box-shadow: 0 0 0 4px rgba(46, 125, 234, 0.12);
        }
        .timeline-dot.winner {
            background-color: var(--amber);
            box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.12);
        }
        .timeline-content h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 6px;
        }
        .timeline-content p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.75;
            margin-bottom: 0;
        }
        .timeline-date {
            font-size: 12px;
            color: var(--text-muted);
            font-family: var(--font-mono);
            display: block;
            margin-bottom: 4px;
        }

        /* Price card */
        .price-card {
            background-color: var(--white);
            border-radius: var(--radius-price);
            padding: 32px 28px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            transition: all var(--transition);
            height: 100%;
            position: relative;
        }
        .price-card:hover {
            box-shadow: var(--shadow-lg);
        }
        .price-card.featured {
            border: 2px solid var(--primary);
            background-color: #FAFCFF;
            box-shadow: 0 8px 28px rgba(46, 125, 234, 0.10);
        }
        .price-card.featured .badge-recommend {
            position: absolute;
            top: -12px;
            right: 20px;
            background-color: var(--primary);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 12px;
        }
        .price-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 8px;
        }
        .price-amount {
            font-family: var(--font-mono);
            font-size: 32px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 4px;
        }
        .price-amount small {
            font-size: 14px;
            font-weight: 400;
            color: var(--text-muted);
        }
        .price-desc {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 18px;
        }
        .price-features {
            list-style: none;
            padding: 0;
            margin: 0 0 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .price-features li {
            font-size: 14px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .price-features li i {
            color: var(--green);
            font-size: 16px;
            flex-shrink: 0;
        }
        .btn-price-select {
            width: 100%;
            background-color: var(--primary);
            color: #fff;
            border: none;
            font-weight: 600;
            padding: 12px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            transition: all var(--transition);
        }
        .btn-price-select:hover {
            background-color: var(--primary-hover);
            transform: scale(1.01);
        }

        /* Review card */
        .review-card {
            background-color: var(--white);
            border-radius: var(--radius-card);
            padding: 24px 22px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            height: 100%;
            transition: all var(--transition);
        }
        .review-card:hover {
            box-shadow: var(--shadow-md);
        }
        .review-stars {
            color: var(--amber);
            font-size: 16px;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }
        .review-text {
            font-size: 15px;
            color: var(--text-main);
            line-height: 1.8;
            margin-bottom: 14px;
            font-weight: 500;
        }
        .review-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .review-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            flex-shrink: 0;
        }
        .review-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-main);
        }
        .review-date {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Community card */
        .community-card {
            background-color: var(--white);
            border-radius: var(--radius-card);
            padding: 18px 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            transition: all var(--transition);
            height: 100%;
        }
        .community-card:hover {
            box-shadow: var(--shadow-md);
        }
        .community-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 10px;
            background-color: var(--primary-light);
            color: var(--primary);
            margin-bottom: 8px;
        }
        .community-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-main);
            line-height: 1.6;
            margin-bottom: 8px;
        }
        .community-meta {
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        /* Article list */
        .article-list-card {
            background-color: var(--white);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            transition: all var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .article-list-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }
        .article-img-wrap {
            height: 180px;
            overflow: hidden;
            position: relative;
        }
        .article-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .article-list-card:hover .article-img-wrap img {
            transform: scale(1.04);
        }
        .article-body {
            padding: 18px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .article-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 10px;
            background-color: var(--amber-light);
            color: #B8750A;
            margin-bottom: 8px;
            align-self: flex-start;
        }
        .article-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-main);
            line-height: 1.5;
            margin-bottom: 8px;
            transition: color var(--transition);
        }
        .article-list-card:hover .article-title {
            color: var(--primary);
        }
        .article-summary {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 12px;
            flex: 1;
        }
        .article-date {
            font-size: 12px;
            color: var(--text-muted);
            font-family: var(--font-mono);
        }

        /* CTA section */
        .cta-section {
            background: linear-gradient(135deg, #E8F0FE 0%, #DCE8FB 50%, #CFE0F8 100%);
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -40px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background-color: rgba(46, 125, 234, 0.12);
            z-index: 0;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -70px;
            left: -30px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background-color: rgba(245, 166, 35, 0.14);
            z-index: 0;
        }
        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 640px;
            margin: 0 auto;
        }
        .cta-content h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 14px;
        }
        .cta-content p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.85;
            margin-bottom: 28px;
        }
        .subscribe-form {
            display: flex;
            gap: 10px;
            max-width: 480px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .subscribe-input {
            flex: 1;
            min-width: 220px;
            padding: 12px 18px;
            border: 2px solid var(--border);
            border-radius: var(--radius-btn);
            font-size: 15px;
            color: var(--text-main);
            background-color: var(--white);
            transition: border-color var(--transition);
        }
        .subscribe-input:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 4px rgba(46, 125, 234, 0.10);
        }

        /* Footer */
        .site-footer {
            background-color: #1A2233;
            color: #C5CDD8;
            padding: 60px 0 30px;
            font-size: 14px;
        }
        .site-footer .brand-logo {
            color: #fff;
            margin-bottom: 12px;
            font-size: 18px;
        }
        .site-footer .brand-logo:hover {
            color: #6DA8F5;
        }
        .footer-desc {
            color: #8A93A6;
            line-height: 1.8;
            margin-bottom: 18px;
            font-size: 14px;
        }
        .footer-col-title {
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 14px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-links a {
            color: #8A93A6;
            text-decoration: none;
            transition: color var(--transition);
            font-size: 14px;
        }
        .footer-links a:hover {
            color: #6DA8F5;
        }
        .footer-contact {
            color: #8A93A6;
            line-height: 2.0;
            font-size: 14px;
        }
        .footer-contact i {
            margin-right: 6px;
            color: #6DA8F5;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 40px;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 13px;
            color: #6B7280;
        }

        /* Section numbering */
        .section-num {
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 700;
            color: var(--primary);
            background-color: var(--primary-light);
            padding: 2px 10px;
            border-radius: 6px;
            display: inline-block;
            margin-bottom: 8px;
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .hero-section {
                padding: 50px 0 40px;
            }
            .hero-content h1 {
                font-size: 30px;
            }
            .hero-bg-img {
                width: 55%;
                opacity: 0.14;
            }
            .section-padding {
                padding: 60px 0;
            }
            .section-padding-sm {
                padding: 45px 0;
            }
            .section-title {
                font-size: 24px;
            }
            .roadmap-bar {
                gap: 12px;
                padding: 16px;
            }
            .roadmap-node {
                min-width: 110px;
            }
            .roadmap-node:not(:last-child)::after {
                display: none;
            }
        }

        @media (max-width: 767.98px) {
            .hero-content h1 {
                font-size: 26px;
            }
            .hero-desc {
                font-size: 15px;
            }
            .hero-actions {
                flex-direction: column;
            }
            .hero-actions .btn {
                width: 100%;
                justify-content: center;
            }
            .hero-bg-img {
                width: 100%;
                height: 45%;
                opacity: 0.10;
                right: auto;
                left: 0;
            }
            .brand-row {
                padding: 10px 0;
            }
            .brand-logo span.logo-text {
                font-size: 17px;
            }
            .section-padding {
                padding: 45px 0;
            }
            .section-padding-sm {
                padding: 35px 0;
            }
            .section-title {
                font-size: 22px;
            }
            .roadmap-bar {
                flex-direction: column;
                align-items: stretch;
                gap: 14px;
            }
            .roadmap-node {
                padding: 4px 0;
            }
            .roadmap-node:not(:last-child)::after {
                display: none;
            }
            .cta-section {
                padding: 36px 20px;
                border-radius: 14px;
            }
            .cta-content h2 {
                font-size: 22px;
            }
            .mobile-nav-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .brand-intro-card {
                padding: 28px 20px;
            }
        }

        @media (max-width: 575.98px) {
            .hero-content h1 {
                font-size: 23px;
            }
            .section-title {
                font-size: 20px;
            }
            .article-img-wrap {
                height: 150px;
            }
            .price-card {
                padding: 24px 20px;
            }
            .price-amount {
                font-size: 26px;
            }
            .mobile-nav-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .feature-card,
            .scene-card,
            .review-card,
            .community-card {
                padding: 18px 16px;
            }
            .data-score-card {
                padding: 14px 16px;
            }
            .match-score {
                font-size: 20px;
            }
        }

/* roulang page: category1 */
:root {
            --primary: #2E7DEA;
            --primary-hover: #2568C7;
            --primary-light: #EBF3FE;
            --primary-faint: #F0F5FE;
            --green: #3C9A5F;
            --green-light: #E8F5EC;
            --amber: #F5A623;
            --amber-light: #FFF4E0;
            --text-main: #1A2233;
            --text-secondary: #5A6577;
            --text-muted: #8A93A6;
            --border: #E4E9F2;
            --bg-gray: #F5F8FC;
            --white: #FFFFFF;
            --shadow-sm: 0 2px 8px rgba(26, 34, 51, 0.06);
            --shadow-md: 0 8px 24px rgba(26, 34, 51, 0.08);
            --shadow-lg: 0 12px 32px rgba(26, 34, 51, 0.12);
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-icon: 10px;
            --radius-price: 14px;
            --font-mono: 'Roboto Mono', 'SF Mono', 'Cascadia Mono', 'Consolas', 'Courier New', monospace;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Helvetica Neue', Arial, sans-serif;
            --transition: 0.2s ease;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            color: var(--text-main);
            background-color: var(--white);
            line-height: 1.75;
            font-size: 16px;
            font-weight: 400;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--primary-hover);
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible {
            outline: 3px solid rgba(46, 125, 234, 0.35);
            outline-offset: 2px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .section-padding {
            padding: 80px 0;
        }
        .section-padding-sm {
            padding: 60px 0;
        }
        .bg-gray-section {
            background-color: var(--bg-gray);
        }
        .section-label {
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            background-color: var(--primary-light);
            padding: 6px 14px;
            border-radius: 20px;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 14px;
            line-height: 1.4;
        }
        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.85;
            max-width: 720px;
        }
        .section-title-area {
            margin-bottom: 36px;
        }
        .section-title-area .section-title {
            margin-bottom: 8px;
        }

        /* Header / Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background-color: var(--white);
            box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(26, 34, 51, 0.04);
        }
        .brand-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            flex-wrap: wrap;
            gap: 12px;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-main);
            text-decoration: none;
        }
        .brand-logo:hover {
            color: var(--primary);
        }
        .brand-logo .logo-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--primary) 0%, #6DA8F5 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            flex-shrink: 0;
        }
        .brand-logo span.logo-text {
            font-size: 20px;
            letter-spacing: 0.3px;
        }
        .nav-icon-grid {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-item-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 8px 14px;
            border-radius: 10px;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 12px;
            font-weight: 500;
            transition: all var(--transition);
            min-width: 68px;
            text-align: center;
        }
        .nav-item-icon i {
            font-size: 22px;
            color: var(--text-secondary);
            transition: color var(--transition);
        }
        .nav-item-icon:hover {
            background-color: var(--primary-faint);
            color: var(--primary);
        }
        .nav-item-icon:hover i {
            color: var(--primary);
        }
        .nav-item-icon.active {
            background-color: var(--primary-light);
            color: var(--primary);
        }
        .nav-item-icon.active i {
            color: var(--primary);
        }
        .navbar-toggler {
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 8px 12px;
            color: var(--text-main);
            background-color: var(--white);
        }
        .navbar-toggler:focus {
            box-shadow: none;
            border-color: var(--primary);
        }
        .mobile-nav-collapse {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .mobile-nav-collapse.show {
            max-height: 420px;
        }
        .mobile-nav-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 16px 0;
        }
        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 10px 6px;
            border-radius: 10px;
            color: var(--text-secondary);
            font-size: 12px;
            font-weight: 500;
            text-decoration: none;
            text-align: center;
            transition: all var(--transition);
        }
        .mobile-nav-item i {
            font-size: 20px;
            color: var(--text-secondary);
        }
        .mobile-nav-item:hover {
            background-color: var(--primary-faint);
            color: var(--primary);
        }
        .mobile-nav-item:hover i {
            color: var(--primary);
        }
        .mobile-nav-item.active {
            background-color: var(--primary-light);
            color: var(--primary);
        }
        .mobile-nav-item.active i {
            color: var(--primary);
        }

        /* Breadcrumb */
        .breadcrumb-wrap {
            padding: 18px 0 0;
            font-size: 14px;
            color: var(--text-muted);
        }
        .breadcrumb-wrap a {
            color: var(--text-muted);
            text-decoration: none;
        }
        .breadcrumb-wrap a:hover {
            color: var(--primary);
        }
        .breadcrumb-wrap .separator {
            margin: 0 8px;
            color: var(--border);
        }

        /* Category Header */
        .category-header {
            background: linear-gradient(135deg, #F0F5FE 0%, #E5EEFD 50%, #F8FAFD 100%);
            padding: 40px 0 48px;
            border-bottom: 1px solid var(--border);
        }
        .category-header h1 {
            font-size: 36px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 12px;
            line-height: 1.35;
        }
        .category-header .category-desc {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 760px;
            line-height: 1.85;
            margin-bottom: 0;
        }

        /* Stats Summary */
        .stats-summary {
            margin-top: -28px;
            padding-bottom: 40px;
            position: relative;
            z-index: 5;
        }
        .stats-card {
            background: var(--white);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-md);
            padding: 20px 24px;
            text-align: center;
            height: 100%;
            border: 1px solid var(--border);
            transition: box-shadow var(--transition), transform var(--transition);
        }
        .stats-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }
        .stats-card .stats-number {
            font-family: var(--font-mono);
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 4px;
        }
        .stats-card .stats-label {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* Filter Toolbar */
        .filter-toolbar {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 18px 20px;
            box-shadow: var(--shadow-sm);
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }
        .filter-toolbar .filter-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-main);
            white-space: nowrap;
        }
        .filter-toolbar .btn-filter {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            border: 1px solid var(--border);
            background: var(--white);
            color: var(--text-secondary);
            transition: all var(--transition);
            white-space: nowrap;
        }
        .filter-toolbar .btn-filter:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-faint);
        }
        .filter-toolbar .btn-filter.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
        .filter-toolbar .form-select {
            max-width: 180px;
            border-radius: 20px;
            font-size: 13px;
            border: 1px solid var(--border);
            color: var(--text-secondary);
            padding: 8px 16px;
        }
        .filter-toolbar .form-select:focus {
            border-color: var(--primary);
            box-shadow: none;
        }

        /* Match Card List */
        .match-list {
            margin-bottom: 40px;
        }
        .match-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 18px 20px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
            box-shadow: var(--shadow-sm);
        }
        .match-card:hover {
            box-shadow: var(--shadow-md);
            border-color: rgba(46, 125, 234, 0.3);
            transform: translateY(-2px);
        }
        .match-card .match-thumb {
            width: 54px;
            height: 54px;
            border-radius: 10px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .match-card .match-league {
            font-size: 12px;
            font-weight: 600;
            color: var(--primary);
            background: var(--primary-light);
            padding: 2px 10px;
            border-radius: 12px;
            white-space: nowrap;
            min-width: 60px;
            text-align: center;
        }
        .match-card .match-info {
            flex: 1;
            min-width: 180px;
        }
        .match-card .match-teams {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 2px;
            line-height: 1.4;
        }
        .match-card .match-time {
            font-size: 13px;
            color: var(--text-muted);
        }
        .match-card .match-score {
            font-family: var(--font-mono);
            font-size: 24px;
            font-weight: 700;
            color: var(--text-main);
            text-align: center;
            white-space: nowrap;
            min-width: 70px;
        }
        .match-card .match-status {
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 14px;
            white-space: nowrap;
            min-width: 68px;
            text-align: center;
        }
        .match-status.live {
            background: var(--green-light);
            color: var(--green);
            animation: pulse-status 1.5s ease-in-out infinite;
        }
        .match-status.finished {
            background: var(--bg-gray);
            color: var(--text-muted);
        }
        .match-status.upcoming {
            background: var(--amber-light);
            color: var(--amber);
        }
        @keyframes pulse-status {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.65; }
        }

        /* Featured Match */
        .featured-match-card {
            background: var(--white);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-md);
            padding: 24px;
            height: 100%;
            border: 1px solid var(--border);
            transition: box-shadow var(--transition), transform var(--transition);
            display: flex;
            flex-direction: column;
        }
        .featured-match-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }
        .featured-match-card .featured-badge {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            color: var(--amber);
            background: var(--amber-light);
            padding: 4px 12px;
            border-radius: 14px;
            margin-bottom: 12px;
            align-self: flex-start;
        }
        .featured-match-card .featured-teams {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 6px;
            line-height: 1.5;
        }
        .featured-match-card .featured-score {
            font-family: var(--font-mono);
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 6px;
        }
        .featured-match-card .featured-detail {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 12px;
            line-height: 1.7;
        }
        .featured-match-card .featured-img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 14px;
        }

        /* Today Focus */
        .focus-panel {
            background: var(--bg-gray);
            border-radius: var(--radius-card);
            padding: 32px;
            border: 1px solid var(--border);
        }
        .focus-panel .focus-img {
            width: 100%;
            max-width: 280px;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
            margin: 0 auto 20px;
        }
        .focus-panel .focus-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 8px;
        }
        .focus-panel .focus-text {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.85;
            margin-bottom: 16px;
        }
        .focus-panel .focus-info-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }
        .focus-panel .focus-info-list li {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: var(--text-secondary);
        }
        .focus-panel .focus-info-list li i {
            color: var(--primary);
            font-size: 18px;
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, #EAF2FD 0%, #F8FAFD 50%, #FFF7EB 100%);
            border-radius: var(--radius-card);
            padding: 48px 40px;
            border: 1px solid var(--border);
            text-align: center;
        }
        .cta-section .cta-title {
            font-size: 26px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 12px;
        }
        .cta-section .cta-desc {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 24px;
            line-height: 1.8;
        }
        .cta-form {
            display: flex;
            gap: 12px;
            max-width: 520px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .cta-form .form-control {
            flex: 1;
            min-width: 220px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--border);
            padding: 12px 16px;
            font-size: 15px;
            background: var(--white);
            color: var(--text-main);
        }
        .cta-form .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(46, 125, 234, 0.15);
        }

        /* Buttons */
        .btn-primary-custom {
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: var(--radius-btn);
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 600;
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-primary-custom:hover {
            background: var(--primary-hover);
            color: #fff;
            transform: scale(1.02);
        }
        .btn-outline-custom {
            background: transparent;
            color: var(--primary);
            border: 1.5px solid var(--primary);
            border-radius: var(--radius-btn);
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 600;
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-outline-custom:hover {
            background: var(--primary-light);
            color: var(--primary-hover);
        }
        .btn-sm-custom {
            padding: 8px 18px;
            font-size: 13px;
            border-radius: 20px;
        }

        /* Footer */
        .site-footer {
            background-color: #1A2233;
            color: rgba(255, 255, 255, 0.75);
            padding: 60px 0 30px;
            margin-top: 0;
        }
        .site-footer .brand-logo {
            color: #fff;
        }
        .site-footer .brand-logo:hover {
            color: #fff;
        }
        .site-footer .footer-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.85;
            margin-top: 12px;
            max-width: 340px;
        }
        .site-footer .footer-col-title {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }
        .site-footer .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer .footer-links li {
            margin-bottom: 10px;
        }
        .site-footer .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: color var(--transition);
        }
        .site-footer .footer-links a:hover {
            color: #fff;
        }
        .site-footer .footer-contact {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 2;
        }
        .site-footer .footer-contact i {
            margin-right: 6px;
            color: rgba(255, 255, 255, 0.5);
        }
        .site-footer .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            margin-top: 40px;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.55);
        }

        /* Pagination */
        .pagination-custom {
            display: flex;
            gap: 8px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            margin: 32px 0;
        }
        .pagination-custom .page-link-custom {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 500;
            border: 1px solid var(--border);
            background: var(--white);
            color: var(--text-secondary);
            transition: all var(--transition);
            text-decoration: none;
        }
        .pagination-custom .page-link-custom:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-faint);
        }
        .pagination-custom .page-link-custom.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
        .pagination-custom .page-link-custom.disabled {
            opacity: 0.45;
            pointer-events: none;
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .category-header h1 {
                font-size: 30px;
            }
            .section-padding {
                padding: 60px 0;
            }
            .featured-match-card .featured-score {
                font-size: 26px;
            }
        }
        @media (max-width: 767.98px) {
            .category-header {
                padding: 28px 0 36px;
            }
            .category-header h1 {
                font-size: 26px;
            }
            .section-padding {
                padding: 48px 0;
            }
            .section-padding-sm {
                padding: 40px 0;
            }
            .match-card {
                padding: 14px 16px;
                gap: 10px;
            }
            .match-card .match-thumb {
                width: 44px;
                height: 44px;
            }
            .match-card .match-score {
                font-size: 20px;
                min-width: 56px;
            }
            .match-card .match-teams {
                font-size: 14px;
            }
            .filter-toolbar {
                padding: 14px 16px;
                gap: 8px;
            }
            .focus-panel {
                padding: 20px;
            }
            .cta-section {
                padding: 32px 20px;
            }
            .mobile-nav-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 6px;
            }
            .stats-card {
                padding: 14px 12px;
            }
            .stats-card .stats-number {
                font-size: 22px;
            }
            .site-footer {
                padding: 40px 0 24px;
            }
            .site-footer .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 519.98px) {
            .category-header h1 {
                font-size: 24px;
            }
            .match-card {
                flex-wrap: wrap;
            }
            .match-card .match-info {
                min-width: 140px;
            }
            .match-card .match-score {
                min-width: 52px;
                font-size: 18px;
            }
            .mobile-nav-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .cta-form {
                flex-direction: column;
            }
            .cta-form .form-control {
                min-width: 100%;
            }
            .featured-match-card .featured-score {
                font-size: 24px;
            }
        }

/* roulang page: category2 */
:root {
            --primary: #2E7DEA;
            --primary-hover: #2568C7;
            --primary-light: #EBF3FE;
            --primary-faint: #F0F5FE;
            --green: #3C9A5F;
            --green-light: #E8F5EC;
            --amber: #F5A623;
            --amber-light: #FFF4E0;
            --text-main: #1A2233;
            --text-secondary: #5A6577;
            --text-muted: #8A93A6;
            --border: #E4E9F2;
            --bg-gray: #F5F8FC;
            --white: #FFFFFF;
            --shadow-sm: 0 2px 8px rgba(26, 34, 51, 0.06);
            --shadow-md: 0 8px 24px rgba(26, 34, 51, 0.08);
            --shadow-lg: 0 12px 32px rgba(26, 34, 51, 0.12);
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-icon: 10px;
            --radius-price: 14px;
            --font-mono: 'Roboto Mono', 'SF Mono', 'Cascadia Mono', 'Consolas', 'Courier New', monospace;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Helvetica Neue', Arial, sans-serif;
            --transition: 0.2s ease;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            color: var(--text-main);
            background-color: var(--white);
            line-height: 1.75;
            font-size: 16px;
            font-weight: 400;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--primary-hover);
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible {
            outline: 3px solid rgba(46, 125, 234, 0.35);
            outline-offset: 2px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .section-padding {
            padding: 80px 0;
        }
        .section-padding-sm {
            padding: 60px 0;
        }
        .bg-gray-section {
            background-color: var(--bg-gray);
        }

        .section-label {
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            background-color: var(--primary-light);
            padding: 6px 14px;
            border-radius: 20px;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 14px;
            line-height: 1.4;
        }
        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.85;
            max-width: 720px;
        }
        .section-title-area {
            margin-bottom: 36px;
        }
        .section-title-area .section-title {
            margin-bottom: 8px;
        }

        /* Header / Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background-color: var(--white);
            box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(26, 34, 51, 0.04);
        }
        .brand-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            flex-wrap: wrap;
            gap: 12px;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-main);
            text-decoration: none;
        }
        .brand-logo:hover {
            color: var(--primary);
        }
        .brand-logo .logo-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--primary) 0%, #6DA8F5 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            flex-shrink: 0;
        }
        .brand-logo span.logo-text {
            font-size: 20px;
            letter-spacing: 0.3px;
        }
        .nav-icon-grid {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-item-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 8px 14px;
            border-radius: 10px;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 12px;
            font-weight: 500;
            transition: all var(--transition);
            min-width: 68px;
            text-align: center;
        }
        .nav-item-icon i {
            font-size: 22px;
            color: var(--text-secondary);
            transition: color var(--transition);
        }
        .nav-item-icon:hover {
            background-color: var(--primary-faint);
            color: var(--primary);
        }
        .nav-item-icon:hover i {
            color: var(--primary);
        }
        .nav-item-icon.active {
            background-color: var(--primary-light);
            color: var(--primary);
        }
        .nav-item-icon.active i {
            color: var(--primary);
        }
        .navbar-toggler {
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 8px 12px;
            color: var(--text-main);
            background-color: var(--white);
        }
        .navbar-toggler:focus {
            box-shadow: none;
            border-color: var(--primary);
        }
        .mobile-nav-collapse {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .mobile-nav-collapse.show {
            max-height: 460px;
        }
        .mobile-nav-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            padding: 16px 0;
        }
        .mobile-nav-grid .nav-item-icon {
            min-width: auto;
            padding: 12px 8px;
            font-size: 11px;
        }
        .mobile-nav-grid .nav-item-icon i {
            font-size: 20px;
        }

        /* Breadcrumb */
        .breadcrumb-bar {
            background-color: var(--bg-gray);
            padding: 16px 0;
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb {
            margin: 0;
            font-size: 14px;
            color: var(--text-muted);
            background-color: transparent;
            padding: 0;
        }
        .breadcrumb-item a {
            color: var(--text-secondary);
            font-weight: 500;
        }
        .breadcrumb-item a:hover {
            color: var(--primary);
        }
        .breadcrumb-item.active {
            color: var(--primary);
            font-weight: 600;
        }
        .breadcrumb-item + .breadcrumb-item::before {
            color: var(--text-muted);
            content: "/";
        }

        /* Category Header */
        .category-header {
            background: linear-gradient(180deg, var(--primary-faint) 0%, var(--white) 100%);
            padding: 48px 0 36px;
            border-bottom: 1px solid var(--border);
        }
        .category-header h1 {
            font-size: 34px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .category-header .category-desc {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.85;
            max-width: 780px;
            margin-bottom: 0;
        }
        .category-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 16px;
        }
        .category-stat-item {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .category-stat-item i {
            color: var(--primary);
            font-size: 16px;
        }

        /* Filter Bar */
        .filter-bar {
            background-color: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 16px 20px;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
        }
        .filter-bar .filter-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-main);
            margin-right: 4px;
            white-space: nowrap;
        }
        .filter-chip {
            display: inline-flex;
            align-items: center;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            background-color: var(--bg-gray);
            border: 1px solid var(--border);
            transition: all var(--transition);
            cursor: pointer;
            user-select: none;
            white-space: nowrap;
        }
        .filter-chip:hover {
            color: var(--primary);
            border-color: var(--primary);
            background-color: var(--primary-faint);
        }
        .filter-chip.active {
            color: #fff;
            background-color: var(--primary);
            border-color: var(--primary);
        }
        .filter-select {
            padding: 6px 32px 6px 12px;
            border-radius: 8px;
            font-size: 13px;
            color: var(--text-main);
            background-color: var(--white);
            border: 1px solid var(--border);
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235A6577' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
        }
        .filter-select:focus {
            border-color: var(--primary);
            outline: none;
        }

        /* News List */
        .news-list-card {
            display: flex;
            background-color: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            margin-bottom: 16px;
        }
        .news-list-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
            border-color: rgba(46, 125, 234, 0.25);
        }
        .news-list-card .news-thumb {
            width: 200px;
            min-height: 140px;
            flex-shrink: 0;
            overflow: hidden;
            background-color: var(--bg-gray);
        }
        .news-list-card .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.35s ease;
        }
        .news-list-card:hover .news-thumb img {
            transform: scale(1.05);
        }
        .news-list-card .news-body {
            flex: 1;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 8px;
        }
        .news-list-card .news-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .news-list-card .news-tag {
            font-size: 12px;
            font-weight: 600;
            color: var(--primary);
            background-color: var(--primary-light);
            padding: 3px 10px;
            border-radius: 4px;
            letter-spacing: 0.3px;
        }
        .news-list-card .news-tag.news-tag-green {
            color: var(--green);
            background-color: var(--green-light);
        }
        .news-list-card .news-tag.news-tag-amber {
            color: #B87512;
            background-color: var(--amber-light);
        }
        .news-list-card .news-title {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-main);
            line-height: 1.5;
            margin: 0;
            transition: color var(--transition);
        }
        .news-list-card:hover .news-title {
            color: var(--primary);
        }
        .news-list-card .news-excerpt {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-list-card .news-meta {
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .news-list-card .news-meta i {
            font-size: 13px;
            margin-right: 4px;
        }

        /* Sidebar Cards */
        .sidebar-card {
            background-color: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 20px;
            box-shadow: var(--shadow-sm);
            margin-bottom: 20px;
        }
        .sidebar-card .sidebar-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card .sidebar-title i {
            color: var(--primary);
            font-size: 18px;
        }
        .sidebar-news-item {
            display: flex;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            transition: all var(--transition);
        }
        .sidebar-news-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .sidebar-news-item:hover .sidebar-news-title {
            color: var(--primary);
        }
        .sidebar-news-item .sidebar-news-thumb {
            width: 64px;
            height: 48px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
            background-color: var(--bg-gray);
        }
        .sidebar-news-item .sidebar-news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .sidebar-news-item .sidebar-news-info {
            flex: 1;
            min-width: 0;
        }
        .sidebar-news-item .sidebar-news-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-main);
            line-height: 1.5;
            margin: 0 0 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color var(--transition);
        }
        .sidebar-news-item .sidebar-news-meta {
            font-size: 11px;
            color: var(--text-muted);
        }

        /* Editor Pick */
        .editor-pick-card {
            display: flex;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            align-items: center;
        }
        .editor-pick-card:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .editor-pick-card .pick-number {
            font-family: var(--font-mono);
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-light);
            width: 40px;
            flex-shrink: 0;
            text-align: center;
        }
        .editor-pick-card .pick-info {
            flex: 1;
            min-width: 0;
        }
        .editor-pick-card .pick-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-main);
            line-height: 1.5;
            margin: 0 0 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .editor-pick-card:hover .pick-title {
            color: var(--primary);
        }
        .editor-pick-card .pick-meta {
            font-size: 11px;
            color: var(--text-muted);
        }

        /* Media Entry */
        .media-entry-card {
            display: block;
            border-radius: var(--radius-card);
            overflow: hidden;
            position: relative;
            background-color: var(--bg-gray);
            text-decoration: none;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            min-height: 170px;
        }
        .media-entry-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }
        .media-entry-card .media-thumb {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }
        .media-entry-card .media-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .media-entry-card .media-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(26, 34, 51, 0) 30%, rgba(26, 34, 51, 0.78) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 18px;
            border-radius: var(--radius-card);
        }
        .media-entry-card .media-icon {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 16px;
        }
        .media-entry-card .media-title {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 4px;
            line-height: 1.4;
        }
        .media-entry-card .media-count {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.75);
        }

        /* Pagination */
        .pagination-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 28px;
        }
        .pagination {
            gap: 6px;
        }
        .pagination .page-link {
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px;
            transition: all var(--transition);
        }
        .pagination .page-link:hover {
            background-color: var(--primary-faint);
            color: var(--primary);
            border-color: var(--primary);
        }
        .pagination .page-item.active .page-link {
            background-color: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
        .pagination .page-item.disabled .page-link {
            color: var(--text-muted);
            background-color: var(--bg-gray);
            border-color: var(--border);
            pointer-events: none;
        }

        /* Subscribe CTA */
        .subscribe-cta {
            background: linear-gradient(135deg, var(--primary-faint) 0%, #E8F1FD 50%, var(--primary-light) 100%);
            border-radius: var(--radius-card);
            padding: 44px 36px;
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(46, 125, 234, 0.15);
        }
        .subscribe-cta::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -40px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background-color: rgba(46, 125, 234, 0.08);
            pointer-events: none;
        }
        .subscribe-cta .cta-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 8px;
        }
        .subscribe-cta .cta-desc {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 18px;
            line-height: 1.7;
        }
        .subscribe-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .subscribe-form input[type="email"] {
            flex: 1;
            min-width: 220px;
            padding: 10px 16px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--border);
            font-size: 14px;
            color: var(--text-main);
            background-color: var(--white);
            transition: all var(--transition);
        }
        .subscribe-form input[type="email"]:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(46, 125, 234, 0.12);
            outline: none;
        }
        .subscribe-form .btn-subscribe {
            padding: 10px 24px;
            border-radius: var(--radius-btn);
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            background-color: var(--primary);
            border: none;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .subscribe-form .btn-subscribe:hover {
            background-color: var(--primary-hover);
            transform: scale(1.02);
        }

        /* Buttons */
        .btn-primary-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            background-color: var(--primary);
            border: 1px solid var(--primary);
            transition: all var(--transition);
        }
        .btn-primary-custom:hover {
            background-color: var(--primary-hover);
            border-color: var(--primary-hover);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(46, 125, 234, 0.25);
        }
        .btn-outline-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 600;
            color: var(--primary);
            background-color: transparent;
            border: 1px solid var(--primary);
            transition: all var(--transition);
        }
        .btn-outline-custom:hover {
            background-color: var(--primary-faint);
            color: var(--primary-hover);
            border-color: var(--primary);
        }
        .btn-view-more {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            padding: 8px 0;
            transition: all var(--transition);
        }
        .btn-view-more:hover {
            color: var(--primary-hover);
            gap: 8px;
        }

        /* Footer */
        .site-footer {
            background-color: #1A2233;
            color: rgba(255, 255, 255, 0.78);
            padding: 56px 0 24px;
            margin-top: 0;
        }
        .site-footer .brand-logo {
            color: #fff;
        }
        .site-footer .brand-logo:hover {
            color: #6DA8F5;
        }
        .site-footer .footer-desc {
            font-size: 14px;
            line-height: 1.85;
            color: rgba(255, 255, 255, 0.65);
            margin-top: 14px;
            max-width: 320px;
        }
        .footer-col-title {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 0.3px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.65);
            font-size: 14px;
            transition: all var(--transition);
        }
        .footer-links a:hover {
            color: #6DA8F5;
            padding-left: 4px;
        }
        .footer-contact {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            line-height: 2;
        }
        .footer-contact i {
            color: #6DA8F5;
            margin-right: 6px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 20px;
            margin-top: 40px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .mobile-nav-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .news-list-card .news-thumb {
                width: 140px;
                min-height: 110px;
            }
            .news-list-card .news-title {
                font-size: 15px;
            }
            .category-header h1 {
                font-size: 28px;
            }
            .section-padding {
                padding: 60px 0;
            }
        }

        @media (max-width: 767.98px) {
            .mobile-nav-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .news-list-card {
                flex-direction: column;
            }
            .news-list-card .news-thumb {
                width: 100%;
                min-height: 160px;
            }
            .news-list-card .news-body {
                padding: 14px 16px;
            }
            .category-header {
                padding: 32px 0 24px;
            }
            .category-header h1 {
                font-size: 24px;
            }
            .filter-bar {
                padding: 12px 14px;
                gap: 8px;
            }
            .subscribe-cta {
                padding: 28px 20px;
            }
            .section-padding {
                padding: 40px 0;
            }
            .section-padding-sm {
                padding: 36px 0;
            }
        }

        @media (max-width: 519.98px) {
            .mobile-nav-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .news-list-card .news-thumb {
                min-height: 140px;
            }
            .news-list-card .news-title {
                font-size: 14px;
            }
            .category-stats {
                gap: 12px;
                flex-wrap: wrap;
            }
            .filter-chip {
                padding: 5px 12px;
                font-size: 12px;
            }
            .subscribe-form {
                flex-direction: column;
            }
            .subscribe-form input[type="email"] {
                min-width: 100%;
            }
            .subscribe-form .btn-subscribe {
                width: 100%;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

/* roulang page: category3 */
:root {
            --primary: #2E7DEA;
            --primary-hover: #2568C7;
            --primary-light: #EBF3FE;
            --primary-faint: #F0F5FE;
            --green: #3C9A5F;
            --green-light: #E8F5EC;
            --amber: #F5A623;
            --amber-light: #FFF4E0;
            --text-main: #1A2233;
            --text-secondary: #5A6577;
            --text-muted: #8A93A6;
            --border: #E4E9F2;
            --bg-gray: #F5F8FC;
            --white: #FFFFFF;
            --shadow-sm: 0 2px 8px rgba(26, 34, 51, 0.06);
            --shadow-md: 0 8px 24px rgba(26, 34, 51, 0.08);
            --shadow-lg: 0 12px 32px rgba(26, 34, 51, 0.12);
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-icon: 10px;
            --radius-price: 14px;
            --font-mono: 'Roboto Mono', 'SF Mono', 'Cascadia Mono', 'Consolas', 'Courier New', monospace;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Helvetica Neue', Arial, sans-serif;
            --transition: 0.2s ease;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            color: var(--text-main);
            background-color: var(--white);
            line-height: 1.75;
            font-size: 16px;
            font-weight: 400;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--primary-hover);
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible {
            outline: 3px solid rgba(46, 125, 234, 0.35);
            outline-offset: 2px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .section-padding {
            padding: 48px 0;
        }
        .section-padding-sm {
            padding: 36px 0;
        }
        .bg-gray-section {
            background-color: var(--bg-gray);
        }

        .section-label {
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            background-color: var(--primary-light);
            padding: 6px 14px;
            border-radius: 20px;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .section-title {
            font-size: 26px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 14px;
            line-height: 1.4;
        }
        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.85;
            max-width: 720px;
        }
        .section-title-area {
            margin-bottom: 28px;
        }
        .section-title-area .section-title {
            margin-bottom: 8px;
        }

        /* Header / Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background-color: var(--white);
            box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(26, 34, 51, 0.04);
        }
        .brand-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            flex-wrap: wrap;
            gap: 12px;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-main);
            text-decoration: none;
        }
        .brand-logo:hover {
            color: var(--primary);
        }
        .brand-logo .logo-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--primary) 0%, #6DA8F5 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            flex-shrink: 0;
        }
        .brand-logo span.logo-text {
            font-size: 20px;
            letter-spacing: 0.3px;
        }
        .nav-icon-grid {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-item-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 8px 14px;
            border-radius: 10px;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 12px;
            font-weight: 500;
            transition: all var(--transition);
            min-width: 68px;
            text-align: center;
        }
        .nav-item-icon i {
            font-size: 22px;
            color: var(--text-secondary);
            transition: color var(--transition);
        }
        .nav-item-icon:hover {
            background-color: var(--primary-faint);
            color: var(--primary);
        }
        .nav-item-icon:hover i {
            color: var(--primary);
        }
        .nav-item-icon.active {
            background-color: var(--primary-light);
            color: var(--primary);
        }
        .nav-item-icon.active i {
            color: var(--primary);
        }
        .navbar-toggler {
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 8px 12px;
            color: var(--text-main);
            background-color: var(--white);
        }
        .navbar-toggler:focus {
            box-shadow: none;
            border-color: var(--primary);
        }
        .mobile-nav-collapse {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .mobile-nav-collapse.show {
            max-height: 420px;
        }
        .mobile-nav-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            padding: 16px 0;
        }
        .mobile-nav-grid .nav-item-icon {
            min-width: 0;
            padding: 12px 8px;
            border-radius: 10px;
            background-color: var(--bg-gray);
        }

        /* Breadcrumb */
        .breadcrumb-bar {
            background-color: var(--primary-faint);
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb-bar .breadcrumb {
            margin: 0;
            font-size: 14px;
        }
        .breadcrumb-bar .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb-bar .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb-bar .breadcrumb .active {
            color: var(--primary);
            font-weight: 500;
        }
        .breadcrumb-bar .breadcrumb-item+.breadcrumb-item::before {
            color: var(--text-muted);
            content: "›";
            font-size: 16px;
        }

        /* Page intro area */
        .page-intro {
            background: linear-gradient(135deg, #F0F5FE 0%, #E5EEFD 60%, #F8FBFF 100%);
            padding: 40px 0 32px;
            border-bottom: 1px solid var(--border);
        }
        .page-intro h1 {
            font-size: 34px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 12px;
            line-height: 1.35;
        }
        .page-intro p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.85;
            max-width: 760px;
            margin-bottom: 0;
        }

        /* Stat summary cards */
        .stat-summary-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: -20px;
            position: relative;
            z-index: 10;
        }
        .stat-summary-card {
            flex: 1 1 160px;
            min-width: 140px;
            background: var(--white);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-sm);
            padding: 18px 20px;
            text-align: center;
            border: 1px solid var(--border);
            transition: all var(--transition);
        }
        .stat-summary-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .stat-summary-card .stat-num {
            font-family: var(--font-mono);
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.2;
        }
        .stat-summary-card .stat-label {
            font-size: 13px;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        /* Filter toolbar */
        .filter-toolbar {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            margin-bottom: 20px;
        }
        .filter-toolbar .filter-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-main);
            margin-right: 4px;
        }
        .filter-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            border: 1px solid var(--border);
            background: var(--white);
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .filter-pill:hover {
            border-color: var(--primary);
            color: var(--primary);
            background-color: var(--primary-faint);
        }
        .filter-pill.active {
            background-color: var(--primary);
            border-color: var(--primary);
            color: var(--white);
        }
        .filter-pill .bi {
            font-size: 14px;
        }

        /* League standings table card */
        .standings-card {
            background: var(--white);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            overflow: hidden;
            transition: all var(--transition);
            margin-bottom: 20px;
        }
        .standings-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .standings-card .standings-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            border-bottom: 1px solid var(--border);
            background-color: var(--bg-gray);
            flex-wrap: wrap;
            gap: 8px;
        }
        .standings-card .standings-header .league-name {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .standings-card .standings-header .league-name .league-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--green);
            flex-shrink: 0;
        }
        .standings-card .standings-header .league-meta {
            font-size: 13px;
            color: var(--text-muted);
        }
        .standings-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }
        .standings-table th {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.3px;
            padding: 10px 12px;
            text-align: center;
            border-bottom: 1px solid var(--border);
            background-color: var(--white);
            white-space: nowrap;
        }
        .standings-table th:first-child {
            text-align: left;
            padding-left: 20px;
        }
        .standings-table td {
            padding: 10px 12px;
            text-align: center;
            border-bottom: 1px solid var(--border);
            font-size: 14px;
            color: var(--text-main);
            white-space: nowrap;
        }
        .standings-table td:first-child {
            text-align: left;
            padding-left: 20px;
        }
        .standings-table tr:last-child td {
            border-bottom: none;
        }
        .standings-table tbody tr {
            transition: background-color var(--transition);
        }
        .standings-table tbody tr:hover {
            background-color: var(--primary-faint);
        }
        .standings-table .team-cell {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }
        .standings-table .team-cell .team-badge {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background-color: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
            color: var(--primary);
            flex-shrink: 0;
        }
        .standings-table .rank-1,
        .standings-table .rank-2,
        .standings-table .rank-3,
        .standings-table .rank-4 {
            font-weight: 700;
            font-family: var(--font-mono);
            font-size: 15px;
        }
        .standings-table .rank-1 {
            color: var(--amber);
        }
        .standings-table .rank-2 {
            color: #8A93A6;
        }
        .standings-table .rank-3 {
            color: #B87333;
        }
        .standings-table .rank-4 {
            color: var(--primary);
        }
        .standings-table .pts {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 15px;
            color: var(--primary);
        }

        /* Scorer list cards */
        .scorer-card {
            background: var(--white);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            padding: 20px;
            transition: all var(--transition);
            height: 100%;
        }
        .scorer-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .scorer-card .scorer-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .scorer-card .scorer-title .badge-icon {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }
        .scorer-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .scorer-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            border-bottom: 1px solid var(--border);
            font-size: 14px;
        }
        .scorer-list li:last-child {
            border-bottom: none;
        }
        .scorer-list .scorer-rank {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 15px;
            width: 28px;
            color: var(--text-muted);
            flex-shrink: 0;
        }
        .scorer-list .scorer-rank.top3 {
            color: var(--amber);
        }
        .scorer-list .scorer-name {
            flex: 1;
            font-weight: 500;
            color: var(--text-main);
        }
        .scorer-list .scorer-team {
            font-size: 12px;
            color: var(--text-muted);
            flex-shrink: 0;
        }
        .scorer-list .scorer-count {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 17px;
            color: var(--primary);
            flex-shrink: 0;
            min-width: 32px;
            text-align: right;
        }

        /* Comparison CTA card */
        .comparison-card {
            background: linear-gradient(135deg, var(--primary-faint) 0%, #E8F0FE 50%, var(--white) 100%);
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            padding: 32px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            transition: all var(--transition);
        }
        .comparison-card:hover {
            box-shadow: var(--shadow-md);
        }
        .comparison-card .comparison-text h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 6px;
        }
        .comparison-card .comparison-text p {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 0;
        }

        /* CTA subscribe card */
        .cta-card {
            background: linear-gradient(135deg, var(--primary) 0%, #3D8BF0 100%);
            border-radius: var(--radius-price);
            padding: 40px 32px;
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        .cta-card h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 8px;
        }
        .cta-card p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 0;
            max-width: 500px;
        }
        .cta-card .btn-cta-light {
            background-color: var(--white);
            color: var(--primary);
            border: none;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 15px;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .cta-card .btn-cta-light:hover {
            background-color: #F0F5FE;
            transform: scale(1.02);
            color: var(--primary-hover);
        }
        .cta-card .btn-cta-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.7);
            padding: 10px 24px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 15px;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .cta-card .btn-cta-outline:hover {
            background-color: rgba(255, 255, 255, 0.15);
            border-color: var(--white);
        }

        /* Image card */
        .data-image-card {
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            background: var(--white);
            transition: all var(--transition);
        }
        .data-image-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .data-image-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .data-image-card .data-image-body {
            padding: 16px 20px;
        }
        .data-image-card .data-image-body h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 6px;
        }
        .data-image-card .data-image-body p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 0;
            line-height: 1.7;
        }

        /* Footer */
        .site-footer {
            background-color: #1A2233;
            color: rgba(255, 255, 255, 0.75);
            padding: 48px 0 24px;
            margin-top: 40px;
        }
        .site-footer .brand-logo {
            color: #fff;
        }
        .site-footer .brand-logo:hover {
            color: #E5EEFD;
        }
        .footer-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            margin-top: 12px;
            max-width: 340px;
            line-height: 1.8;
        }
        .footer-col-title {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.65);
            font-size: 14px;
            transition: color var(--transition);
        }
        .footer-links a:hover {
            color: #fff;
        }
        .footer-contact {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            line-height: 2;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            margin-top: 32px;
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: space-between;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .brand-row {
                padding: 10px 0;
            }
            .page-intro h1 {
                font-size: 28px;
            }
            .stat-summary-row {
                margin-top: -12px;
            }
            .stat-summary-card {
                padding: 14px 12px;
                min-width: 110px;
            }
            .stat-summary-card .stat-num {
                font-size: 22px;
            }
            .standings-table {
                font-size: 13px;
            }
            .standings-table th,
            .standings-table td {
                padding: 8px 8px;
            }
            .standings-table .team-cell .team-badge {
                width: 22px;
                height: 22px;
                font-size: 9px;
            }
            .cta-card {
                padding: 28px 20px;
                text-align: center;
                justify-content: center;
            }
            .cta-card p {
                max-width: 100%;
            }
        }

        @media (max-width: 767.98px) {
            .section-padding {
                padding: 32px 0;
            }
            .page-intro {
                padding: 28px 0 24px;
            }
            .page-intro h1 {
                font-size: 24px;
            }
            .page-intro p {
                font-size: 14px;
            }
            .section-title {
                font-size: 21px;
            }
            .stat-summary-row {
                gap: 8px;
                flex-wrap: nowrap;
                overflow-x: auto;
                padding-bottom: 8px;
                margin-top: -10px;
            }
            .stat-summary-card {
                flex: 0 0 120px;
                min-width: 120px;
                padding: 12px 10px;
            }
            .stat-summary-card .stat-num {
                font-size: 20px;
            }
            .stat-summary-card .stat-label {
                font-size: 11px;
            }
            .filter-toolbar {
                gap: 6px;
            }
            .filter-pill {
                padding: 6px 12px;
                font-size: 12px;
            }
            .standings-card .standings-header {
                padding: 12px 14px;
            }
            .standings-card .standings-header .league-name {
                font-size: 15px;
            }
            .standings-table {
                font-size: 12px;
                overflow-x: auto;
                display: block;
            }
            .standings-table th,
            .standings-table td {
                padding: 6px 6px;
                font-size: 12px;
            }
            .standings-table th:first-child,
            .standings-table td:first-child {
                padding-left: 12px;
            }
            .standings-table .team-cell {
                gap: 5px;
                font-size: 12px;
            }
            .standings-table .team-cell .team-badge {
                width: 20px;
                height: 20px;
                font-size: 8px;
            }
            .standings-table .pts {
                font-size: 13px;
            }
            .scorer-card {
                padding: 14px;
                margin-bottom: 12px;
            }
            .scorer-card .scorer-title {
                font-size: 15px;
            }
            .scorer-list li {
                font-size: 13px;
                gap: 6px;
            }
            .scorer-list .scorer-name {
                font-size: 13px;
            }
            .scorer-list .scorer-count {
                font-size: 15px;
            }
            .comparison-card {
                padding: 20px 16px;
                text-align: center;
                justify-content: center;
            }
            .cta-card {
                padding: 24px 16px;
                text-align: center;
                justify-content: center;
                border-radius: var(--radius-card);
            }
            .cta-card h2 {
                font-size: 19px;
            }
            .cta-card .btn-cta-light,
            .cta-card .btn-cta-outline {
                padding: 10px 18px;
                font-size: 14px;
            }
            .data-image-card img {
                height: 140px;
            }
            .site-footer {
                padding: 32px 0 16px;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 6px;
                text-align: center;
            }
            .mobile-nav-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 6px;
            }
            .mobile-nav-grid .nav-item-icon {
                font-size: 11px;
                padding: 10px 6px;
            }
            .mobile-nav-grid .nav-item-icon i {
                font-size: 18px;
            }
        }

        @media (max-width: 520px) {
            .brand-logo span.logo-text {
                font-size: 17px;
            }
            .brand-logo .logo-icon {
                width: 36px;
                height: 36px;
                font-size: 17px;
            }
            .page-intro h1 {
                font-size: 21px;
            }
            .stat-summary-card {
                flex: 0 0 100px;
                min-width: 100px;
                padding: 10px 8px;
            }
            .stat-summary-card .stat-num {
                font-size: 18px;
            }
            .standings-table {
                font-size: 11px;
            }
            .standings-table th,
            .standings-table td {
                padding: 5px 4px;
                font-size: 11px;
            }
            .standings-table .team-cell {
                font-size: 11px;
                gap: 4px;
            }
            .standings-table .team-cell .team-badge {
                width: 18px;
                height: 18px;
                font-size: 7px;
            }
            .cta-card h2 {
                font-size: 17px;
            }
            .cta-card p {
                font-size: 13px;
            }
        }

/* roulang page: category5 */
:root {
      --primary: #2E7DEA;
      --primary-hover: #2568C7;
      --primary-light: #EBF3FE;
      --primary-faint: #F0F5FE;
      --green: #3C9A5F;
      --green-light: #E8F5EC;
      --amber: #F5A623;
      --amber-light: #FFF4E0;
      --text-main: #1A2233;
      --text-secondary: #5A6577;
      --text-muted: #8A93A6;
      --border: #E4E9F2;
      --bg-gray: #F5F8FC;
      --white: #FFFFFF;
      --shadow-sm: 0 2px 8px rgba(26, 34, 51, 0.06);
      --shadow-md: 0 8px 24px rgba(26, 34, 51, 0.08);
      --shadow-lg: 0 12px 32px rgba(26, 34, 51, 0.12);
      --radius-card: 12px;
      --radius-btn: 8px;
      --radius-icon: 10px;
      --radius-price: 14px;
      --font-mono: 'Roboto Mono', 'SF Mono', 'Cascadia Mono', 'Consolas', 'Courier New', monospace;
      --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Helvetica Neue', Arial, sans-serif;
      --transition: 0.2s ease;
    }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: var(--font-sans);
      color: var(--text-main);
      background-color: var(--white);
      line-height: 1.75;
      font-size: 16px;
      font-weight: 400;
    }

    a {
      color: var(--primary);
      text-decoration: none;
      transition: color var(--transition);
    }

    a:hover {
      color: var(--primary-hover);
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible {
      outline: 3px solid rgba(46, 125, 234, 0.35);
      outline-offset: 2px;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .section-padding {
      padding: 80px 0;
    }
    .section-padding-sm {
      padding: 60px 0;
    }
    .bg-gray-section {
      background-color: var(--bg-gray);
    }
    .section-label {
      display: inline-block;
      font-size: 14px;
      font-weight: 600;
      color: var(--primary);
      background-color: var(--primary-light);
      padding: 6px 14px;
      border-radius: 20px;
      margin-bottom: 12px;
      letter-spacing: 0.5px;
    }
    .section-title {
      font-size: 28px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 14px;
      line-height: 1.4;
    }
    .section-desc {
      font-size: 16px;
      color: var(--text-secondary);
      line-height: 1.85;
      max-width: 720px;
    }
    .section-title-area {
      margin-bottom: 36px;
    }
    .section-title-area .section-title {
      margin-bottom: 8px;
    }

    /* Header / Navigation */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1050;
      background-color: var(--white);
      box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(26, 34, 51, 0.04);
    }
    .brand-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
      flex-wrap: wrap;
      gap: 12px;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 20px;
      color: var(--text-main);
      text-decoration: none;
    }
    .brand-logo:hover {
      color: var(--primary);
    }
    .brand-logo .logo-icon {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--primary) 0%, #6DA8F5 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 20px;
      flex-shrink: 0;
    }
    .brand-logo span.logo-text {
      font-size: 20px;
      letter-spacing: 0.3px;
      color: var(--text-main);
    }
    .brand-logo span.logo-text:hover {
      color: var(--primary);
    }
    .nav-icon-grid {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
    }
    .nav-item-icon {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      padding: 8px 14px;
      border-radius: 10px;
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 12px;
      font-weight: 500;
      transition: all var(--transition);
      min-width: 68px;
      text-align: center;
    }
    .nav-item-icon i {
      font-size: 22px;
      color: var(--text-secondary);
      transition: color var(--transition);
    }
    .nav-item-icon:hover {
      background-color: var(--primary-faint);
      color: var(--primary);
    }
    .nav-item-icon:hover i {
      color: var(--primary);
    }
    .nav-item-icon.active {
      background-color: var(--primary-light);
      color: var(--primary);
    }
    .nav-item-icon.active i {
      color: var(--primary);
    }
    .navbar-toggler {
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 8px 12px;
      color: var(--text-main);
      background-color: var(--white);
    }
    .navbar-toggler:focus {
      box-shadow: none;
      border-color: var(--primary);
    }
    .mobile-nav-collapse {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .mobile-nav-collapse.show {
      max-height: 420px;
    }
    .mobile-nav-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
      padding: 12px 0;
    }
    .mobile-nav-grid .nav-item-icon {
      min-width: auto;
      padding: 10px 6px;
      font-size: 12px;
    }
    .mobile-nav-grid .nav-item-icon i {
      font-size: 24px;
    }

    /* Breadcrumb */
    .breadcrumb-section {
      background-color: var(--primary-faint);
      padding: 24px 0;
    }
    .breadcrumb-nav {
      --bs-breadcrumb-divider: '›';
      margin-bottom: 0;
      font-size: 14px;
    }
    .breadcrumb-nav .breadcrumb-item a {
      color: var(--text-secondary);
      text-decoration: none;
    }
    .breadcrumb-nav .breadcrumb-item a:hover {
      color: var(--primary);
    }
    .breadcrumb-nav .breadcrumb-item.active {
      color: var(--primary);
      font-weight: 600;
    }
    .page-heading {
      margin-top: 16px;
      margin-bottom: 8px;
    }
    .page-heading h1 {
      font-size: 32px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
    }
    .page-heading .lead-text {
      font-size: 16px;
      color: var(--text-secondary);
      line-height: 1.8;
      max-width: 820px;
    }

    /* Filter toolbar */
    .filter-toolbar {
      background-color: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 18px 20px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      margin-bottom: 28px;
    }
    .filter-group {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
    }
    .filter-label {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-secondary);
      margin-right: 4px;
    }
    .btn-filter {
      border: 1px solid var(--border);
      background: var(--white);
      color: var(--text-secondary);
      border-radius: 20px;
      padding: 6px 14px;
      font-size: 13px;
      font-weight: 500;
      transition: all var(--transition);
    }
    .btn-filter:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: var(--primary-faint);
    }
    .btn-filter.active {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
    }
    .search-input {
      flex: 1;
      min-width: 180px;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 7px 16px;
      font-size: 14px;
      background-color: var(--bg-gray);
      transition: all var(--transition);
    }
    .search-input:focus {
      outline: none;
      border-color: var(--primary);
      background-color: #fff;
      box-shadow: 0 0 0 3px rgba(46, 125, 234, 0.12);
    }

    /* Player list cards */
    .player-list-item {
      background-color: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      padding: 16px 18px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      transition: all var(--transition);
      margin-bottom: 12px;
    }
    .player-list-item:hover {
      box-shadow: var(--shadow-md);
      border-color: #d0ddf0;
      transform: translateY(-2px);
    }
    .player-avatar {
      width: 64px;
      height: 64px;
      border-radius: 12px;
      object-fit: cover;
      flex-shrink: 0;
      background-color: var(--primary-faint);
    }
    .player-info {
      flex: 1;
      min-width: 180px;
    }
    .player-name {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 2px;
    }
    .player-meta {
      font-size: 13px;
      color: var(--text-secondary);
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
    }
    .player-meta span {
      background-color: var(--bg-gray);
      border-radius: 6px;
      padding: 2px 8px;
      font-size: 12px;
    }
    .player-stats {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      align-items: center;
    }
    .stat-block {
      text-align: center;
      min-width: 52px;
    }
    .stat-value {
      font-family: var(--font-mono);
      font-size: 20px;
      font-weight: 700;
      color: var(--text-main);
      line-height: 1.2;
    }
    .stat-label {
      font-size: 12px;
      color: var(--text-muted);
    }
    .stat-value.highlight {
      color: var(--primary);
    }
    .stat-value.green {
      color: var(--green);
    }
    .status-badge {
      font-size: 12px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 20px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .status-badge.fit {
      background: var(--green-light);
      color: var(--green);
    }
    .status-badge.rotation {
      background: var(--amber-light);
      color: #C77C00;
    }
    .status-badge.starting {
      background: var(--primary-light);
      color: var(--primary);
    }

    /* Hot players */
    .hot-player-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      padding: 20px;
      box-shadow: var(--shadow-sm);
      height: 100%;
      transition: all var(--transition);
    }
    .hot-player-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
      border-color: #d0ddf0;
    }
    .hot-player-img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 14px;
      background-color: var(--primary-faint);
    }
    .hot-player-name {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 4px;
    }
    .hot-player-team {
      font-size: 13px;
      color: var(--text-secondary);
      margin-bottom: 10px;
    }
    .hot-player-stats {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      font-size: 12px;
      color: var(--text-secondary);
    }
    .hot-player-stats span {
      background: var(--bg-gray);
      border-radius: 6px;
      padding: 3px 8px;
      font-family: var(--font-mono);
    }

    /* Summary stat cards */
    .summary-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      padding: 22px 18px;
      box-shadow: var(--shadow-sm);
      text-align: center;
      height: 100%;
    }
    .summary-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: var(--primary-light);
      color: var(--primary);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 12px;
    }
    .summary-value {
      font-family: var(--font-mono);
      font-size: 28px;
      font-weight: 700;
      color: var(--text-main);
      line-height: 1.2;
      margin-bottom: 4px;
    }
    .summary-label {
      font-size: 13px;
      color: var(--text-secondary);
    }

    /* Pagination */
    .pagination-wrap {
      display: flex;
      justify-content: center;
      margin-top: 24px;
    }
    .custom-pagination {
      display: flex;
      gap: 6px;
    }
    .custom-pagination .page-link {
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 6px 14px;
      color: var(--text-secondary);
      font-size: 14px;
      font-weight: 500;
      background: var(--white);
      transition: all var(--transition);
    }
    .custom-pagination .page-link:hover {
      background: var(--primary-faint);
      color: var(--primary);
      border-color: var(--primary);
    }
    .custom-pagination .page-link.active-page {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
    }

    /* Subscribe CTA */
    .subscribe-cta {
      background: linear-gradient(135deg, #F0F5FE 0%, #E5EEFD 100%);
      border-radius: 16px;
      padding: 40px 36px;
      text-align: center;
    }
    .subscribe-cta h2 {
      font-size: 24px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 10px;
    }
    .subscribe-cta p {
      color: var(--text-secondary);
      font-size: 15px;
      margin-bottom: 22px;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
    }
    .subscribe-form {
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .subscribe-form input {
      flex: 1;
      min-width: 220px;
      max-width: 360px;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 12px 16px;
      font-size: 14px;
      background: #fff;
      transition: all var(--transition);
    }
    .subscribe-form input:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(46, 125, 234, 0.12);
    }
    .btn-primary-custom {
      background: var(--primary);
      border: none;
      border-radius: 8px;
      padding: 12px 24px;
      color: #fff;
      font-weight: 600;
      font-size: 14px;
      transition: all var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
    }
    .btn-primary-custom:hover {
      background: var(--primary-hover);
      transform: scale(1.02);
      color: #fff;
    }
    .btn-outline-custom {
      border: 1px solid var(--primary);
      border-radius: 8px;
      padding: 12px 24px;
      color: var(--primary);
      font-weight: 600;
      font-size: 14px;
      background: transparent;
      transition: all var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .btn-outline-custom:hover {
      background: var(--primary-faint);
      color: var(--primary-hover);
    }

    /* Footer */
    .site-footer {
      background: #1A2233;
      color: #C7CED9;
      padding: 56px 0 24px;
      font-size: 14px;
    }
    .site-footer .brand-logo {
      margin-bottom: 14px;
    }
    .site-footer .brand-logo .logo-icon {
      background: linear-gradient(135deg, #2E7DEA, #6DA8F5);
    }
    .site-footer .brand-logo span.logo-text {
      color: #fff;
    }
    .footer-desc {
      color: #9AA3B5;
      line-height: 1.8;
      max-width: 320px;
      margin-bottom: 0;
    }
    .footer-col-title {
      color: #fff;
      font-weight: 600;
      font-size: 15px;
      margin-bottom: 14px;
    }
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links li {
      margin-bottom: 8px;
    }
    .footer-links a {
      color: #9AA3B5;
      text-decoration: none;
      transition: color var(--transition);
    }
    .footer-links a:hover {
      color: #fff;
    }
    .footer-contact {
      color: #9AA3B5;
      line-height: 2;
    }
    .footer-contact i {
      margin-right: 4px;
      color: var(--primary);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      margin-top: 36px;
      padding-top: 18px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      color: #7A8396;
      font-size: 13px;
      gap: 8px;
    }

    /* Responsive */
    @media (max-width: 991.98px) {
      .brand-row {
        padding: 12px 0;
      }
      .section-padding {
        padding: 60px 0;
      }
      .section-padding-sm {
        padding: 40px 0;
      }
      .player-list-item {
        padding: 12px 14px;
        gap: 12px;
      }
      .player-avatar {
        width: 54px;
        height: 54px;
      }
      .player-name {
        font-size: 16px;
      }
      .player-stats {
        gap: 10px;
      }
    }

    @media (max-width: 767.98px) {
      .page-heading h1 {
        font-size: 26px;
      }
      .player-list-item {
        padding: 10px;
      }
      .player-avatar {
        width: 48px;
        height: 48px;
      }
      .player-info {
        min-width: 140px;
      }
      .player-stats {
        width: 100%;
        justify-content: flex-start;
        gap: 12px;
      }
      .filter-toolbar {
        padding: 14px;
      }
      .subscribe-cta {
        padding: 30px 18px;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 575.98px) {
      .mobile-nav-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .nav-item-icon {
        min-width: 56px;
        padding: 6px 8px;
      }
      .nav-item-icon i {
        font-size: 20px;
      }
      .page-heading h1 {
        font-size: 22px;
      }
      .section-title {
        font-size: 22px;
      }
      .player-list-item {
        flex-direction: column;
        align-items: flex-start;
      }
      .player-stats {
        width: 100%;
        justify-content: space-between;
      }
      .hot-player-img {
        height: 130px;
      }
    }

/* roulang page: category4 */
:root {
            --primary: #2E7DEA;
            --primary-hover: #2568C7;
            --primary-light: #EBF3FE;
            --primary-faint: #F0F5FE;
            --green: #3C9A5F;
            --green-light: #E8F5EC;
            --amber: #F5A623;
            --amber-light: #FFF4E0;
            --text-main: #1A2233;
            --text-secondary: #5A6577;
            --text-muted: #8A93A6;
            --border: #E4E9F2;
            --bg-gray: #F5F8FC;
            --white: #FFFFFF;
            --shadow-sm: 0 2px 8px rgba(26, 34, 51, 0.06);
            --shadow-md: 0 8px 24px rgba(26, 34, 51, 0.08);
            --shadow-lg: 0 12px 32px rgba(26, 34, 51, 0.12);
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-icon: 10px;
            --radius-price: 14px;
            --font-mono: 'Roboto Mono', 'SF Mono', 'Cascadia Mono', 'Consolas', 'Courier New', monospace;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Helvetica Neue', Arial, sans-serif;
            --transition: 0.2s ease;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            color: var(--text-main);
            background-color: var(--white);
            line-height: 1.75;
            font-size: 16px;
            font-weight: 400;
            margin: 0;
            padding: 0;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--primary-hover);
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible {
            outline: 3px solid rgba(46, 125, 234, 0.35);
            outline-offset: 2px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .section-padding {
            padding: 80px 0;
        }
        .section-padding-sm {
            padding: 60px 0;
        }
        .bg-gray-section {
            background-color: var(--bg-gray);
        }

        .section-label {
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            background-color: var(--primary-light);
            padding: 6px 14px;
            border-radius: 20px;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 14px;
            line-height: 1.4;
        }
        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.85;
            max-width: 720px;
        }
        .section-title-area {
            margin-bottom: 36px;
        }
        .section-title-area .section-title {
            margin-bottom: 8px;
        }

        /* Header / Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background-color: var(--white);
            box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(26, 34, 51, 0.04);
        }
        .brand-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            flex-wrap: wrap;
            gap: 12px;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-main);
            text-decoration: none;
        }
        .brand-logo:hover {
            color: var(--primary);
        }
        .brand-logo .logo-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--primary) 0%, #6DA8F5 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            flex-shrink: 0;
        }
        .brand-logo span.logo-text {
            font-size: 20px;
            letter-spacing: 0.3px;
        }
        .nav-icon-grid {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-item-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 8px 14px;
            border-radius: 10px;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 12px;
            font-weight: 500;
            transition: all var(--transition);
            min-width: 68px;
            text-align: center;
        }
        .nav-item-icon i {
            font-size: 22px;
            color: var(--text-secondary);
            transition: color var(--transition);
        }
        .nav-item-icon:hover {
            background-color: var(--primary-faint);
            color: var(--primary);
        }
        .nav-item-icon:hover i {
            color: var(--primary);
        }
        .nav-item-icon.active {
            background-color: var(--primary-light);
            color: var(--primary);
        }
        .nav-item-icon.active i {
            color: var(--primary);
        }
        .navbar-toggler {
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 8px 12px;
            color: var(--text-main);
            background-color: var(--white);
        }
        .navbar-toggler:focus {
            box-shadow: none;
            border-color: var(--primary);
        }
        .mobile-nav-collapse {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .mobile-nav-collapse.show {
            max-height: 520px;
        }
        .mobile-nav-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            padding: 12px 0 16px;
        }
        .mobile-nav-grid .nav-item-icon {
            min-width: auto;
            padding: 12px 8px;
            background-color: var(--bg-gray);
            border-radius: 10px;
        }

        /* Breadcrumbs */
        .breadcrumb-wrap {
            padding: 18px 0 0;
        }
        .breadcrumb {
            margin-bottom: 0;
            font-size: 14px;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb-item.active {
            color: var(--text-secondary);
            font-weight: 500;
        }
        .breadcrumb-item+.breadcrumb-item::before {
            content: "›";
            color: var(--text-muted);
            margin: 0 6px;
        }

        /* Page header area (分类说明) */
        .page-header-area {
            background: linear-gradient(135deg, #F0F5FE 0%, #E5EEFD 50%, #EDF4FE 100%);
            border-radius: 16px;
            padding: 36px 32px;
            margin: 16px 0 40px;
        }
        .page-header-area h1 {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 10px;
            line-height: 1.35;
        }
        .page-header-area .page-desc {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.85;
            max-width: 780px;
            margin-bottom: 0;
        }

        /* Filter buttons */
        .filter-bar {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }
        .filter-bar .filter-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-right: 4px;
            white-space: nowrap;
        }
        .btn-filter {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 18px;
            border-radius: 20px;
            border: 1px solid var(--border);
            background-color: var(--white);
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .btn-filter:hover {
            border-color: var(--primary);
            color: var(--primary);
            background-color: var(--primary-faint);
        }
        .btn-filter.active {
            background-color: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
        .btn-filter:focus-visible {
            outline: 3px solid rgba(46, 125, 234, 0.35);
            outline-offset: 2px;
        }

        /* Club list cards */
        .club-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .club-card {
            display: flex;
            align-items: stretch;
            background-color: var(--white);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }
        .club-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
            border-color: rgba(46, 125, 234, 0.25);
        }
        .club-card .club-img {
            width: 120px;
            min-height: 100%;
            flex-shrink: 0;
            overflow: hidden;
            position: relative;
            background-color: var(--bg-gray);
        }
        .club-card .club-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .club-card .club-body {
            flex: 1;
            padding: 18px 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .club-card .club-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-main);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .club-card .club-name .league-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 12px;
            background-color: var(--primary-light);
            color: var(--primary);
            letter-spacing: 0.3px;
        }
        .club-card .club-meta {
            display: flex;
            align-items: center;
            gap: 18px;
            font-size: 14px;
            color: var(--text-secondary);
            flex-wrap: wrap;
        }
        .club-card .club-meta i {
            color: var(--primary);
            margin-right: 4px;
            font-size: 14px;
        }
        .club-card .club-honors {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }
        .club-card .club-honors strong {
            color: var(--amber);
            font-weight: 600;
        }
        .club-card .club-link {
            align-self: flex-start;
            font-size: 14px;
            font-weight: 500;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: gap var(--transition);
        }
        .club-card .club-link:hover {
            gap: 8px;
            color: var(--primary-hover);
        }

        /* Popular clubs */
        .popular-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
        .popular-card {
            background-color: var(--white);
            border: 1px solid var(--border);
            border-radius: 14px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            text-align: center;
        }
        .popular-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: rgba(46, 125, 234, 0.2);
        }
        .popular-card .popular-img {
            height: 130px;
            overflow: hidden;
            background-color: var(--bg-gray);
        }
        .popular-card .popular-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .popular-card .popular-body {
            padding: 16px 14px 18px;
        }
        .popular-card .popular-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 4px;
        }
        .popular-card .popular-league {
            font-size: 12px;
            color: var(--text-muted);
            display: inline-block;
            padding: 2px 10px;
            border-radius: 10px;
            background-color: var(--bg-gray);
            margin-bottom: 8px;
        }
        .popular-card .popular-stat {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
        }
        .popular-card .popular-stat span {
            color: var(--amber);
            font-family: var(--font-mono);
            font-weight: 700;
            margin: 0 3px;
        }

        /* Honors showcase */
        .honors-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        .honor-card {
            background-color: var(--white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 22px 20px;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
        .honor-card:hover {
            box-shadow: var(--shadow-md);
            border-color: rgba(46, 125, 234, 0.2);
        }
        .honor-card .honor-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background-color: var(--amber-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--amber);
            font-size: 20px;
            flex-shrink: 0;
        }
        .honor-card .honor-info {
            flex: 1;
        }
        .honor-card .honor-club {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 4px;
        }
        .honor-card .honor-count {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 4px;
        }
        .honor-card .honor-count strong {
            color: var(--amber);
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 16px;
        }
        .honor-card .honor-trophies {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        /* Stats summary */
        .stats-summary {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
        .stat-box {
            background-color: var(--white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px 20px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }
        .stat-box:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .stat-box .stat-number {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            font-family: var(--font-mono);
            line-height: 1.2;
            margin-bottom: 6px;
        }
        .stat-box .stat-label {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
        }
        .stat-box .stat-unit {
            font-size: 14px;
            color: var(--primary);
            font-weight: 600;
            margin-left: 2px;
        }

        /* Pagination */
        .pagination-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-top: 28px;
        }
        .pagination-wrap .page-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 38px;
            height: 38px;
            padding: 0 10px;
            border-radius: 8px;
            border: 1px solid var(--border);
            background-color: var(--white);
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
        }
        .pagination-wrap .page-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            background-color: var(--primary-faint);
        }
        .pagination-wrap .page-btn.active {
            background-color: var(--primary);
            border-color: var(--primary);
            color: #fff;
            cursor: default;
        }
        .pagination-wrap .page-btn.disabled {
            opacity: 0.45;
            cursor: not-allowed;
            pointer-events: none;
        }
        .pagination-wrap .page-ellipsis {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 38px;
            height: 38px;
            color: var(--text-muted);
            font-size: 14px;
        }

        /* CTA section */
        .cta-section {
            background: linear-gradient(135deg, #1A2233 0%, #2C3E5E 50%, #1E2D42 100%);
            border-radius: 16px;
            padding: 48px 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }
        .cta-section .cta-text {
            flex: 1;
            min-width: 260px;
        }
        .cta-section .cta-title {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .cta-section .cta-desc {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.75;
            margin-bottom: 0;
            max-width: 520px;
        }
        .cta-section .cta-btn {
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 8px;
            background-color: var(--amber);
            border: none;
            color: #1A2233;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
            white-space: nowrap;
        }
        .cta-section .cta-btn:hover {
            background-color: #E09400;
            color: #1A2233;
            transform: scale(1.02);
            box-shadow: 0 8px 20px rgba(245, 166, 35, 0.35);
        }

        /* Footer */
        .site-footer {
            background-color: #1A2233;
            color: rgba(255, 255, 255, 0.75);
            padding: 60px 0 24px;
            margin-top: 80px;
        }
        .site-footer .footer-desc {
            font-size: 14px;
            line-height: 1.85;
            margin-top: 16px;
            max-width: 340px;
            color: rgba(255, 255, 255, 0.65);
        }
        .site-footer .footer-col-title {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 0.3px;
        }
        .site-footer .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .site-footer .footer-links a {
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            font-size: 14px;
            transition: color var(--transition);
        }
        .site-footer .footer-links a:hover {
            color: #fff;
        }
        .site-footer .footer-contact {
            font-size: 14px;
            line-height: 2;
            color: rgba(255, 255, 255, 0.65);
        }
        .site-footer .footer-contact i {
            color: var(--primary);
            margin-right: 6px;
        }
        .site-footer .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            margin-top: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.45);
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .popular-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .honors-list {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-summary {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 767.98px) {
            .section-padding {
                padding: 50px 0;
            }
            .section-padding-sm {
                padding: 40px 0;
            }
            .page-header-area {
                padding: 24px 18px;
                border-radius: 12px;
                margin: 12px 0 28px;
            }
            .page-header-area h1 {
                font-size: 26px;
            }
            .section-title {
                font-size: 22px;
            }
            .club-card {
                flex-direction: column;
            }
            .club-card .club-img {
                width: 100%;
                height: 160px;
                min-height: auto;
            }
            .club-card .club-body {
                padding: 16px 18px;
            }
            .popular-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .honors-list {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .stats-summary {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .stat-box .stat-number {
                font-size: 24px;
            }
            .cta-section {
                padding: 32px 22px;
                flex-direction: column;
                align-items: flex-start;
                gap: 18px;
            }
            .cta-section .cta-btn {
                width: 100%;
                justify-content: center;
            }
            .filter-bar {
                gap: 8px;
            }
            .btn-filter {
                padding: 6px 14px;
                font-size: 13px;
            }
            .mobile-nav-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 6px;
            }
            .mobile-nav-grid .nav-item-icon {
                font-size: 11px;
                padding: 10px 6px;
            }
            .mobile-nav-grid .nav-item-icon i {
                font-size: 20px;
            }
        }
        @media (max-width: 575.98px) {
            .popular-grid {
                grid-template-columns: 1fr;
            }
            .stats-summary {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-box {
                padding: 18px 14px;
            }
            .stat-box .stat-number {
                font-size: 22px;
            }
            .pagination-wrap .page-btn {
                min-width: 34px;
                height: 34px;
                font-size: 13px;
                padding: 0 8px;
            }
            .club-card .club-name {
                font-size: 16px;
            }
            .club-card .club-meta {
                gap: 10px;
                font-size: 13px;
            }
            .site-footer {
                padding: 40px 0 20px;
                margin-top: 50px;
            }
            .site-footer .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 6px;
            }
        }

/* roulang page: category6 */
:root {
            --primary: #2E7DEA;
            --primary-hover: #2568C7;
            --primary-light: #EBF3FE;
            --primary-faint: #F0F5FE;
            --green: #3C9A5F;
            --green-light: #E8F5EC;
            --amber: #F5A623;
            --amber-light: #FFF4E0;
            --text-main: #1A2233;
            --text-secondary: #5A6577;
            --text-muted: #8A93A6;
            --border: #E4E9F2;
            --bg-gray: #F5F8FC;
            --white: #FFFFFF;
            --shadow-sm: 0 2px 8px rgba(26, 34, 51, 0.06);
            --shadow-md: 0 8px 24px rgba(26, 34, 51, 0.08);
            --shadow-lg: 0 12px 32px rgba(26, 34, 51, 0.12);
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-icon: 10px;
            --radius-price: 14px;
            --font-mono: 'Roboto Mono', 'SF Mono', 'Cascadia Mono', 'Consolas', 'Courier New', monospace;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Helvetica Neue', Arial, sans-serif;
            --transition: 0.2s ease;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            color: var(--text-main);
            background-color: var(--white);
            line-height: 1.75;
            font-size: 16px;
            font-weight: 400;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--primary-hover);
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible {
            outline: 3px solid rgba(46, 125, 234, 0.35);
            outline-offset: 2px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-padding-sm {
            padding: 60px 0;
        }

        .section-padding-xs {
            padding: 40px 0;
        }

        .bg-gray-section {
            background-color: var(--bg-gray);
        }

        .section-label {
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            background-color: var(--primary-light);
            padding: 6px 14px;
            border-radius: 20px;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 14px;
            line-height: 1.4;
        }

        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.85;
            max-width: 720px;
        }

        .section-title-area {
            margin-bottom: 36px;
        }

        .section-title-area .section-title {
            margin-bottom: 8px;
        }

        /* Header / Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background-color: var(--white);
            box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(26, 34, 51, 0.04);
        }

        .brand-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            flex-wrap: wrap;
            gap: 12px;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-main);
            text-decoration: none;
        }

        .brand-logo:hover {
            color: var(--primary);
        }

        .brand-logo .logo-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--primary) 0%, #6DA8F5 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            flex-shrink: 0;
        }

        .brand-logo span.logo-text {
            font-size: 20px;
            letter-spacing: 0.3px;
        }

        .nav-icon-grid {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }

        .nav-item-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 8px 14px;
            border-radius: 10px;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 12px;
            font-weight: 500;
            transition: all var(--transition);
            min-width: 68px;
            text-align: center;
        }

        .nav-item-icon i {
            font-size: 22px;
            color: var(--text-secondary);
            transition: color var(--transition);
        }

        .nav-item-icon:hover {
            background-color: var(--primary-faint);
            color: var(--primary);
        }

        .nav-item-icon:hover i {
            color: var(--primary);
        }

        .nav-item-icon.active {
            background-color: var(--primary-light);
            color: var(--primary);
        }

        .nav-item-icon.active i {
            color: var(--primary);
        }

        .navbar-toggler {
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 8px 12px;
            color: var(--text-main);
            background-color: var(--white);
        }

        .navbar-toggler:focus {
            box-shadow: none;
            border-color: var(--primary);
        }

        .mobile-nav-collapse {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .mobile-nav-collapse.show {
            max-height: 420px;
        }

        .mobile-nav-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            padding: 10px 0 16px;
        }

        .mobile-nav-grid .nav-item-icon {
            min-width: auto;
            padding: 10px 6px;
        }

        .mobile-nav-grid .nav-item-icon i {
            font-size: 18px;
        }

        .mobile-nav-grid .nav-item-icon span {
            font-size: 11px;
        }

        /* Breadcrumb */
        .breadcrumb-section {
            background-color: var(--primary-faint);
            padding: 28px 0;
            border-bottom: 1px solid var(--border);
            margin-bottom: 40px;
        }

        .breadcrumb-section h1 {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 8px;
            line-height: 1.35;
        }

        .breadcrumb-section .breadcrumb {
            margin-bottom: 0;
            font-size: 14px;
        }

        .breadcrumb-section .breadcrumb-item a {
            color: var(--primary);
            font-weight: 500;
        }

        .breadcrumb-section .breadcrumb-item.active {
            color: var(--text-secondary);
        }

        .breadcrumb-section .category-intro {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 720px;
            margin-top: 10px;
            line-height: 1.8;
        }

        /* Stats Cards */
        .stat-card {
            background: var(--white);
            border-radius: var(--radius-card);
            padding: 20px 16px;
            box-shadow: var(--shadow-sm);
            text-align: center;
            border: 1px solid var(--border);
            transition: all var(--transition);
            height: 100%;
        }

        .stat-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }

        .stat-card .stat-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            color: var(--primary);
            font-size: 18px;
        }

        .stat-card .stat-number {
            font-family: var(--font-mono);
            font-size: 26px;
            font-weight: 700;
            color: var(--text-main);
            line-height: 1.3;
        }

        .stat-card .stat-label {
            font-size: 13px;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        /* Post Cards */
        .filter-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 20px;
            padding: 16px 20px;
            background: var(--white);
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
        }

        .filter-bar .filter-title {
            font-weight: 600;
            font-size: 15px;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .filter-bar .filter-options {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 6px 16px;
            border-radius: 20px;
            border: 1px solid var(--border);
            background: var(--white);
            color: var(--text-secondary);
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition);
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary-light);
            border-color: var(--primary);
            color: var(--primary);
        }

        .post-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .post-card {
            display: flex;
            gap: 20px;
            background: var(--white);
            border-radius: var(--radius-card);
            padding: 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            transition: all var(--transition);
            flex-wrap: wrap;
        }

        .post-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            border-color: #d0dcef;
        }

        .post-card .post-thumb {
            width: 160px;
            height: 110px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
            background-color: var(--bg-gray);
        }

        .post-card .post-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .post-card .post-body {
            flex: 1;
            min-width: 0;
        }

        .post-card .post-tags {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            margin-bottom: 6px;
        }

        .post-card .post-tag {
            display: inline-block;
            padding: 2px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
            background: var(--primary-light);
            color: var(--primary);
        }

        .post-card .post-tag.hot {
            background: var(--amber-light);
            color: var(--amber);
        }

        .post-card .post-tag.pinned {
            background: var(--green-light);
            color: var(--green);
        }

        .post-card .post-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 6px;
            line-height: 1.45;
            transition: color var(--transition);
        }

        .post-card .post-title:hover {
            color: var(--primary);
        }

        .post-card .post-excerpt {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .post-card .post-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            color: var(--text-muted);
            flex-wrap: wrap;
        }

        .post-card .post-meta span {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .post-card .post-meta i {
            font-size: 14px;
            color: var(--text-muted);
        }

        .post-card .post-meta .meta-highlight {
            color: var(--primary);
            font-weight: 600;
        }

        .post-card .post-meta .meta-green {
            color: var(--green);
            font-weight: 600;
        }

        /* Featured Posts */
        .featured-wrapper {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .featured-card {
            background: var(--white);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            transition: all var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .featured-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }

        .featured-card .featured-img {
            height: 160px;
            overflow: hidden;
            background-color: var(--bg-gray);
            position: relative;
        }

        .featured-card .featured-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .featured-card .featured-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--amber);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 4px;
            letter-spacing: 0.5px;
        }

        .featured-card .featured-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .featured-card .featured-title {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-main);
            line-height: 1.5;
            margin-bottom: 8px;
            transition: color var(--transition);
        }

        .featured-card .featured-title:hover {
            color: var(--primary);
        }

        .featured-card .featured-excerpt {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 12px;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .featured-card .featured-meta {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            gap: 14px;
            align-items: center;
        }

        /* Tag Cloud */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag-cloud .tag-link {
            display: inline-block;
            padding: 8px 18px;
            border-radius: 20px;
            background: var(--white);
            border: 1px solid var(--border);
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            transition: all var(--transition);
        }

        .tag-cloud .tag-link:hover {
            background: var(--primary-light);
            border-color: var(--primary);
            color: var(--primary);
        }

        /* Poll Card */
        .poll-card {
            background: var(--white);
            border-radius: var(--radius-card);
            padding: 28px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
        }

        .poll-card .poll-question {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .poll-card .poll-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 20px;
        }

        .poll-card .poll-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid var(--border);
            cursor: pointer;
            transition: all var(--transition);
            font-size: 15px;
            color: var(--text-main);
        }

        .poll-card .poll-option:hover {
            border-color: var(--primary);
            background: var(--primary-faint);
        }

        .poll-card .poll-option input[type="radio"] {
            accent-color: var(--primary);
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            cursor: pointer;
        }

        .poll-card .poll-option .option-text {
            flex: 1;
        }

        .poll-card .poll-option .option-votes {
            font-family: var(--font-mono);
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .poll-card .poll-submit {
            background: var(--primary);
            border: none;
            color: #fff;
            font-weight: 600;
            padding: 10px 28px;
            border-radius: var(--radius-btn);
            transition: all var(--transition);
            font-size: 15px;
        }

        .poll-card .poll-submit:hover {
            background: var(--primary-hover);
            transform: translateY(-1px);
        }

        .poll-card .poll-note {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 12px;
        }

        /* Pagination */
        .pagination-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 6px;
            margin-top: 32px;
            flex-wrap: wrap;
        }

        .pagination-wrapper .page-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 14px;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: var(--white);
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            transition: all var(--transition);
            text-decoration: none;
        }

        .pagination-wrapper .page-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-faint);
        }

        .pagination-wrapper .page-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }

        .pagination-wrapper .page-btn.page-prev,
        .pagination-wrapper .page-btn.page-next {
            padding: 0 16px;
        }

        .pagination-wrapper .page-info {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0 12px;
        }

        /* CTA Section */
        .community-cta {
            background: linear-gradient(135deg, var(--primary-faint) 0%, #E8F0FC 55%, #F5F8FC 100%);
            border-radius: var(--radius-card);
            padding: 48px 36px;
            text-align: center;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        .community-cta .cta-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: #fff;
            font-size: 30px;
        }

        .community-cta h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .community-cta p {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 560px;
            margin: 0 auto 24px;
            line-height: 1.8;
        }

        .community-cta .cta-btn {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            padding: 12px 32px;
            border-radius: var(--radius-btn);
            font-size: 16px;
            transition: all var(--transition);
            border: none;
        }

        .community-cta .cta-btn:hover {
            background: var(--primary-hover);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(46, 125, 234, 0.3);
        }

        /* Footer */
        .site-footer {
            background-color: #1A2233;
            color: rgba(255, 255, 255, 0.75);
            padding: 60px 0 0;
            font-size: 14px;
            line-height: 1.8;
        }

        .site-footer .footer-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin: 16px 0 0;
            max-width: 360px;
            line-height: 1.8;
        }

        .site-footer .footer-col-title {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 16px;
        }

        .site-footer .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .site-footer .footer-links li {
            margin-bottom: 10px;
        }

        .site-footer .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color var(--transition);
        }

        .site-footer .footer-links a:hover {
            color: var(--primary);
        }

        .site-footer .footer-contact {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 2.2;
        }

        .site-footer .footer-contact i {
            color: var(--primary);
            margin-right: 6px;
        }

        .site-footer .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
            margin-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }

        @media (max-width: 991px) {
            .section-padding {
                padding: 60px 0;
            }
            .section-padding-sm {
                padding: 48px 0;
            }
            .breadcrumb-section {
                padding: 22px 0;
                margin-bottom: 28px;
            }
            .breadcrumb-section h1 {
                font-size: 26px;
            }
            .featured-wrapper {
                grid-template-columns: 1fr;
            }
            .post-card .post-thumb {
                width: 130px;
                height: 90px;
            }
        }

        @media (max-width: 767px) {
            .post-card {
                padding: 16px;
                gap: 14px;
            }
            .post-card .post-thumb {
                width: 100%;
                height: 160px;
                order: -1;
            }
            .post-card .post-title {
                font-size: 16px;
            }
            .community-cta {
                padding: 32px 20px;
            }
            .poll-card {
                padding: 20px;
            }
            .poll-card .poll-question {
                font-size: 17px;
            }
            .filter-bar {
                padding: 12px 14px;
            }
            .mobile-nav-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 575px) {
            .mobile-nav-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .breadcrumb-section h1 {
                font-size: 22px;
            }
            .section-title {
                font-size: 22px;
            }
            .post-card .post-meta {
                gap: 10px;
                font-size: 12px;
            }
            .featured-card .featured-meta {
                flex-wrap: wrap;
                gap: 8px;
            }
        }

/* 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}
