/* roulang page: index */
:root {
            --primary: #8E1F2F;
            --primary-dark: #6E1724;
            --primary-light: rgba(142, 31, 47, 0.12);
            --dark: #1C1C1E;
            --dark-section: #222428;
            --accent: #C9A96E;
            --accent-light: #E8E0CF;
            --bg: #F8F6F2;
            --bg-alt: #F0EDE7;
            --text-primary: #1A1A1A;
            --text-secondary: #6B6B6B;
            --border: #DEDAD2;
            --success: #2E7D32;
            --warning: #B85C00;
            --radius: 12px;
            --radius-sm: 8px;
            --radius-lg: 20px;
            --shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.10);
            --font-cn: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Source Han Sans SC", sans-serif;
            --font-num: "Inter", "DIN Alternate", "Bahnschrift", "Roboto Mono", sans-serif;
            --section-pad: 72px;
            --transition: all 0.25s ease;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-cn);
            background-color: var(--bg);
            color: var(--text-primary);
            line-height: 1.8;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--primary-dark);
            text-decoration: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        textarea {
            font-family: var(--font-cn);
        }

        .container {
            max-width: 1140px;
        }

        .section-pad {
            padding: var(--section-pad) 0;
        }

        .section-pad-sm {
            padding: 48px 0;
        }

        .bg-alt {
            background-color: var(--bg-alt);
        }

        .bg-dark-section {
            background-color: var(--dark-section);
            color: #fff;
        }

        .section-label {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--primary);
            background: var(--primary-light);
            padding: 6px 16px;
            border-radius: 20px;
            margin-bottom: 12px;
        }

        .section-label-light {
            color: var(--accent);
            background: rgba(201, 169, 110, 0.18);
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 14px;
            color: var(--text-primary);
        }

        .section-title-light {
            color: #fff;
        }

        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.85;
            max-width: 680px;
            margin-bottom: 32px;
        }

        .section-desc-light {
            color: rgba(255, 255, 255, 0.75);
        }

        /* Navigation - Floating Capsule */
        .navbar-capsule-wrapper {
            position: fixed;
            top: 16px;
            left: 0;
            right: 0;
            z-index: 1030;
            padding: 0 16px;
            pointer-events: none;
        }

        .navbar-capsule {
            max-width: 980px;
            margin: 0 auto;
            background: rgba(28, 28, 30, 0.88);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 50px;
            padding: 6px 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid rgba(201, 169, 110, 0.28);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
            pointer-events: auto;
            transition: var(--transition);
        }

        .navbar-capsule .navbar-brand {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            padding: 4px 8px;
            white-space: nowrap;
        }

        .navbar-capsule .navbar-brand span {
            color: var(--accent);
        }

        .navbar-capsule .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }

        .navbar-capsule .nav-link-custom {
            color: rgba(255, 255, 255, 0.78);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 30px;
            letter-spacing: 0.3px;
            transition: var(--transition);
            white-space: nowrap;
        }

        .navbar-capsule .nav-link-custom:hover {
            background: rgba(201, 169, 110, 0.22);
            color: #fff;
        }

        .navbar-capsule .nav-link-custom.active {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
        }

        .navbar-toggle-btn {
            display: none;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            border-radius: 30px;
            padding: 6px 14px;
            font-size: 18px;
            pointer-events: auto;
            transition: var(--transition);
        }

        .navbar-toggle-btn:hover {
            background: rgba(201, 169, 110, 0.2);
            border-color: var(--accent);
        }

        .mobile-nav-collapse {
            display: none;
            background: rgba(28, 28, 30, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 20px;
            padding: 16px;
            margin-top: 8px;
            border: 1px solid rgba(201, 169, 110, 0.25);
            pointer-events: auto;
        }

        .mobile-nav-collapse.show {
            display: block;
        }

        .mobile-nav-collapse .nav-link-custom {
            display: block;
            padding: 10px 16px;
            border-radius: 12px;
        }

        /* Hero */
        .hero-compare {
            position: relative;
            background-image: url('/assets/images/3d1569eb5fff61d1.webp');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 140px 0 70px;
            color: #fff;
        }

        .hero-compare::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.40) 55%, rgba(28, 28, 30, 0.72) 100%);
            z-index: 1;
        }

        .hero-compare .container {
            position: relative;
            z-index: 2;
        }

        .hero-badge-row {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .hero-badge {
            background: rgba(201, 169, 110, 0.25);
            border: 1px solid rgba(201, 169, 110, 0.45);
            color: var(--accent);
            font-size: 13px;
            font-weight: 500;
            padding: 5px 14px;
            border-radius: 20px;
            letter-spacing: 0.5px;
        }

        .hero-title {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .hero-subtitle {
            font-size: 18px;
            line-height: 1.85;
            color: rgba(255, 255, 255, 0.82);
            max-width: 620px;
            margin-bottom: 30px;
        }

        .hero-cta-row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .btn-hero-primary {
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: var(--radius-sm);
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 0.3px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-hero-primary:hover {
            background: var(--primary-dark);
            color: #fff;
            box-shadow: 0 6px 18px rgba(142, 31, 47, 0.35);
        }

        .btn-hero-secondary {
            background: transparent;
            color: #fff;
            border: 1px solid var(--accent);
            border-radius: var(--radius-sm);
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 500;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-hero-secondary:hover {
            background: var(--accent);
            color: var(--text-primary);
            border-color: var(--accent);
        }

        .compare-panel {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 20px;
            align-items: stretch;
            background: rgba(28, 28, 30, 0.55);
            border-radius: var(--radius-lg);
            padding: 24px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            margin-bottom: 36px;
        }

        .compare-card {
            background: rgba(255, 255, 255, 0.06);
            border-radius: var(--radius);
            padding: 22px;
            border: 1px solid rgba(255, 255, 255, 0.14);
        }

        .compare-card.before {
            background: rgba(0, 0, 0, 0.35);
            border-color: rgba(255, 255, 255, 0.10);
        }

        .compare-card.after {
            background: rgba(201, 169, 110, 0.16);
            border-color: rgba(201, 169, 110, 0.45);
        }

        .compare-card .compare-title {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }

        .compare-card.before .compare-title {
            color: rgba(255, 255, 255, 0.55);
        }

        .compare-card.after .compare-title {
            color: var(--accent);
        }

        .compare-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .compare-list li {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            padding: 6px 0 6px 22px;
            position: relative;
            line-height: 1.6;
        }

        .compare-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 12px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
        }

        .compare-card.after .compare-list li {
            color: rgba(255, 255, 255, 0.9);
        }

        .compare-card.after .compare-list li::before {
            background: var(--accent);
        }

        .compare-vs {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: var(--accent);
            background: rgba(201, 169, 110, 0.2);
            border-radius: 50%;
            width: 48px;
            height: 48px;
            align-self: center;
            border: 1px solid rgba(201, 169, 110, 0.5);
            flex-shrink: 0;
        }

        .hero-stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .hero-stat-badge {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            padding: 16px 18px;
            text-align: center;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }

        .hero-stat-badge .stat-number {
            font-family: var(--font-num);
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            display: block;
        }

        .hero-stat-badge .stat-number span {
            color: var(--accent);
        }

        .hero-stat-badge .stat-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.65);
            margin-top: 4px;
        }

        /* KPI Board */
        .kpi-board {
            background: var(--dark-section);
            color: #fff;
            padding: 48px 0;
            border-top: 3px solid var(--accent);
        }

        .kpi-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .kpi-item {
            text-align: center;
            padding: 12px 8px;
        }

        .kpi-number {
            font-family: var(--font-num);
            font-size: 42px;
            font-weight: 700;
            line-height: 1.15;
            color: var(--accent);
        }

        .kpi-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.72);
            margin-top: 8px;
            letter-spacing: 0.5px;
        }

        /* Cards General */
        .card-custom {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }

        .card-custom:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        .card-custom .card-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 16px;
        }

        .card-custom .card-title {
            font-size: 19px;
            font-weight: 650;
            margin-bottom: 10px;
            color: var(--text-primary);
            line-height: 1.3;
        }

        .card-custom .card-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.75;
            margin-bottom: 14px;
        }

        .card-custom .card-link {
            font-size: 14px;
            font-weight: 500;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
        }

        .card-custom .card-link:hover {
            gap: 10px;
            color: var(--primary-dark);
        }

        /* Service Matrix */
        .service-matrix {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        /* Steps */
        .steps-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .step-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 26px 22px;
            box-shadow: var(--shadow);
            position: relative;
            transition: var(--transition);
        }

        .step-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
        }

        .step-number {
            font-family: var(--font-num);
            font-size: 36px;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 14px;
            display: block;
        }

        .step-card .step-title {
            font-size: 18px;
            font-weight: 650;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        .step-card .step-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.75;
        }

        /* Result Compare Section */
        .result-compare {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            align-items: stretch;
        }

        .result-compare-card {
            border-radius: var(--radius);
            padding: 28px;
            border: 2px solid;
            transition: var(--transition);
        }

        .result-compare-card.before-card {
            background: #F5F3EF;
            border-color: #D0CCC2;
        }

        .result-compare-card.after-card {
            background: #fff;
            border-color: var(--accent);
            box-shadow: 0 4px 20px rgba(201, 169, 110, 0.2);
        }

        .result-compare-card .compare-head {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
        }

        .result-compare-card .compare-head .badge-compare {
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }

        .before-card .badge-compare {
            background: #E0DCD4;
            color: #6B6B6B;
        }

        .after-card .badge-compare {
            background: var(--accent);
            color: var(--text-primary);
        }

        .result-compare-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .result-compare-card ul li {
            font-size: 15px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: flex-start;
            gap: 10px;
            line-height: 1.7;
        }

        .result-compare-card ul li:last-child {
            border-bottom: none;
        }

        .result-compare-card ul li i {
            margin-top: 5px;
            flex-shrink: 0;
        }

        .before-card ul li i {
            color: #999;
        }

        .after-card ul li i {
            color: var(--success);
        }

        /* Event Cards */
        .event-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .event-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .event-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .event-card .event-img {
            height: 160px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .event-card .event-img .event-date-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--primary);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 16px;
        }

        .event-card .event-body {
            padding: 16px 18px;
        }

        .event-card .event-title {
            font-size: 16px;
            font-weight: 650;
            margin-bottom: 8px;
            line-height: 1.4;
            color: var(--text-primary);
        }

        .event-card .event-meta {
            font-size: 13px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .event-card .event-tag {
            background: var(--bg-alt);
            color: var(--text-secondary);
            font-size: 12px;
            padding: 3px 10px;
            border-radius: 14px;
            font-weight: 500;
        }

        /* Timeline / Milestone */
        .timeline {
            position: relative;
            padding-left: 30px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 4px;
            bottom: 4px;
            width: 3px;
            background: linear-gradient(180deg, var(--accent), var(--primary));
            border-radius: 2px;
        }

        .timeline-item {
            position: relative;
            padding-bottom: 32px;
        }

        .timeline-item:last-child {
            padding-bottom: 0;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -27px;
            top: 6px;
            width: 13px;
            height: 13px;
            border-radius: 50%;
            background: #fff;
            border: 3px solid var(--accent);
        }

        .timeline-item .tl-year {
            font-family: var(--font-num);
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px;
        }

        .timeline-item .tl-content {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.75;
        }

        /* News List */
        .news-list-item {
            display: flex;
            gap: 20px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 18px 20px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            margin-bottom: 14px;
        }

        .news-list-item:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
        }

        .news-list-item .news-thumb {
            width: 120px;
            height: 90px;
            border-radius: var(--radius-sm);
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
        }

        .news-list-item .news-body {
            flex: 1;
        }

        .news-list-item .news-title {
            font-size: 17px;
            font-weight: 650;
            color: var(--text-primary);
            margin-bottom: 4px;
            line-height: 1.4;
            transition: var(--transition);
        }

        .news-list-item:hover .news-title {
            color: var(--primary);
        }

        .news-list-item .news-date {
            font-size: 13px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 6px;
        }

        .news-list-item .news-excerpt {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0;
        }

        /* Topic Cards */
        .topic-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .topic-card {
            border-radius: var(--radius);
            overflow: hidden;
            background: #fff;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .topic-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .topic-card .topic-img {
            height: 180px;
            background-size: cover;
            background-position: center;
        }

        .topic-card .topic-body {
            padding: 20px 22px;
        }

        .topic-card .topic-title {
            font-size: 18px;
            font-weight: 650;
            margin-bottom: 8px;
            color: var(--text-primary);
            line-height: 1.4;
        }

        .topic-card .topic-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Brand Intro */
        .brand-intro-box {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 36px 40px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 32px;
            align-items: center;
        }

        .brand-intro-box .brand-text {
            font-size: 15px;
            line-height: 1.95;
            color: var(--text-secondary);
        }

        .brand-intro-box .brand-img-placeholder {
            height: 220px;
            border-radius: var(--radius);
            background-size: cover;
            background-position: center;
            border: 1px solid var(--border);
        }

        /* Partner */
        .partner-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 14px;
        }

        .partner-item {
            background: #F5F3EF;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 20px 12px;
            text-align: center;
            font-size: 13px;
            color: #999;
            font-weight: 500;
            transition: var(--transition);
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .partner-item:hover {
            background: var(--accent-light);
            border-color: var(--accent);
            color: var(--text-primary);
        }

        /* Security / Guarantee */
        .security-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .security-item {
            text-align: center;
            padding: 24px 18px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: var(--transition);
        }

        .security-item:hover {
            background: rgba(201, 169, 110, 0.1);
            border-color: rgba(201, 169, 110, 0.4);
        }

        .security-item .sec-icon {
            font-size: 28px;
            color: var(--accent);
            margin-bottom: 14px;
        }

        .security-item .sec-title {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
        }

        .security-item .sec-text {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }

        /* FAQ */
        .faq-container {
            max-width: 780px;
            margin: 0 auto;
        }

        .faq-item {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: var(--accent);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 18px 22px;
            background: none;
            border: none;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            cursor: pointer;
            text-align: left;
            transition: var(--transition);
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-question .faq-num {
            font-family: var(--font-num);
            font-size: 14px;
            color: var(--primary);
            font-weight: 700;
            flex-shrink: 0;
        }

        .faq-question .faq-icon {
            color: var(--text-secondary);
            font-size: 14px;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .faq-question[aria-expanded="true"] .faq-icon {
            transform: rotate(180deg);
            color: var(--primary);
        }

        .faq-answer {
            padding: 0 22px 18px 50px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.85;
        }

        /* Community Entry */
        .community-entry-card {
            background: var(--dark);
            border-radius: var(--radius-lg);
            padding: 40px 36px;
            color: #fff;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 28px;
            align-items: center;
            border: 1px solid rgba(201, 169, 110, 0.3);
        }

        .community-entry-card .community-title {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .community-entry-card .community-text {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.8;
        }

        .btn-community {
            background: var(--accent);
            color: var(--text-primary);
            border: none;
            border-radius: var(--radius-sm);
            padding: 13px 30px;
            font-size: 15px;
            font-weight: 600;
            transition: var(--transition);
            white-space: nowrap;
        }

        .btn-community:hover {
            background: #b8985a;
            color: var(--text-primary);
            box-shadow: 0 6px 18px rgba(201, 169, 110, 0.35);
        }

        /* Form */
        .contact-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .contact-info .ci-item {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            margin-bottom: 18px;
        }

        .contact-info .ci-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }

        .contact-info .ci-label {
            font-size: 13px;
            color: var(--text-secondary);
        }

        .contact-info .ci-value {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-primary);
        }

        .form-custom .form-control {
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 11px 16px;
            font-size: 15px;
            transition: var(--transition);
            background: #fff;
            color: var(--text-primary);
        }

        .form-custom .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(142, 31, 47, 0.15);
        }

        .form-custom textarea.form-control {
            resize: vertical;
            min-height: 110px;
        }

        .form-custom .form-label {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .btn-form-submit {
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: var(--radius-sm);
            padding: 12px 30px;
            font-size: 15px;
            font-weight: 600;
            transition: var(--transition);
        }

        .btn-form-submit:hover {
            background: var(--primary-dark);
            box-shadow: 0 6px 18px rgba(142, 31, 47, 0.3);
        }

        .form-privacy-hint {
            font-size: 12px;
            color: #999;
            margin-top: 10px;
        }

        /* Bottom Guarantee Bar */
        .bottom-guarantee-bar {
            background: var(--primary);
            color: #fff;
            padding: 28px 0;
            border-top: 3px solid var(--accent);
        }

        .guarantee-items {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            text-align: center;
        }

        .guarantee-items .gi-item {
            font-size: 14px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            letter-spacing: 0.5px;
        }

        .guarantee-items .gi-item i {
            color: var(--accent);
            font-size: 16px;
        }

        /* Footer */
        .site-footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.78);
            padding: 56px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 36px;
            padding-bottom: 36px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand .footer-logo {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
        }

        .footer-brand .footer-logo span {
            color: var(--accent);
        }

        .footer-brand .footer-desc {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-col .footer-col-title {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 0.4px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--accent);
        }

        .footer-col .contact-line {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-col .contact-line i {
            color: var(--accent);
            width: 16px;
        }

        .footer-bottom {
            padding: 20px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-bottom .footer-links {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .footer-bottom .footer-links a {
            color: rgba(255, 255, 255, 0.5);
            font-size: 13px;
            transition: var(--transition);
        }

        .footer-bottom .footer-links a:hover {
            color: var(--accent);
        }

        /* Breadcrumb */
        .breadcrumb-custom {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 10px;
        }

        .breadcrumb-custom a {
            color: var(--text-secondary);
        }

        .breadcrumb-custom a:hover {
            color: var(--primary);
        }

        /* Pagination */
        .pagination-custom {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin-top: 28px;
        }

        .pagination-custom .page-btn {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            background: #fff;
            color: var(--text-primary);
            font-size: 14px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            cursor: pointer;
        }

        .pagination-custom .page-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .pagination-custom .page-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }

        /* Utility */
        .text-accent {
            color: var(--accent) !important;
        }

        .text-primary-brand {
            color: var(--primary) !important;
        }

        .fw-650 {
            font-weight: 650;
        }

        .num-font {
            font-family: var(--font-num);
        }

        .section-divider {
            height: 1px;
            background: var(--border);
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 992px) {
            :root {
                --section-pad: 56px;
            }

            .hero-title {
                font-size: 38px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .compare-panel {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .compare-vs {
                width: 36px;
                height: 36px;
                font-size: 12px;
                align-self: center;
                margin: 0 auto;
            }

            .hero-stats-row {
                grid-template-columns: repeat(2, 1fr);
            }

            .kpi-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .service-matrix {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .event-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .result-compare {
                grid-template-columns: 1fr;
            }

            .topic-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .brand-intro-box {
                grid-template-columns: 1fr;
            }

            .partner-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .security-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-section {
                grid-template-columns: 1fr;
            }

            .community-entry-card {
                grid-template-columns: 1fr;
            }

            .guarantee-items {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-pad: 44px;
            }

            .navbar-capsule .nav-links {
                display: none;
            }

            .navbar-toggle-btn {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                font-size: 14px;
            }

            .hero-compare {
                min-height: auto;
                padding: 120px 0 50px;
            }

            .hero-title {
                font-size: 32px;
            }

            .hero-subtitle {
                font-size: 15px;
            }

            .section-title {
                font-size: 26px;
            }

            .event-grid {
                grid-template-columns: 1fr;
            }

            .topic-grid {
                grid-template-columns: 1fr;
            }

            .service-matrix {
                grid-template-columns: 1fr;
            }

            .steps-container {
                grid-template-columns: 1fr;
            }

            .news-list-item {
                flex-direction: column;
                gap: 12px;
            }

            .news-list-item .news-thumb {
                width: 100%;
                height: 160px;
            }

            .partner-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .security-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }

            .brand-intro-box {
                padding: 24px 20px;
            }

            .brand-intro-box .brand-img-placeholder {
                height: 160px;
            }
        }

        @media (max-width: 520px) {
            .hero-title {
                font-size: 26px;
            }

            .hero-stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .hero-stat-badge .stat-number {
                font-size: 22px;
            }

            .kpi-number {
                font-size: 32px;
            }

            .compare-card {
                padding: 16px;
            }

            .compare-list li {
                font-size: 13px;
            }

            .btn-hero-primary,
            .btn-hero-secondary {
                padding: 10px 20px;
                font-size: 14px;
                width: 100%;
                justify-content: center;
            }

            .hero-cta-row {
                flex-direction: column;
            }

            .guarantee-items {
                grid-template-columns: 1fr;
            }
        }

/* roulang page: category2 */
:root {
            --primary: #8E1F2F;
            --primary-dark: #6E1724;
            --primary-light: rgba(142, 31, 47, 0.12);
            --dark: #1C1C1E;
            --dark-section: #222428;
            --accent: #C9A96E;
            --accent-light: #E8E0CF;
            --bg: #F8F6F2;
            --bg-alt: #F0EDE7;
            --text-primary: #1A1A1A;
            --text-secondary: #6B6B6B;
            --border: #DEDAD2;
            --success: #2E7D32;
            --warning: #B85C00;
            --radius: 12px;
            --radius-sm: 8px;
            --radius-lg: 20px;
            --shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.10);
            --font-cn: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Source Han Sans SC", sans-serif;
            --font-num: "Inter", "DIN Alternate", "Bahnschrift", "Roboto Mono", sans-serif;
            --section-pad: 72px;
            --transition: all 0.25s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-cn);
            background-color: var(--bg);
            color: var(--text-primary);
            line-height: 1.8;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-dark);
            text-decoration: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input,
        textarea {
            font-family: var(--font-cn);
        }
        .container {
            max-width: 1140px;
        }
        .section-pad {
            padding: var(--section-pad) 0;
        }
        .section-pad-sm {
            padding: 48px 0;
        }
        .bg-dark-section {
            background-color: var(--dark-section);
            color: #fff;
        }
        .section-label {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--primary);
            background: var(--primary-light);
            padding: 6px 16px;
            border-radius: 20px;
            margin-bottom: 12px;
        }
        .section-label-light {
            color: var(--accent);
            background: rgba(201, 169, 110, 0.18);
        }
        .section-title {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 14px;
            color: var(--text-primary);
        }
        .section-title-light {
            color: #fff;
        }
        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.85;
            max-width: 680px;
            margin-bottom: 32px;
        }
        .section-desc-light {
            color: rgba(255, 255, 255, 0.75);
        }

        /* Navigation - Floating Capsule */
        .navbar-capsule-wrapper {
            position: fixed;
            top: 16px;
            left: 0;
            right: 0;
            z-index: 1030;
            padding: 0 16px;
            pointer-events: none;
        }
        .navbar-capsule {
            max-width: 980px;
            margin: 0 auto;
            background: rgba(28, 28, 30, 0.88);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 50px;
            padding: 6px 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid rgba(201, 169, 110, 0.28);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
            pointer-events: auto;
            transition: var(--transition);
        }
        .navbar-capsule .navbar-brand {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            padding: 4px 8px;
            white-space: nowrap;
        }
        .navbar-capsule .navbar-brand span {
            color: var(--accent);
        }
        .navbar-capsule .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }
        .navbar-capsule .nav-link-custom {
            color: rgba(255, 255, 255, 0.78);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 30px;
            letter-spacing: 0.3px;
            transition: var(--transition);
            white-space: nowrap;
        }
        .navbar-capsule .nav-link-custom:hover {
            background: rgba(201, 169, 110, 0.22);
            color: #fff;
        }
        .navbar-capsule .nav-link-custom.active {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
        }
        .navbar-toggle-btn {
            display: none;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            border-radius: 30px;
            padding: 6px 14px;
            font-size: 18px;
            pointer-events: auto;
            transition: var(--transition);
        }
        .navbar-toggle-btn:hover {
            background: rgba(201, 169, 110, 0.2);
            border-color: var(--accent);
        }
        .mobile-nav-collapse {
            display: none;
            background: rgba(28, 28, 30, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 20px;
            padding: 16px;
            margin-top: 8px;
            border: 1px solid rgba(201, 169, 110, 0.25);
            pointer-events: auto;
        }
        .mobile-nav-collapse.show {
            display: block;
        }
        .mobile-nav-collapse .nav-link-custom {
            display: block;
            padding: 10px 16px;
            color: rgba(255, 255, 255, 0.85);
            border-radius: 10px;
            margin-bottom: 4px;
        }
        .mobile-nav-collapse .nav-link-custom:hover,
        .mobile-nav-collapse .nav-link-custom.active {
            background: var(--primary);
            color: #fff;
        }

        /* Breadcrumb */
        .breadcrumb-custom {
            background: transparent;
            padding: 0;
            margin: 0;
            font-size: 14px;
            color: var(--text-secondary);
        }
        .breadcrumb-custom a {
            color: var(--primary);
            font-weight: 500;
        }
        .breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
            content: "›";
            color: var(--border);
            font-weight: 700;
            padding: 0 8px;
        }

        /* Page Header */
        .page-header {
            padding: 100px 0 40px;
            background: linear-gradient(180deg, #1C1C1E 0%, #2a2a2e 100%);
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .page-header::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(142, 31, 47, 0.25), transparent 70%);
            pointer-events: none;
        }
        .page-header .h1 {
            font-size: 42px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 14px;
            position: relative;
            z-index: 1;
            color: #fff;
        }
        .page-header .lead {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.85;
            max-width: 640px;
            position: relative;
            z-index: 1;
        }
        .page-header .breadcrumb-custom {
            position: relative;
            z-index: 1;
            color: rgba(255, 255, 255, 0.65);
        }
        .page-header .breadcrumb-custom a {
            color: var(--accent);
        }

        /* Feature Article */
        .feature-article-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }
        .feature-article-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
            transform: translateY(-2px);
        }
        .feature-article-card .feature-img {
            height: 360px;
            overflow: hidden;
            position: relative;
        }
        .feature-article-card .feature-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .feature-article-card:hover .feature-img img {
            transform: scale(1.04);
        }
        .feature-article-card .feature-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--primary);
            color: #fff;
            padding: 5px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .feature-article-card .feature-body {
            padding: 24px 28px 28px;
        }
        .feature-article-card .feature-title {
            font-size: 24px;
            font-weight: 700;
            line-height: 1.35;
            margin-bottom: 12px;
            color: var(--text-primary);
        }
        .feature-article-card .feature-title a {
            color: var(--text-primary);
        }
        .feature-article-card .feature-title a:hover {
            color: var(--primary);
        }
        .feature-article-card .feature-desc {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .feature-meta {
            font-size: 13px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .feature-meta i {
            color: var(--accent);
            margin-right: 5px;
        }

        /* Article List */
        .article-list-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px 24px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
            transition: var(--transition);
            margin-bottom: 16px;
            box-shadow: var(--shadow);
        }
        .article-list-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
            transform: translateY(-1px);
        }
        .article-list-card .article-thumb {
            width: 140px;
            height: 100px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
        }
        .article-list-card .article-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .article-list-card .article-content {
            flex: 1;
            min-width: 0;
        }
        .article-list-card .article-title {
            font-size: 18px;
            font-weight: 650;
            line-height: 1.4;
            margin-bottom: 8px;
            color: var(--text-primary);
        }
        .article-list-card .article-title a {
            color: var(--text-primary);
        }
        .article-list-card .article-title a:hover {
            color: var(--primary);
        }
        .article-list-card .article-desc {
            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;
        }
        .article-list-card .article-meta {
            font-size: 13px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }
        .article-tag {
            display: inline-block;
            background: var(--bg-alt);
            color: var(--text-primary);
            padding: 3px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.3px;
        }
        .article-tag.highlight {
            background: var(--accent-light);
            color: var(--text-primary);
        }

        /* Tags */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag-cloud .tag-pill {
            background: #fff;
            border: 1px solid var(--border);
            padding: 7px 18px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-primary);
            transition: var(--transition);
            cursor: pointer;
        }
        .tag-cloud .tag-pill:hover {
            background: var(--primary-light);
            border-color: var(--primary);
            color: var(--primary);
        }
        .tag-cloud .tag-pill.highlight {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--text-primary);
        }

        /* Editor Picks */
        .editor-pick-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }
        .editor-pick-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
            transform: translateY(-2px);
        }
        .editor-pick-card .ep-img {
            height: 180px;
            overflow: hidden;
        }
        .editor-pick-card .ep-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .editor-pick-card:hover .ep-img img {
            transform: scale(1.05);
        }
        .editor-pick-card .ep-body {
            padding: 18px 20px 20px;
        }
        .editor-pick-card .ep-title {
            font-size: 16px;
            font-weight: 650;
            line-height: 1.4;
            margin-bottom: 8px;
            color: var(--text-primary);
        }
        .editor-pick-card .ep-title a {
            color: var(--text-primary);
        }
        .editor-pick-card .ep-title a:hover {
            color: var(--primary);
        }
        .editor-pick-card .ep-meta {
            font-size: 12px;
            color: var(--text-secondary);
        }

        /* Subscribe CTA */
        .subscribe-cta {
            background: linear-gradient(135deg, #1C1C1E 0%, #3a1a20 60%, #5a1f2b 100%);
            border-radius: var(--radius);
            padding: 36px 40px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .subscribe-cta::before {
            content: "";
            position: absolute;
            top: -60px;
            right: -40px;
            width: 220px;
            height: 220px;
            background: rgba(201, 169, 110, 0.15);
            border-radius: 50%;
            pointer-events: none;
        }
        .subscribe-cta h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #fff;
        }
        .subscribe-cta p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 16px;
        }
        .subscribe-cta .btn-subscribe {
            background: var(--accent);
            border: none;
            color: var(--text-primary);
            font-weight: 600;
            padding: 10px 24px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }
        .subscribe-cta .btn-subscribe:hover {
            background: #dab87c;
            transform: translateY(-1px);
        }

        /* Category Nav Entry */
        .cat-nav-entry {
            background: var(--bg-alt);
            border-radius: var(--radius);
            padding: 28px 32px;
        }
        .cat-nav-entry .cat-link {
            display: inline-block;
            background: #fff;
            border: 1px solid var(--border);
            padding: 10px 20px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-primary);
            margin: 0 8px 8px 0;
            transition: var(--transition);
        }
        .cat-nav-entry .cat-link:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
        .cat-nav-entry .cat-link.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            font-weight: 600;
        }

        /* Pagination */
        .pagination-custom {
            display: flex;
            gap: 8px;
            align-items: center;
            flex-wrap: wrap;
        }
        .pagination-custom .page-btn {
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-primary);
            transition: var(--transition);
            cursor: pointer;
        }
        .pagination-custom .page-btn:hover {
            border-color: var(--accent);
            background: var(--accent-light);
        }
        .pagination-custom .page-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            font-weight: 600;
        }
        .pagination-custom .page-btn.disabled {
            opacity: 0.4;
            pointer-events: none;
        }

        /* Footer */
        .site-footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.75);
            padding: 56px 0 32px;
        }
        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
            gap: 40px;
            margin-bottom: 36px;
        }
        .site-footer .footer-logo {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }
        .site-footer .footer-logo span {
            color: var(--accent);
        }
        .site-footer .footer-desc {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.65);
            max-width: 320px;
        }
        .site-footer .footer-col-title {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 14px;
        }
        .site-footer .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer .footer-col ul li {
            margin-bottom: 8px;
        }
        .site-footer .footer-col ul li a {
            color: rgba(255, 255, 255, 0.65);
            font-size: 14px;
            transition: var(--transition);
        }
        .site-footer .footer-col ul li a:hover {
            color: var(--accent);
        }
        .site-footer .contact-line {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .site-footer .contact-line i {
            color: var(--accent);
            width: 16px;
        }
        .site-footer .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            align-items: center;
        }
        .site-footer .footer-links {
            display: flex;
            gap: 8px;
            align-items: center;
            margin-left: auto;
        }
        .site-footer .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 13px;
        }
        .site-footer .footer-links a:hover {
            color: var(--accent);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .navbar-capsule .nav-links {
                display: none;
            }
            .navbar-toggle-btn {
                display: block;
            }
            .page-header .h1 {
                font-size: 32px;
            }
            .feature-article-card .feature-img {
                height: 260px;
            }
            .site-footer .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
            .site-footer .footer-links {
                margin-left: 0;
                width: 100%;
            }
        }
        @media (max-width: 768px) {
            :root {
                --section-pad: 48px;
            }
            .page-header .h1 {
                font-size: 28px;
            }
            .page-header .lead {
                font-size: 15px;
            }
            .feature-article-card .feature-img {
                height: 200px;
            }
            .feature-article-card .feature-body {
                padding: 18px 20px 22px;
            }
            .feature-article-card .feature-title {
                font-size: 19px;
            }
            .article-list-card {
                flex-direction: column;
                padding: 16px 18px;
                gap: 14px;
            }
            .article-list-card .article-thumb {
                width: 100%;
                height: 180px;
            }
            .article-list-card .article-title {
                font-size: 16px;
            }
            .subscribe-cta {
                padding: 28px 24px;
            }
            .subscribe-cta h3 {
                font-size: 20px;
            }
            .cat-nav-entry {
                padding: 20px;
            }
            .site-footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .site-footer .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }
        @media (max-width: 520px) {
            :root {
                --section-pad: 36px;
            }
            .page-header {
                padding: 84px 0 28px;
            }
            .page-header .h1 {
                font-size: 24px;
            }
            .breadcrumb-custom {
                font-size: 12px;
                flex-wrap: wrap;
            }
            .section-title {
                font-size: 24px;
            }
            .feature-article-card .feature-img {
                height: 160px;
            }
            .feature-article-card .feature-title {
                font-size: 17px;
            }
            .article-list-card .article-thumb {
                height: 140px;
            }
            .pagination-custom .page-btn {
                width: 36px;
                height: 36px;
                font-size: 12px;
            }
        }

/* roulang page: category1 */
:root {
            --primary: #8E1F2F;
            --primary-dark: #6E1724;
            --primary-light: rgba(142, 31, 47, 0.12);
            --dark: #1C1C1E;
            --dark-section: #222428;
            --accent: #C9A96E;
            --accent-light: #E8E0CF;
            --bg: #F8F6F2;
            --bg-alt: #F0EDE7;
            --text-primary: #1A1A1A;
            --text-secondary: #6B6B6B;
            --border: #DEDAD2;
            --success: #2E7D32;
            --warning: #B85C00;
            --radius: 12px;
            --radius-sm: 8px;
            --radius-lg: 20px;
            --shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.10);
            --font-cn: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Source Han Sans SC", sans-serif;
            --font-num: "Inter", "DIN Alternate", "Bahnschrift", "Roboto Mono", sans-serif;
            --section-pad: 72px;
            --transition: all 0.25s ease;
        }

        @media (max-width: 992px) {
            :root {
                --section-pad: 56px;
            }
        }

        @media (max-width: 576px) {
            :root {
                --section-pad: 44px;
            }
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-cn);
            background-color: var(--bg);
            color: var(--text-primary);
            line-height: 1.8;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            padding-top: 90px;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--primary-dark);
            text-decoration: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        textarea {
            font-family: var(--font-cn);
        }

        .container {
            max-width: 1140px;
        }

        .section-pad {
            padding: var(--section-pad) 0;
        }

        .section-pad-sm {
            padding: 48px 0;
        }

        .bg-dark-section {
            background-color: var(--dark-section);
            color: #fff;
        }

        .section-label {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--primary);
            background: var(--primary-light);
            padding: 6px 16px;
            border-radius: 20px;
            margin-bottom: 12px;
        }

        .section-label-light {
            color: var(--accent);
            background: rgba(201, 169, 110, 0.18);
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 14px;
            color: var(--text-primary);
        }

        .section-title-light {
            color: #fff;
        }

        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.85;
            max-width: 680px;
            margin-bottom: 32px;
        }

        .section-desc-light {
            color: rgba(255, 255, 255, 0.75);
        }

        /* Navigation - Floating Capsule */
        .navbar-capsule-wrapper {
            position: fixed;
            top: 16px;
            left: 0;
            right: 0;
            z-index: 1030;
            padding: 0 16px;
            pointer-events: none;
        }

        .navbar-capsule {
            max-width: 980px;
            margin: 0 auto;
            background: rgba(28, 28, 30, 0.88);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 50px;
            padding: 6px 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid rgba(201, 169, 110, 0.28);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
            pointer-events: auto;
            transition: var(--transition);
        }

        .navbar-capsule .navbar-brand {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            padding: 4px 8px;
            white-space: nowrap;
        }

        .navbar-capsule .navbar-brand span {
            color: var(--accent);
        }

        .navbar-capsule .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }

        .navbar-capsule .nav-link-custom {
            color: rgba(255, 255, 255, 0.78);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 30px;
            letter-spacing: 0.3px;
            transition: var(--transition);
            white-space: nowrap;
        }

        .navbar-capsule .nav-link-custom:hover {
            background: rgba(201, 169, 110, 0.22);
            color: #fff;
        }

        .navbar-capsule .nav-link-custom.active {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
        }

        .navbar-toggle-btn {
            display: none;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            border-radius: 30px;
            padding: 6px 14px;
            font-size: 18px;
            pointer-events: auto;
            transition: var(--transition);
        }

        .navbar-toggle-btn:hover {
            background: rgba(201, 169, 110, 0.2);
            border-color: var(--accent);
        }

        .mobile-nav-collapse {
            display: none;
            background: rgba(28, 28, 30, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 20px;
            padding: 16px;
            margin-top: 8px;
            border: 1px solid rgba(201, 169, 110, 0.25);
            pointer-events: auto;
        }

        .mobile-nav-collapse.show {
            display: block;
        }

        .mobile-nav-collapse .nav-link-custom {
            display: block;
            color: rgba(255, 255, 255, 0.85);
            padding: 10px 16px;
            border-radius: 12px;
            transition: var(--transition);
        }

        .mobile-nav-collapse .nav-link-custom:hover {
            background: rgba(201, 169, 110, 0.2);
            color: #fff;
        }

        .mobile-nav-collapse .nav-link-custom.active {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
        }

        /* Breadcrumb */
        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .breadcrumb-custom a {
            color: var(--primary);
            font-weight: 500;
        }

        .breadcrumb-custom a:hover {
            color: var(--primary-dark);
        }

        .breadcrumb-custom .separator {
            color: var(--border);
            font-size: 12px;
        }

        .breadcrumb-custom .current {
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* Category Page Header - Compact */
        .category-header {
            background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 60%, var(--accent-light) 100%);
            border-bottom: 1px solid var(--border);
            padding: 40px 0 36px;
            position: relative;
            overflow: hidden;
        }

        .category-header::after {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(142, 31, 47, 0.06);
            pointer-events: none;
        }

        .category-header h1 {
            font-size: 36px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
            line-height: 1.25;
            position: relative;
            z-index: 1;
        }

        .category-header .category-desc {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 640px;
            line-height: 1.85;
            margin-bottom: 0;
            position: relative;
            z-index: 1;
        }

        /* Filter Bar */
        .filter-bar {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 16px 20px;
            box-shadow: var(--shadow);
            margin-bottom: 28px;
        }

        .filter-bar .filter-group-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 8px;
            display: block;
        }

        .filter-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }

        .filter-tag {
            display: inline-block;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            background: var(--bg-alt);
            color: var(--text-primary);
            border: 1px solid transparent;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
            user-select: none;
        }

        .filter-tag:hover {
            background: var(--accent-light);
            border-color: var(--accent);
            color: var(--text-primary);
        }

        .filter-tag.active {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
        }

        .filter-divider {
            width: 1px;
            height: 24px;
            background: var(--border);
            margin: 0 8px;
            display: inline-block;
        }

        /* Event Cards List */
        .event-card-row {
            display: flex;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            margin-bottom: 18px;
            position: relative;
        }

        .event-card-row:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        .event-card-img {
            flex: 0 0 280px;
            min-height: 180px;
            overflow: hidden;
            position: relative;
            background-color: var(--bg-alt);
        }

        .event-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .event-card-row:hover .event-card-img img {
            transform: scale(1.04);
        }

        .event-card-img .event-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(28, 28, 30, 0.82);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 20px;
            letter-spacing: 0.5px;
            backdrop-filter: blur(4px);
        }

        .event-card-img .event-tag.highlight {
            background: var(--primary);
        }

        .event-card-body {
            flex: 1;
            padding: 20px 24px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .event-card-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 8px;
            flex-wrap: wrap;
        }

        .event-date {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .event-date i {
            color: var(--primary);
            margin-right: 4px;
        }

        .event-sport {
            font-size: 12px;
            font-weight: 600;
            color: var(--primary);
            background: var(--primary-light);
            padding: 3px 12px;
            border-radius: 20px;
            letter-spacing: 0.5px;
        }

        .event-card-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            line-height: 1.35;
        }

        .event-card-title a {
            color: var(--text-primary);
        }

        .event-card-title a:hover {
            color: var(--primary);
        }

        .event-card-excerpt {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 10px;
        }

        .event-card-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            align-self: flex-start;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .event-card-link i {
            transition: transform 0.25s ease;
        }

        .event-card-link:hover i {
            transform: translateX(4px);
        }

        /* Hot Events Horizontal Scroll */
        .hot-events-scroll {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding-bottom: 12px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--accent) var(--bg-alt);
        }

        .hot-events-scroll::-webkit-scrollbar {
            height: 6px;
        }

        .hot-events-scroll::-webkit-scrollbar-track {
            background: var(--bg-alt);
            border-radius: 8px;
        }

        .hot-events-scroll::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 8px;
        }

        .hot-event-card {
            flex: 0 0 320px;
            scroll-snap-align: start;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .hot-event-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
            transform: translateY(-3px);
        }

        .hot-event-card .hot-img {
            height: 180px;
            overflow: hidden;
            position: relative;
            background-color: var(--bg-alt);
        }

        .hot-event-card .hot-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.45s ease;
        }

        .hot-event-card:hover .hot-img img {
            transform: scale(1.06);
        }

        .hot-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--primary);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 20px;
            letter-spacing: 0.5px;
        }

        .hot-event-card .hot-body {
            padding: 18px 20px 20px;
        }

        .hot-event-card .hot-body h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .hot-event-card .hot-body h3 a {
            color: var(--text-primary);
        }

        .hot-event-card .hot-body h3 a:hover {
            color: var(--primary);
        }

        .hot-event-card .hot-body p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 0;
            line-height: 1.65;
        }

        /* Data Summary Strip */
        .data-summary-strip {
            display: flex;
            gap: 0;
            background: var(--dark-section);
            border-radius: var(--radius);
            overflow: hidden;
            flex-wrap: wrap;
        }

        .data-summary-item {
            flex: 1;
            min-width: 140px;
            padding: 28px 20px;
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, 0.12);
            transition: var(--transition);
        }

        .data-summary-item:last-child {
            border-right: none;
        }

        .data-summary-item:hover {
            background: rgba(201, 169, 110, 0.08);
        }

        .data-summary-number {
            font-family: var(--font-num);
            font-size: 34px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.2;
            margin-bottom: 4px;
        }

        .data-summary-label {
            font-size: 13px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.5px;
        }

        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #4A0F18 100%);
            border-radius: var(--radius-lg);
            padding: 36px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -20px;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            background: rgba(201, 169, 110, 0.15);
            pointer-events: none;
        }

        .cta-banner-content {
            flex: 1;
            min-width: 260px;
            position: relative;
            z-index: 1;
        }

        .cta-banner-content h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .cta-banner-content p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            margin-bottom: 0;
            line-height: 1.7;
        }

        .cta-banner-action {
            position: relative;
            z-index: 1;
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }

        .cta-banner-action .btn-subscribe {
            background: #fff;
            color: var(--primary);
            border: none;
            border-radius: 30px;
            padding: 10px 28px;
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition);
            cursor: pointer;
        }

        .cta-banner-action .btn-subscribe:hover {
            background: var(--accent);
            color: var(--text-primary);
            transform: translateY(-2px);
        }

        .cta-banner-action .btn-subscribe:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
        }

        .cta-banner-action .btn-outline-light-custom {
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 30px;
            padding: 10px 24px;
            font-weight: 500;
            font-size: 14px;
            transition: var(--transition);
            cursor: pointer;
        }

        .cta-banner-action .btn-outline-light-custom:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            color: #fff;
        }

        /* Related Topics */
        .topic-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }

        .topic-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
            transform: translateY(-3px);
        }

        .topic-card .topic-img {
            height: 160px;
            overflow: hidden;
            background-color: var(--bg-alt);
        }

        .topic-card .topic-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.45s ease;
        }

        .topic-card:hover .topic-img img {
            transform: scale(1.06);
        }

        .topic-card .topic-body {
            padding: 18px 20px;
        }

        .topic-card .topic-body h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .topic-card .topic-body h3 a {
            color: var(--text-primary);
        }

        .topic-card .topic-body h3 a:hover {
            color: var(--primary);
        }

        .topic-card .topic-body p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 0;
            line-height: 1.65;
        }

        /* Pagination */
        .pagination-custom {
            display: flex;
            justify-content: center;
            gap: 6px;
            flex-wrap: wrap;
            margin-top: 12px;
        }

        .pagination-custom .page-item .page-link {
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text-primary);
            font-weight: 500;
            padding: 8px 16px;
            transition: var(--transition);
            background: #fff;
            font-size: 14px;
        }

        .pagination-custom .page-item .page-link:hover {
            background: var(--accent-light);
            border-color: var(--accent);
            color: var(--text-primary);
        }

        .pagination-custom .page-item.active .page-link {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            font-weight: 600;
        }

        .pagination-custom .page-item.disabled .page-link {
            color: var(--border);
            pointer-events: none;
            background: var(--bg-alt);
        }

        /* Buttons */
        .btn-primary-custom {
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 10px 22px;
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .btn-primary-custom:hover {
            background: var(--primary-dark);
            color: #fff;
            box-shadow: 0 6px 16px rgba(142, 31, 47, 0.25);
            transform: translateY(-1px);
        }

        .btn-primary-custom:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(142, 31, 47, 0.25);
        }

        .btn-outline-accent {
            background: transparent;
            border: 1px solid var(--accent);
            color: var(--text-primary);
            border-radius: 8px;
            padding: 10px 22px;
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .btn-outline-accent:hover {
            background: var(--accent-light);
            border-color: var(--accent);
            color: var(--text-primary);
        }

        .btn-outline-accent:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.3);
        }

        /* Footer */
        .site-footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.75);
            padding: 56px 0 0;
            font-size: 14px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 32px;
            padding-bottom: 36px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand .footer-logo {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .footer-brand .footer-logo span {
            color: var(--accent);
        }

        .footer-desc {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.75;
            max-width: 320px;
            margin-bottom: 0;
        }

        .footer-col-title {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 13px;
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--accent);
        }

        .contact-line {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact-line i {
            color: var(--accent);
            font-size: 14px;
        }

        .footer-bottom {
            padding: 20px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-links {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 12px;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        /* Responsive */
        @media (max-width: 992px) {
            body {
                padding-top: 80px;
            }

            .navbar-toggle-btn {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                font-size: 14px;
                padding: 6px 16px;
            }

            .navbar-capsule .nav-links {
                display: none;
            }

            .event-card-row {
                flex-direction: column;
            }

            .event-card-img {
                flex: none;
                width: 100%;
                min-height: 200px;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 28px;
            }

            .category-header h1 {
                font-size: 30px;
            }

            .section-title {
                font-size: 27px;
            }

            .cta-banner {
                padding: 28px 24px;
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 72px;
            }

            .navbar-capsule {
                padding: 6px 8px;
            }

            .navbar-capsule .navbar-brand {
                font-size: 17px;
            }

            .hot-event-card {
                flex: 0 0 270px;
            }

            .data-summary-item {
                min-width: 120px;
                padding: 20px 14px;
            }

            .data-summary-number {
                font-size: 26px;
            }

            .filter-bar {
                padding: 14px 14px;
            }

            .filter-tag {
                font-size: 12px;
                padding: 5px 14px;
            }

            .event-card-body {
                padding: 16px 18px;
            }

            .event-card-title {
                font-size: 17px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
        }

        @media (max-width: 520px) {
            body {
                padding-top: 66px;
            }

            .navbar-capsule-wrapper {
                top: 10px;
                padding: 0 10px;
            }

            .navbar-capsule {
                border-radius: 30px;
            }

            .category-header {
                padding: 28px 0 26px;
            }

            .category-header h1 {
                font-size: 26px;
            }

            .section-title {
                font-size: 23px;
            }

            .event-card-img {
                min-height: 160px;
            }

            .data-summary-item {
                min-width: 50%;
                padding: 16px 10px;
                border-right: 1px solid rgba(255, 255, 255, 0.1);
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }

            .data-summary-number {
                font-size: 22px;
            }

            .cta-banner-content h3 {
                font-size: 20px;
            }

            .cta-banner-action {
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
            }

            .cta-banner-action .btn-subscribe,
            .cta-banner-action .btn-outline-light-custom {
                width: 100%;
                text-align: center;
                justify-content: center;
            }
        }

/* roulang page: category3 */
:root {
            --primary: #8E1F2F;
            --primary-dark: #6E1724;
            --primary-light: rgba(142, 31, 47, 0.12);
            --dark: #1C1C1E;
            --dark-section: #222428;
            --accent: #C9A96E;
            --accent-light: #E8E0CF;
            --bg: #F8F6F2;
            --bg-alt: #F0EDE7;
            --text-primary: #1A1A1A;
            --text-secondary: #6B6B6B;
            --border: #DEDAD2;
            --success: #2E7D32;
            --warning: #B85C00;
            --radius: 12px;
            --radius-sm: 8px;
            --radius-lg: 20px;
            --shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.10);
            --font-cn: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Source Han Sans SC", sans-serif;
            --font-num: "Inter", "DIN Alternate", "Bahnschrift", "Roboto Mono", sans-serif;
            --section-pad: 56px;
            --transition: all 0.25s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-cn);
            background-color: var(--bg);
            color: var(--text-primary);
            line-height: 1.8;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            padding-top: 84px;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--primary-dark);
            text-decoration: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        textarea {
            font-family: var(--font-cn);
        }

        .container {
            max-width: 1140px;
        }

        .section-pad {
            padding: var(--section-pad) 0;
        }

        .section-pad-sm {
            padding: 36px 0;
        }

        .bg-dark-section {
            background-color: var(--dark-section);
            color: #fff;
        }

        .bg-alt-section {
            background-color: var(--bg-alt);
        }

        .section-label {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--primary);
            background: var(--primary-light);
            padding: 6px 16px;
            border-radius: 20px;
            margin-bottom: 12px;
        }

        .section-label-light {
            color: var(--accent);
            background: rgba(201, 169, 110, 0.18);
        }

        .section-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 14px;
            color: var(--text-primary);
        }

        .section-title-light {
            color: #fff;
        }

        .section-desc {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.85;
            max-width: 720px;
            margin-bottom: 28px;
        }

        .section-desc-light {
            color: rgba(255, 255, 255, 0.75);
        }

        /* Navigation - Floating Capsule */
        .navbar-capsule-wrapper {
            position: fixed;
            top: 16px;
            left: 0;
            right: 0;
            z-index: 1030;
            padding: 0 16px;
            pointer-events: none;
        }

        .navbar-capsule {
            max-width: 980px;
            margin: 0 auto;
            background: rgba(28, 28, 30, 0.88);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 50px;
            padding: 6px 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid rgba(201, 169, 110, 0.28);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
            pointer-events: auto;
            transition: var(--transition);
        }

        .navbar-capsule .navbar-brand {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            padding: 4px 8px;
            white-space: nowrap;
        }

        .navbar-capsule .navbar-brand span {
            color: var(--accent);
        }

        .navbar-capsule .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }

        .navbar-capsule .nav-link-custom {
            color: rgba(255, 255, 255, 0.78);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 30px;
            letter-spacing: 0.3px;
            transition: var(--transition);
            white-space: nowrap;
        }

        .navbar-capsule .nav-link-custom:hover {
            background: rgba(201, 169, 110, 0.22);
            color: #fff;
        }

        .navbar-capsule .nav-link-custom.active {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
        }

        .navbar-toggle-btn {
            display: none;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            border-radius: 30px;
            padding: 6px 14px;
            font-size: 18px;
            pointer-events: auto;
            transition: var(--transition);
        }

        .navbar-toggle-btn:hover {
            background: rgba(201, 169, 110, 0.2);
            border-color: var(--accent);
        }

        .mobile-nav-collapse {
            display: none;
            background: rgba(28, 28, 30, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 20px;
            padding: 16px;
            margin-top: 8px;
            border: 1px solid rgba(201, 169, 110, 0.25);
            pointer-events: auto;
        }

        .mobile-nav-collapse.show {
            display: block;
        }

        .mobile-nav-collapse .nav-link-custom {
            display: block;
            color: rgba(255, 255, 255, 0.8);
            padding: 10px 16px;
            border-radius: 12px;
            font-size: 15px;
        }

        .mobile-nav-collapse .nav-link-custom:hover {
            background: rgba(201, 169, 110, 0.2);
            color: #fff;
        }

        .mobile-nav-collapse .nav-link-custom.active {
            background: var(--primary);
            color: #fff;
        }

        /* Page Header - Compact */
        .page-header {
            background: linear-gradient(135deg, var(--dark) 0%, #2a1a1e 60%, var(--primary-dark) 100%);
            padding: 56px 0 44px;
            border-bottom: 1px solid rgba(201, 169, 110, 0.25);
            position: relative;
            overflow: hidden;
        }

        .page-header::after {
            content: '';
            position: absolute;
            right: -60px;
            top: -40px;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: rgba(201, 169, 110, 0.08);
            pointer-events: none;
        }

        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

        .breadcrumb-custom a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }

        .breadcrumb-custom a:hover {
            color: var(--accent);
        }

        .breadcrumb-custom .sep {
            color: rgba(201, 169, 110, 0.5);
            font-size: 12px;
        }

        .breadcrumb-custom .current {
            color: var(--accent);
            font-weight: 500;
        }

        .page-header h1 {
            font-size: 38px;
            font-weight: 700;
            color: #fff;
            line-height: 1.25;
            margin-bottom: 12px;
        }

        .page-header h1 .accent {
            color: var(--accent);
        }

        .page-header .page-desc {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.72);
            max-width: 640px;
            line-height: 1.8;
            margin-bottom: 0;
        }

        /* Card Styles */
        .card-custom {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 22px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }

        .card-custom:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        .card-custom .card-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 14px;
            background: var(--primary-light);
            color: var(--primary);
        }

        .card-custom h3 {
            font-size: 19px;
            font-weight: 650;
            margin-bottom: 10px;
            line-height: 1.35;
            color: var(--text-primary);
        }

        .card-custom p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 0;
        }

        .card-custom .card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            margin-top: 12px;
            transition: var(--transition);
        }

        .card-custom .card-link:hover {
            color: var(--primary-dark);
            gap: 10px;
        }

        /* Guide List Item */
        .guide-list-item {
            display: flex;
            gap: 20px;
            padding: 18px 0;
            border-bottom: 1px solid var(--border);
            transition: var(--transition);
        }

        .guide-list-item:last-child {
            border-bottom: none;
        }

        .guide-list-item:hover {
            padding-left: 8px;
        }

        .guide-list-item .guide-thumb {
            width: 150px;
            height: 105px;
            flex-shrink: 0;
            border-radius: var(--radius-sm);
            overflow: hidden;
            background: var(--bg-alt);
        }

        .guide-list-item .guide-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .guide-list-item:hover .guide-thumb img {
            transform: scale(1.04);
        }

        .guide-list-item .guide-info {
            flex: 1;
            min-width: 0;
        }

        .guide-list-item .guide-info h3 {
            font-size: 18px;
            font-weight: 650;
            margin-bottom: 6px;
            line-height: 1.4;
            color: var(--text-primary);
        }

        .guide-list-item .guide-info h3 a {
            color: var(--text-primary);
            transition: var(--transition);
        }

        .guide-list-item .guide-info h3 a:hover {
            color: var(--primary);
        }

        .guide-list-item .guide-info .guide-summary {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .guide-list-item .guide-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .guide-list-item .guide-meta .badge-step {
            background: var(--primary-light);
            color: var(--primary);
            font-size: 12px;
            font-weight: 600;
            padding: 3px 12px;
            border-radius: 20px;
        }

        .guide-list-item .guide-meta .badge-cat {
            background: var(--bg-alt);
            color: var(--text-secondary);
            font-size: 12px;
            padding: 3px 12px;
            border-radius: 20px;
        }

        .guide-list-item .guide-meta .guide-date {
            font-size: 13px;
            color: var(--text-secondary);
        }

        /* Tool Point */
        .tool-point {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            padding: 18px 20px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            transition: var(--transition);
            height: 100%;
        }

        .tool-point:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-hover);
        }

        .tool-point .tool-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: var(--accent-light);
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .tool-point h4 {
            font-size: 16px;
            font-weight: 650;
            margin-bottom: 4px;
            color: var(--text-primary);
        }

        .tool-point p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* FAQ */
        .faq-accordion .accordion-item {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius) !important;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .faq-accordion .accordion-button {
            background: #fff;
            color: var(--text-primary);
            font-weight: 650;
            font-size: 16px;
            padding: 18px 22px;
            border-radius: var(--radius) !important;
            box-shadow: none;
            transition: var(--transition);
        }

        .faq-accordion .accordion-button:not(.collapsed) {
            background: var(--bg-alt);
            color: var(--primary);
            box-shadow: none;
        }

        .faq-accordion .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(142, 31, 47, 0.15);
            border-color: var(--primary);
        }

        .faq-accordion .accordion-button::after {
            background-size: 18px;
            transition: var(--transition);
        }

        .faq-accordion .accordion-body {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
            padding: 18px 22px;
            background: #fff;
        }

        .faq-accordion .faq-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary);
            font-size: 13px;
            font-weight: 700;
            margin-right: 10px;
            flex-shrink: 0;
        }

        /* CTA Bar */
        .cta-bar {
            background: linear-gradient(120deg, var(--dark) 0%, var(--primary-dark) 70%, #5a1420 100%);
            border-radius: var(--radius-lg);
            padding: 36px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            border: 1px solid rgba(201, 169, 110, 0.3);
            box-shadow: 0 6px 28px rgba(0, 0, 0, 0.18);
        }

        .cta-bar .cta-text h3 {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }

        .cta-bar .cta-text p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.72);
            margin-bottom: 0;
        }

        .cta-bar .btn-cta-primary {
            background: var(--accent);
            color: var(--dark);
            font-weight: 600;
            padding: 12px 28px;
            border-radius: 8px;
            border: none;
            transition: var(--transition);
            white-space: nowrap;
        }

        .cta-bar .btn-cta-primary:hover {
            background: #d4b87e;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(201, 169, 110, 0.3);
            color: var(--dark);
        }

        /* Related Cards */
        .related-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }

        .related-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
            transform: translateY(-3px);
        }

        .related-card .related-img {
            height: 150px;
            background: var(--bg-alt);
            overflow: hidden;
        }

        .related-card .related-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .related-card:hover .related-img img {
            transform: scale(1.05);
        }

        .related-card .related-body {
            padding: 16px 20px;
        }

        .related-card .related-body h4 {
            font-size: 16px;
            font-weight: 650;
            margin-bottom: 6px;
            line-height: 1.4;
        }

        .related-card .related-body h4 a {
            color: var(--text-primary);
            transition: var(--transition);
        }

        .related-card .related-body h4 a:hover {
            color: var(--primary);
        }

        .related-card .related-body p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.65;
            margin-bottom: 0;
        }

        /* Pagination */
        .pagination-custom {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }

        .pagination-custom .page-item-custom {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 14px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            border: 1px solid var(--border);
            background: #fff;
            color: var(--text-primary);
            transition: var(--transition);
        }

        .pagination-custom .page-item-custom:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
        }

        .pagination-custom .page-item-custom.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            font-weight: 600;
        }

        .pagination-custom .page-item-custom.disabled {
            opacity: 0.5;
            pointer-events: none;
        }

        /* Buttons */
        .btn-main {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            padding: 10px 22px;
            border-radius: var(--radius-sm);
            border: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-main:hover {
            background: var(--primary-dark);
            color: #fff;
            box-shadow: 0 4px 14px rgba(142, 31, 47, 0.3);
            transform: translateY(-1px);
        }

        .btn-main:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(142, 31, 47, 0.25);
        }

        .btn-outline-main {
            background: transparent;
            border: 1px solid var(--accent);
            color: var(--text-primary);
            font-weight: 600;
            padding: 10px 22px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-outline-main:hover {
            background: var(--accent-light);
            border-color: var(--accent);
            color: var(--text-primary);
            box-shadow: 0 4px 14px rgba(201, 169, 110, 0.25);
        }

        /* Footer */
        .site-footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.75);
            padding: 56px 0 28px;
            margin-top: 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
            gap: 32px;
            margin-bottom: 36px;
        }

        .footer-brand .footer-logo {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
        }

        .footer-brand .footer-logo span {
            color: var(--accent);
        }

        .footer-brand .footer-desc {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 0;
            max-width: 360px;
        }

        .footer-col .footer-col-title {
            font-size: 15px;
            font-weight: 650;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.65);
            font-size: 14px;
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--accent);
        }

        .footer-col .contact-line {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 8px;
        }

        .footer-col .contact-line i {
            color: var(--accent);
            width: 18px;
            text-align: center;
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-bottom .footer-links {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: auto;
        }

        .footer-bottom .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 13px;
        }

        .footer-bottom .footer-links a:hover {
            color: var(--accent);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }

            .page-header h1 {
                font-size: 32px;
            }

            .guide-list-item .guide-thumb {
                width: 120px;
                height: 90px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 72px;
            }

            .navbar-capsule .nav-links {
                display: none;
            }

            .navbar-toggle-btn {
                display: inline-flex;
                align-items: center;
                gap: 6px;
            }

            .navbar-capsule-wrapper {
                top: 10px;
            }

            .navbar-capsule {
                flex-wrap: wrap;
            }

            .mobile-nav-collapse {
                flex-basis: 100%;
            }

            .section-title {
                font-size: 24px;
            }

            .page-header {
                padding: 40px 0 32px;
            }

            .page-header h1 {
                font-size: 28px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .footer-bottom .footer-links {
                margin-left: 0;
            }

            .guide-list-item {
                flex-direction: column;
                gap: 12px;
            }

            .guide-list-item .guide-thumb {
                width: 100%;
                height: 160px;
            }

            .cta-bar {
                flex-direction: column;
                text-align: center;
                padding: 28px 20px;
            }

            .cta-bar .btn-cta-primary {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 520px) {
            :root {
                --section-pad: 36px;
            }

            .page-header h1 {
                font-size: 24px;
            }

            .section-title {
                font-size: 21px;
            }

            .card-custom {
                padding: 16px;
            }

            .pagination-custom .page-item-custom {
                min-width: 34px;
                height: 36px;
                padding: 0 10px;
                font-size: 13px;
            }

            .tool-point {
                padding: 14px 16px;
            }

            .guide-list-item .guide-thumb {
                height: 130px;
            }
        }

/* roulang page: category4 */
:root {
            --primary: #8E1F2F;
            --primary-dark: #6E1724;
            --primary-light: rgba(142, 31, 47, 0.12);
            --dark: #1C1C1E;
            --dark-section: #222428;
            --accent: #C9A96E;
            --accent-light: #E8E0CF;
            --bg: #F8F6F2;
            --bg-alt: #F0EDE7;
            --text-primary: #1A1A1A;
            --text-secondary: #6B6B6B;
            --border: #DEDAD2;
            --success: #2E7D32;
            --warning: #B85C00;
            --radius: 12px;
            --radius-sm: 8px;
            --radius-lg: 20px;
            --shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.10);
            --font-cn: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Source Han Sans SC", sans-serif;
            --font-num: "Inter", "DIN Alternate", "Bahnschrift", "Roboto Mono", sans-serif;
            --section-pad: 72px;
            --transition: all 0.25s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-cn);
            background-color: var(--bg);
            color: var(--text-primary);
            line-height: 1.8;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-dark);
            text-decoration: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        textarea {
            font-family: var(--font-cn);
        }

        .container {
            max-width: 1140px;
        }

        .section-pad {
            padding: var(--section-pad) 0;
        }
        .section-pad-sm {
            padding: 48px 0;
        }
        .bg-dark-section {
            background-color: var(--dark-section);
            color: #fff;
        }

        .section-label {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--primary);
            background: var(--primary-light);
            padding: 6px 16px;
            border-radius: 20px;
            margin-bottom: 12px;
        }
        .section-label-light {
            color: var(--accent);
            background: rgba(201, 169, 110, 0.18);
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 14px;
            color: var(--text-primary);
        }
        .section-title-light {
            color: #fff;
        }

        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.85;
            max-width: 680px;
            margin-bottom: 32px;
        }
        .section-desc-light {
            color: rgba(255, 255, 255, 0.75);
        }

        /* Navigation - Floating Capsule */
        .navbar-capsule-wrapper {
            position: fixed;
            top: 16px;
            left: 0;
            right: 0;
            z-index: 1030;
            padding: 0 16px;
            pointer-events: none;
        }
        .navbar-capsule {
            max-width: 980px;
            margin: 0 auto;
            background: rgba(28, 28, 30, 0.88);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 50px;
            padding: 6px 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid rgba(201, 169, 110, 0.28);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
            pointer-events: auto;
            transition: var(--transition);
        }
        .navbar-capsule .navbar-brand {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            padding: 4px 8px;
            white-space: nowrap;
        }
        .navbar-capsule .navbar-brand span {
            color: var(--accent);
        }
        .navbar-capsule .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }
        .navbar-capsule .nav-link-custom {
            color: rgba(255, 255, 255, 0.78);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 30px;
            letter-spacing: 0.3px;
            transition: var(--transition);
            white-space: nowrap;
        }
        .navbar-capsule .nav-link-custom:hover {
            background: rgba(201, 169, 110, 0.22);
            color: #fff;
        }
        .navbar-capsule .nav-link-custom.active {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
        }
        .navbar-toggle-btn {
            display: none;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            border-radius: 30px;
            padding: 6px 14px;
            font-size: 18px;
            pointer-events: auto;
            transition: var(--transition);
        }
        .navbar-toggle-btn:hover {
            background: rgba(201, 169, 110, 0.2);
            border-color: var(--accent);
        }
        .mobile-nav-collapse {
            display: none;
            background: rgba(28, 28, 30, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 20px;
            padding: 16px;
            margin-top: 8px;
            border: 1px solid rgba(201, 169, 110, 0.25);
            pointer-events: auto;
        }
        .mobile-nav-collapse.show {
            display: block;
        }
        .mobile-nav-collapse .nav-link-custom {
            display: block;
            padding: 12px 16px;
            border-radius: 12px;
            color: rgba(255, 255, 255, 0.8);
        }
        .mobile-nav-collapse .nav-link-custom.active {
            background: rgba(142, 31, 47, 0.6);
            color: #fff;
        }

        /* Page Header - Compact */
        .page-header {
            background: url('/assets/images/3d1569eb5fff61d1.webp') center/cover no-repeat;
            position: relative;
            padding: 140px 0 72px;
            color: #fff;
        }
        .page-header::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(20, 20, 22, 0.92) 0%, rgba(28, 28, 30, 0.72) 50%, rgba(142, 31, 47, 0.55) 100%);
        }
        .page-header .container {
            position: relative;
            z-index: 2;
        }
        .breadcrumb-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 18px;
        }
        .breadcrumb-custom a {
            color: var(--accent);
        }
        .breadcrumb-custom .separator {
            opacity: 0.6;
        }
        .page-header h1 {
            font-size: 42px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 14px;
            color: #fff;
        }
        .page-header h1 .accent {
            color: var(--accent);
        }
        .page-header .header-desc {
            font-size: 17px;
            line-height: 1.85;
            color: rgba(255, 255, 255, 0.8);
            max-width: 640px;
        }

        /* Data Overview */
        .data-overview-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .data-overview-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px 20px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .data-overview-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }
        .data-overview-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .data-overview-card .num {
            font-family: var(--font-num);
            font-size: 38px;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 6px;
        }
        .data-overview-card .label-text {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* Ranking List */
        .ranking-section {
            background: var(--bg-alt);
        }
        .ranking-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 26px 28px;
            box-shadow: var(--shadow);
        }
        .ranking-header-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border);
        }
        .ranking-filter-tabs {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .ranking-filter-tab {
            padding: 7px 18px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            background: var(--bg-alt);
            color: var(--text-secondary);
            border: 1px solid transparent;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }
        .ranking-filter-tab:hover {
            background: var(--accent-light);
            color: var(--text-primary);
        }
        .ranking-filter-tab.active {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
        }
        .ranking-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .ranking-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 10px;
            border-bottom: 1px solid #F0EDE7;
            transition: var(--transition);
            border-radius: 8px;
        }
        .ranking-item:last-child {
            border-bottom: none;
        }
        .ranking-item:hover {
            background: #FAF9F7;
        }
        .ranking-pos {
            font-family: var(--font-num);
            font-size: 20px;
            font-weight: 700;
            min-width: 48px;
            text-align: center;
            color: var(--text-secondary);
        }
        .ranking-pos.top1 { color: var(--accent); font-size: 24px; }
        .ranking-pos.top2 { color: #8E8E8E; font-size: 22px; }
        .ranking-pos.top3 { color: #B87333; font-size: 22px; }
        .ranking-info {
            flex: 1;
            min-width: 0;
        }
        .ranking-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 3px;
        }
        .ranking-meta {
            font-size: 13px;
            color: var(--text-secondary);
        }
        .ranking-value {
            font-family: var(--font-num);
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            text-align: right;
            min-width: 80px;
        }
        .ranking-trend {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 13px;
            font-weight: 600;
            min-width: 56px;
            justify-content: flex-end;
        }
        .trend-up { color: var(--success); }
        .trend-down { color: var(--warning); }
        .trend-flat { color: var(--text-secondary); }

        /* Trend Analysis */
        .trend-analysis-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .trend-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .trend-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .trend-card-img {
            height: 180px;
            overflow: hidden;
            position: relative;
        }
        .trend-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .trend-card:hover .trend-card-img img {
            transform: scale(1.06);
        }
        .trend-card-body {
            padding: 20px 22px;
        }
        .trend-card-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 20px;
            background: var(--primary-light);
            color: var(--primary);
            margin-bottom: 10px;
        }
        .trend-card-title {
            font-size: 18px;
            font-weight: 650;
            line-height: 1.4;
            margin-bottom: 8px;
            color: var(--text-primary);
        }
        .trend-card-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.75;
            margin-bottom: 14px;
        }
        .trend-card-link {
            font-size: 14px;
            font-weight: 500;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .trend-card-link:hover {
            color: var(--primary-dark);
            gap: 10px;
        }

        /* History Timeline */
        .history-section {
            background: var(--dark-section);
            color: #fff;
        }
        .history-year-tabs {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }
        .history-year-tab {
            padding: 10px 28px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.15);
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font-num);
            letter-spacing: 0.5px;
        }
        .history-year-tab:hover {
            background: rgba(201, 169, 110, 0.2);
            color: #fff;
            border-color: var(--accent);
        }
        .history-year-tab.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
        .history-content {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius);
            padding: 28px 30px;
        }
        .history-content h3 {
            font-size: 20px;
            font-weight: 650;
            margin-bottom: 12px;
            color: #fff;
        }
        .history-content p {
            font-size: 15px;
            line-height: 1.85;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 16px;
        }
        .history-stats-row {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }
        .history-stat {
            text-align: center;
        }
        .history-stat .hs-num {
            font-family: var(--font-num);
            font-size: 28px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.2;
        }
        .history-stat .hs-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Related Topics */
        .related-topic-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }
        .related-topic-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }
        .related-topic-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .related-topic-img {
            height: 150px;
            overflow: hidden;
        }
        .related-topic-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .related-topic-card:hover .related-topic-img img {
            transform: scale(1.05);
        }
        .related-topic-body {
            padding: 18px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .related-topic-title {
            font-size: 16px;
            font-weight: 650;
            line-height: 1.4;
            margin-bottom: 6px;
            color: var(--text-primary);
        }
        .related-topic-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
            flex: 1;
        }

        /* Pagination */
        .pagination-wrap {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            padding: 16px 0;
        }
        .pagination-wrap .page-btn {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 500;
            background: #fff;
            border: 1px solid var(--border);
            color: var(--text-primary);
            cursor: pointer;
            transition: var(--transition);
        }
        .pagination-wrap .page-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
        }
        .pagination-wrap .page-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
        .pagination-wrap .page-btn.disabled {
            opacity: 0.4;
            pointer-events: none;
        }

        /* Footer */
        .site-footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.8);
            padding: 56px 0 28px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
            gap: 36px;
            margin-bottom: 36px;
        }
        .footer-logo {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
        }
        .footer-logo span {
            color: var(--accent);
        }
        .footer-desc {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.62);
            max-width: 300px;
        }
        .footer-col-title {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.62);
            font-size: 14px;
            transition: var(--transition);
        }
        .footer-col ul li a:hover {
            color: var(--accent);
        }
        .contact-line {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.62);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .contact-line i {
            color: var(--accent);
            width: 16px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 22px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }
        .footer-links {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.55);
            font-size: 13px;
        }
        .footer-links a:hover {
            color: var(--accent);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .navbar-capsule .nav-links {
                display: none;
            }
            .navbar-toggle-btn {
                display: flex;
                align-items: center;
                gap: 6px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
            .trend-analysis-grid {
                grid-template-columns: 1fr 1fr;
            }
            .related-topic-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 767px) {
            :root {
                --section-pad: 44px;
            }
            .page-header {
                padding: 120px 0 52px;
            }
            .page-header h1 {
                font-size: 30px;
            }
            .data-overview-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .data-overview-card .num {
                font-size: 30px;
            }
            .ranking-card {
                padding: 18px 16px;
            }
            .ranking-item {
                gap: 10px;
                padding: 10px 6px;
                flex-wrap: wrap;
            }
            .ranking-value {
                min-width: 70px;
                font-size: 17px;
            }
            .trend-analysis-grid {
                grid-template-columns: 1fr;
            }
            .history-year-tab {
                padding: 8px 20px;
                font-size: 13px;
            }
            .related-topic-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
            .section-title {
                font-size: 26px;
            }
        }

        @media (max-width: 575px) {
            :root {
                --section-pad: 36px;
            }
            .navbar-capsule {
                padding: 4px 6px;
                border-radius: 30px;
            }
            .navbar-capsule .navbar-brand {
                font-size: 17px;
            }
            .navbar-toggle-btn {
                padding: 5px 10px;
                font-size: 15px;
            }
            .page-header h1 {
                font-size: 26px;
            }
            .data-overview-card .num {
                font-size: 26px;
            }
            .history-stats-row {
                gap: 20px;
            }
            .history-stat .hs-num {
                font-size: 22px;
            }
        }

/* roulang page: category5 */
:root {
            --primary: #8E1F2F;
            --primary-dark: #6E1724;
            --primary-light: rgba(142, 31, 47, 0.12);
            --dark: #1C1C1E;
            --dark-section: #222428;
            --accent: #C9A96E;
            --accent-light: #E8E0CF;
            --bg: #F8F6F2;
            --bg-alt: #F0EDE7;
            --text-primary: #1A1A1A;
            --text-secondary: #6B6B6B;
            --border: #DEDAD2;
            --success: #2E7D32;
            --warning: #B85C00;
            --radius: 12px;
            --radius-sm: 8px;
            --radius-lg: 20px;
            --shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.10);
            --font-cn: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Source Han Sans SC", sans-serif;
            --font-num: "Inter", "DIN Alternate", "Bahnschrift", "Roboto Mono", sans-serif;
            --section-pad: 72px;
            --transition: all 0.25s ease;
        }
        @media (max-width: 768px) {
            :root {
                --section-pad: 56px;
            }
        }
        @media (max-width: 576px) {
            :root {
                --section-pad: 44px;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-cn);
            background-color: var(--bg);
            color: var(--text-primary);
            line-height: 1.8;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            padding-top: 80px;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-dark);
            text-decoration: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input,
        textarea {
            font-family: var(--font-cn);
        }
        .container {
            max-width: 1140px;
        }
        .section-pad {
            padding: var(--section-pad) 0;
        }
        .section-pad-sm {
            padding: 48px 0;
        }
        .bg-dark-section {
            background-color: var(--dark-section);
            color: #fff;
        }
        .bg-alt-section {
            background-color: var(--bg-alt);
        }
        .section-label {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--primary);
            background: var(--primary-light);
            padding: 6px 16px;
            border-radius: 20px;
            margin-bottom: 12px;
        }
        .section-label-light {
            color: var(--accent);
            background: rgba(201, 169, 110, 0.18);
        }
        .section-title {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 14px;
            color: var(--text-primary);
        }
        .section-title-light {
            color: #fff;
        }
        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.85;
            max-width: 680px;
            margin-bottom: 32px;
        }
        .section-desc-light {
            color: rgba(255, 255, 255, 0.75);
        }

        /* Navigation - Floating Capsule */
        .navbar-capsule-wrapper {
            position: fixed;
            top: 16px;
            left: 0;
            right: 0;
            z-index: 1030;
            padding: 0 16px;
            pointer-events: none;
        }
        .navbar-capsule {
            max-width: 980px;
            margin: 0 auto;
            background: rgba(28, 28, 30, 0.88);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 50px;
            padding: 6px 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid rgba(201, 169, 110, 0.28);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
            pointer-events: auto;
            transition: var(--transition);
        }
        .navbar-capsule .navbar-brand {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            padding: 4px 8px;
            white-space: nowrap;
        }
        .navbar-capsule .navbar-brand span {
            color: var(--accent);
        }
        .navbar-capsule .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }
        .navbar-capsule .nav-link-custom {
            color: rgba(255, 255, 255, 0.78);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 30px;
            letter-spacing: 0.3px;
            transition: var(--transition);
            white-space: nowrap;
        }
        .navbar-capsule .nav-link-custom:hover {
            background: rgba(201, 169, 110, 0.22);
            color: #fff;
        }
        .navbar-capsule .nav-link-custom.active {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
        }
        .navbar-toggle-btn {
            display: none;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            border-radius: 30px;
            padding: 6px 14px;
            font-size: 18px;
            pointer-events: auto;
            transition: var(--transition);
        }
        .navbar-toggle-btn:hover {
            background: rgba(201, 169, 110, 0.2);
            border-color: var(--accent);
        }
        .mobile-nav-collapse {
            display: none;
            background: rgba(28, 28, 30, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 20px;
            padding: 16px;
            margin-top: 8px;
            border: 1px solid rgba(201, 169, 110, 0.25);
            pointer-events: auto;
        }
        .mobile-nav-collapse.show {
            display: block;
        }
        .mobile-nav-collapse .nav-link-custom {
            display: block;
            padding: 10px 16px;
            color: rgba(255, 255, 255, 0.8);
            border-radius: 12px;
            font-size: 15px;
            margin-bottom: 4px;
        }
        .mobile-nav-collapse .nav-link-custom:hover {
            background: rgba(201, 169, 110, 0.18);
            color: #fff;
        }
        .mobile-nav-collapse .nav-link-custom.active {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
        }

        /* Breadcrumb */
        .breadcrumb-custom {
            background: transparent;
            padding: 0;
            margin-bottom: 0;
            font-size: 14px;
            color: var(--text-secondary);
        }
        .breadcrumb-custom a {
            color: var(--text-secondary);
        }
        .breadcrumb-custom a:hover {
            color: var(--primary);
        }
        .breadcrumb-custom .breadcrumb-item+.breadcrumb-item::before {
            content: "/";
            color: var(--border);
            margin: 0 8px;
        }
        .breadcrumb-custom .breadcrumb-item.active {
            color: var(--primary);
            font-weight: 500;
        }

        /* Category Page Header */
        .category-header {
            background: var(--bg-alt);
            border-bottom: 1px solid var(--border);
            padding: 40px 0 32px;
            margin-bottom: 0;
        }
        .category-header h1 {
            font-size: 38px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            line-height: 1.2;
        }
        .category-header .header-desc {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 720px;
            line-height: 1.8;
        }

        /* Topic Cards */
        .topic-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
            height: 100%;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        .topic-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
            transform: translateY(-2px);
        }
        .topic-icon {
            width: 48px;
            height: 48px;
            background: var(--primary-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 16px;
        }
        .topic-card h3 {
            font-size: 20px;
            font-weight: 650;
            margin-bottom: 8px;
            color: var(--text-primary);
        }
        .topic-card p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 12px;
            line-height: 1.7;
        }
        .topic-link {
            font-size: 14px;
            font-weight: 500;
            color: var(--primary);
        }
        .topic-link i {
            font-size: 12px;
            margin-left: 4px;
        }

        /* Post List */
        .post-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px 24px;
            margin-bottom: 16px;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        .post-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
            transform: translateY(-1px);
        }
        .post-card .post-title {
            font-size: 19px;
            font-weight: 650;
            color: var(--text-primary);
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .post-card .post-title a {
            color: var(--text-primary);
        }
        .post-card .post-title a:hover {
            color: var(--primary);
        }
        .post-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            font-size: 13px;
            color: var(--text-secondary);
        }
        .post-meta .badge-post {
            background: var(--bg-alt);
            color: var(--text-primary);
            border-radius: 20px;
            padding: 3px 12px;
            font-size: 12px;
            font-weight: 500;
        }
        .post-meta .badge-post.hot {
            background: rgba(142, 31, 47, 0.1);
            color: var(--primary);
        }
        .post-meta .author {
            color: var(--text-secondary);
            font-weight: 500;
        }
        .post-reply {
            margin-left: auto;
            font-size: 13px;
            color: var(--text-secondary);
            white-space: nowrap;
        }
        .post-reply i {
            margin-right: 4px;
            color: var(--accent);
        }

        /* Active Users */
        .user-chip {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 10px 18px 10px 10px;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        .user-chip:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-hover);
        }
        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
            background: var(--bg-alt);
            flex-shrink: 0;
            border: 2px solid var(--accent-light);
        }
        .user-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .user-info .user-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.3;
        }
        .user-info .user-tag {
            font-size: 12px;
            color: var(--text-secondary);
        }

        /* Activity Cards */
        .activity-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
            height: 100%;
        }
        .activity-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
            transform: translateY(-2px);
        }
        .activity-img {
            height: 160px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .activity-img .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
        }
        .activity-img .activity-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--primary);
            color: #fff;
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }
        .activity-body {
            padding: 20px 24px;
        }
        .activity-body h3 {
            font-size: 19px;
            font-weight: 650;
            margin-bottom: 8px;
            color: var(--text-primary);
        }
        .activity-body p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 12px;
            line-height: 1.7;
        }
        .activity-link {
            font-size: 14px;
            font-weight: 500;
            color: var(--primary);
        }

        /* CTA Strip */
        .cta-strip {
            background: var(--dark-section);
            border-radius: var(--radius-lg);
            padding: 36px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            background-image: url('/assets/images/871d9540be880e79.webp');
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        .cta-strip::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(28, 28, 30, 0.85);
            z-index: 1;
        }
        .cta-strip>* {
            position: relative;
            z-index: 2;
        }
        .cta-strip .cta-title {
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }
        .cta-strip .cta-desc {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.75);
            max-width: 500px;
        }
        .btn-primary-custom {
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: var(--radius-sm);
            padding: 10px 24px;
            font-size: 15px;
            font-weight: 600;
            transition: var(--transition);
            white-space: nowrap;
        }
        .btn-primary-custom:hover {
            background: var(--primary-dark);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(142, 31, 47, 0.35);
        }
        .btn-primary-custom:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(142, 31, 47, 0.25);
        }
        .btn-outline-custom {
            background: transparent;
            border: 1px solid var(--accent);
            color: var(--accent);
            border-radius: var(--radius-sm);
            padding: 9px 22px;
            font-size: 15px;
            font-weight: 500;
            transition: var(--transition);
            white-space: nowrap;
        }
        .btn-outline-custom:hover {
            background: rgba(201, 169, 110, 0.15);
            color: var(--accent);
            border-color: var(--accent);
        }

        /* Community Rules */
        .rules-banner {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px 28px;
            box-shadow: var(--shadow);
        }
        .rules-banner .rule-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid var(--bg-alt);
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .rules-banner .rule-item:last-child {
            border-bottom: none;
        }
        .rules-banner .rule-item i {
            color: var(--accent);
            font-size: 16px;
            margin-top: 3px;
            flex-shrink: 0;
        }

        /* Pagination */
        .pagination-custom {
            display: flex;
            gap: 8px;
            align-items: center;
            justify-content: center;
            padding: 20px 0;
        }
        .pagination-custom .page-btn {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: #fff;
            color: var(--text-primary);
            font-size: 14px;
            font-weight: 500;
            transition: var(--transition);
            cursor: pointer;
        }
        .pagination-custom .page-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .pagination-custom .page-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
        .pagination-custom .page-btn.disabled {
            opacity: 0.4;
            pointer-events: none;
        }

        /* Footer */
        .site-footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.75);
            padding: 56px 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 32px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
        }
        .footer-logo span {
            color: var(--accent);
        }
        .footer-desc {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.6);
            max-width: 360px;
        }
        .footer-col-title {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            transition: var(--transition);
        }
        .footer-col ul li a:hover {
            color: var(--accent);
        }
        .contact-line {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 10px;
        }
        .contact-line i {
            color: var(--accent);
            width: 16px;
        }
        .footer-bottom {
            padding: 20px 0;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }
        .footer-bottom .footer-links {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-bottom .footer-links a {
            color: rgba(255, 255, 255, 0.5);
            font-size: 13px;
        }
        .footer-bottom .footer-links a:hover {
            color: var(--accent);
        }
        .footer-bottom .footer-links span {
            color: rgba(255, 255, 255, 0.3);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .navbar-capsule .nav-link-custom {
                padding: 6px 12px;
                font-size: 13px;
            }
            .navbar-capsule .navbar-brand {
                font-size: 18px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            .nav-links {
                display: none !important;
            }
            .navbar-toggle-btn {
                display: flex;
                align-items: center;
                gap: 6px;
                font-size: 15px;
            }
            .category-header h1 {
                font-size: 30px;
            }
            .section-title {
                font-size: 26px;
            }
            .cta-strip {
                padding: 28px 24px;
                flex-direction: column;
                text-align: center;
            }
            .cta-strip .cta-desc {
                margin: 0 auto;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .footer-bottom .footer-links {
                margin-left: 0;
            }
        }
        @media (max-width: 576px) {
            .post-card {
                padding: 16px 18px;
            }
            .post-card .post-title {
                font-size: 17px;
            }
            .post-meta {
                gap: 8px;
                font-size: 12px;
            }
            .post-reply {
                margin-left: 0;
                width: 100%;
            }
            .user-chip {
                padding: 8px 14px 8px 8px;
            }
            .user-avatar {
                width: 34px;
                height: 34px;
            }
            .user-info .user-name {
                font-size: 13px;
            }
            .topic-card {
                padding: 18px;
            }
        }

/* 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}
