/* roulang page: index */
/* ===== 设计变量 ===== */
        :root {
            --primary: #0f1b3d;
            --primary-light: #1a2d5e;
            --primary-dark: #0a122a;
            --accent: #e85d2c;
            --accent-hover: #d04e1e;
            --accent-light: #fde8e0;
            --bg: #f7f8fc;
            --bg-card: #ffffff;
            --bg-dark: #0f1b3d;
            --text: #1a1a2e;
            --text-light: #6b7280;
            --text-white: #ffffff;
            --border: #e5e7eb;
            --border-light: #f0f0f5;
            --shadow-sm: 0 2px 8px rgba(15, 27, 61, 0.06);
            --shadow-md: 0 8px 30px rgba(15, 27, 61, 0.10);
            --shadow-lg: 0 20px 60px rgba(15, 27, 61, 0.14);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans SC', sans-serif;
            --container: 1200px;
            --header-h: 72px;
        }

        /* ===== Reset & Base ===== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text);
            background: var(--bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-sm);
        }
        button,
        input,
        textarea {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
            background: none;
        }
        button {
            cursor: pointer;
        }
        ul,
        ol {
            list-style: none;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            font-weight: 700;
            color: var(--text);
        }

        /* ===== 容器 ===== */
        .container {
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
        }

        /* ===== 头部导航 ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-h);
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-light);
            z-index: 1000;
            transition: var(--transition);
            box-shadow: 0 1px 4px rgba(15, 27, 61, 0.04);
        }
        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            font-weight: 800;
            flex-shrink: 0;
        }
        .logo-text {
            font-size: 22px;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.5px;
        }
        .logo-text span {
            color: var(--accent);
        }
        .header-nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .header-nav a {
            padding: 8px 18px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 500;
            color: var(--text-light);
            transition: var(--transition);
            position: relative;
        }
        .header-nav a:hover {
            color: var(--primary);
            background: rgba(15, 27, 61, 0.05);
        }
        .header-nav a.active {
            color: var(--primary);
            font-weight: 600;
        }
        .header-nav a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 3px;
            background: var(--accent);
            border-radius: 4px;
        }
        .header-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .search-box {
            display: flex;
            align-items: center;
            background: var(--bg);
            border-radius: 50px;
            padding: 0 16px;
            border: 1px solid var(--border);
            transition: var(--transition);
            height: 40px;
        }
        .search-box:focus-within {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(232, 93, 44, 0.12);
        }
        .search-box input {
            padding: 8px 0;
            width: 140px;
            background: transparent;
            color: var(--text);
            font-size: 14px;
        }
        .search-box input::placeholder {
            color: var(--text-light);
        }
        .search-box button {
            color: var(--text-light);
            padding: 4px 0 4px 8px;
            font-size: 15px;
            transition: var(--transition);
        }
        .search-box button:hover {
            color: var(--accent);
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            background: var(--primary);
            color: #fff;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }
        .btn-primary:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(15, 27, 61, 0.20);
        }
        .btn-primary:active {
            transform: translateY(0);
        }
        .btn-accent {
            background: var(--accent);
            color: #fff;
        }
        .btn-accent:hover {
            background: var(--accent-hover);
            box-shadow: 0 8px 24px rgba(232, 93, 44, 0.30);
        }
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 8px 22px;
        }
        .btn-outline:hover {
            background: var(--primary);
            color: #fff;
        }
        .btn-sm {
            padding: 6px 16px;
            font-size: 13px;
        }
        .btn-lg {
            padding: 14px 34px;
            font-size: 16px;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 6px;
            background: none;
            border: none;
            cursor: pointer;
        }
        .hamburger span {
            display: block;
            width: 26px;
            height: 2.5px;
            background: var(--primary);
            border-radius: 4px;
            transition: var(--transition);
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ===== Hero 首屏 ===== */
        .hero {
            margin-top: var(--header-h);
            min-height: 85vh;
            display: flex;
            align-items: center;
            position: relative;
            background: var(--primary-dark);
            background-image: url('/assets/images/backpic/back-1.png');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15, 27, 61, 0.88) 0%, rgba(15, 27, 61, 0.50) 60%, rgba(232, 93, 44, 0.20) 100%);
            z-index: 1;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 120px;
            background: linear-gradient(to top, var(--bg), transparent);
            z-index: 2;
        }
        .hero .container {
            position: relative;
            z-index: 3;
            display: flex;
            flex-direction: column;
            gap: 28px;
            padding-top: 40px;
            padding-bottom: 80px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: 50px;
            color: #fff;
            font-size: 14px;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.15);
            width: fit-content;
        }
        .hero-badge i {
            color: var(--accent);
        }
        .hero h1 {
            font-size: clamp(2.4rem, 6vw, 4.2rem);
            font-weight: 800;
            color: #fff;
            line-height: 1.15;
            max-width: 800px;
            letter-spacing: -1px;
        }
        .hero h1 span {
            color: var(--accent);
            position: relative;
        }
        .hero p {
            font-size: clamp(1.05rem, 2vw, 1.25rem);
            color: rgba(255, 255, 255, 0.80);
            max-width: 600px;
            line-height: 1.8;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 8px;
        }
        .hero-actions .btn-primary {
            font-size: 16px;
            padding: 14px 34px;
        }
        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 20px;
            padding-top: 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
        }
        .hero-stat h3 {
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
        }
        .hero-stat h3 small {
            font-size: 16px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.6);
            margin-left: 4px;
        }
        .hero-stat p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            margin-top: 2px;
        }

        /* ===== 通用板块 ===== */
        .section {
            padding: 80px 0;
        }
        .section-alt {
            background: var(--bg-card);
        }
        .section-dark {
            background: var(--bg-dark);
            color: #fff;
        }
        .section-dark h2,
        .section-dark h3 {
            color: #fff;
        }
        .section-header {
            text-align: center;
            margin-bottom: 52px;
        }
        .section-header h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 12px;
        }
        .section-header h2 span {
            color: var(--accent);
        }
        .section-header p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            font-size: 17px;
        }
        .section-header .badge {
            display: inline-block;
            background: var(--accent-light);
            color: var(--accent);
            padding: 4px 16px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .section-dark .section-header p {
            color: rgba(255, 255, 255, 0.70);
        }
        .section-dark .section-header .badge {
            background: rgba(232, 93, 44, 0.20);
            color: var(--accent);
        }

        /* ===== 特色卡片 ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .feature-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 36px 32px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid var(--border-light);
            text-align: center;
        }
        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: transparent;
        }
        .feature-icon {
            width: 64px;
            height: 64px;
            background: var(--accent-light);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 26px;
            color: var(--accent);
            transition: var(--transition);
        }
        .feature-card:hover .feature-icon {
            background: var(--accent);
            color: #fff;
            transform: scale(1.05);
        }
        .feature-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
            font-weight: 700;
        }
        .feature-card p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.7;
        }

        /* ===== 分类入口 ===== */
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        .category-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            min-height: 320px;
            display: flex;
            align-items: flex-end;
            background: var(--primary-dark);
            transition: var(--transition);
            cursor: pointer;
            box-shadow: var(--shadow-sm);
        }
        .category-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
            border-radius: 0;
        }
        .category-card:hover img {
            transform: scale(1.05);
        }
        .category-card .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15, 27, 61, 0.85) 0%, rgba(15, 27, 61, 0.25) 60%, transparent 100%);
            z-index: 1;
        }
        .category-card .content {
            position: relative;
            z-index: 2;
            padding: 32px 30px;
            width: 100%;
        }
        .category-card .content h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .category-card .content p {
            color: rgba(255, 255, 255, 0.80);
            font-size: 15px;
            margin-bottom: 14px;
        }
        .category-card .content .btn-outline {
            border-color: rgba(255, 255, 255, 0.60);
            color: #fff;
            padding: 6px 20px;
            font-size: 13px;
        }
        .category-card .content .btn-outline:hover {
            background: #fff;
            color: var(--primary);
            border-color: #fff;
        }

        /* ===== 最新资讯列表 ===== */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .news-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid var(--border-light);
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: transparent;
        }
        .news-card .thumb {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 0;
            flex-shrink: 0;
        }
        .news-card .body {
            padding: 22px 24px 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .news-card .meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: var(--text-light);
            margin-bottom: 8px;
        }
        .news-card .meta .tag {
            background: var(--accent-light);
            color: var(--accent);
            padding: 2px 12px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 12px;
        }
        .news-card .meta .date {
            font-size: 13px;
        }
        .news-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .news-card h3 a {
            color: var(--text);
        }
        .news-card h3 a:hover {
            color: var(--accent);
        }
        .news-card p {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.7;
            flex: 1;
        }
        .news-card .read-more {
            margin-top: 14px;
            font-size: 14px;
            font-weight: 600;
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .news-card .read-more:hover {
            gap: 10px;
        }
        .news-empty {
            grid-column: 1 / -1;
            text-align: center;
            padding: 60px 20px;
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px dashed var(--border);
            color: var(--text-light);
        }
        .news-empty i {
            font-size: 40px;
            margin-bottom: 16px;
            color: var(--border);
            display: block;
        }
        .news-empty p {
            font-size: 16px;
        }

        /* ===== 数据统计 ===== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }
        .stat-card {
            padding: 32px 20px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: var(--radius-md);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition);
        }
        .stat-card:hover {
            background: rgba(255, 255, 255, 0.10);
            transform: translateY(-4px);
        }
        .stat-card .num {
            font-size: 40px;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
        }
        .stat-card .num .unit {
            font-size: 20px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.60);
        }
        .stat-card .label {
            color: rgba(255, 255, 255, 0.70);
            font-size: 15px;
            margin-top: 6px;
        }
        .stat-card .icon {
            font-size: 32px;
            color: var(--accent);
            margin-bottom: 12px;
        }

        /* ===== 流程步骤 ===== */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            counter-reset: step;
        }
        .step-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 32px 24px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: var(--transition);
            position: relative;
        }
        .step-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        .step-card .step-num {
            width: 48px;
            height: 48px;
            background: var(--primary);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            margin: 0 auto 18px;
            transition: var(--transition);
        }
        .step-card:hover .step-num {
            background: var(--accent);
            transform: scale(1.08);
        }
        .step-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .step-card p {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.7;
        }
        .step-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--accent);
            opacity: 0.5;
        }

        /* ===== FAQ ===== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: var(--bg-card);
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: var(--transition);
        }
        .faq-item:hover {
            border-color: var(--border);
        }
        .faq-question {
            padding: 18px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            color: var(--text);
            background: none;
            width: 100%;
            text-align: left;
            transition: var(--transition);
        }
        .faq-question:hover {
            color: var(--accent);
        }
        .faq-question i {
            transition: var(--transition);
            color: var(--text-light);
            font-size: 14px;
        }
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
            color: var(--accent);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 24px;
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.8;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 24px 20px;
        }

        /* ===== CTA ===== */
        .cta-section {
            background: var(--primary);
            background-image: url('/assets/images/backpic/back-2.png');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            position: relative;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15, 27, 61, 0.90) 0%, rgba(15, 27, 61, 0.60) 100%);
            z-index: 1;
        }
        .cta-section .container {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 80px 24px;
        }
        .cta-section h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            color: #fff;
            margin-bottom: 14px;
        }
        .cta-section p {
            color: rgba(255, 255, 255, 0.80);
            max-width: 560px;
            margin: 0 auto 30px;
            font-size: 17px;
        }
        .cta-section .btn-primary {
            background: var(--accent);
            color: #fff;
            font-size: 16px;
            padding: 14px 36px;
        }
        .cta-section .btn-primary:hover {
            background: var(--accent-hover);
            box-shadow: 0 8px 30px rgba(232, 93, 44, 0.35);
        }
        .cta-section .btn-outline {
            border-color: rgba(255, 255, 255, 0.50);
            color: #fff;
        }
        .cta-section .btn-outline:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.10);
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: var(--primary-dark);
            color: rgba(255, 255, 255, 0.80);
            padding: 60px 0 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-brand .logo-text {
            color: #fff;
            margin-bottom: 12px;
            display: inline-block;
        }
        .footer-brand .logo-text span {
            color: var(--accent);
        }
        .footer-brand p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.60);
            max-width: 280px;
            line-height: 1.8;
        }
        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 18px;
        }
        .footer-social a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.70);
            font-size: 16px;
            transition: var(--transition);
        }
        .footer-social a:hover {
            background: var(--accent);
            color: #fff;
            transform: translateY(-3px);
        }
        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .footer-col a {
            display: block;
            padding: 4px 0;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.60);
            transition: var(--transition);
        }
        .footer-col a:hover {
            color: var(--accent);
            padding-left: 4px;
        }
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 24px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.45);
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.45);
        }
        .footer-bottom a:hover {
            color: var(--accent);
        }

        /* ===== 移动端导航 ===== */
        .mobile-nav {
            display: none;
            position: fixed;
            top: var(--header-h);
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-light);
            box-shadow: var(--shadow-md);
            z-index: 999;
            padding: 16px 24px;
            flex-direction: column;
            gap: 8px;
            transform: translateY(-100%);
            opacity: 0;
            transition: var(--transition);
            pointer-events: none;
        }
        .mobile-nav.open {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }
        .mobile-nav a {
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            font-size: 16px;
            font-weight: 500;
            color: var(--text);
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            background: rgba(15, 27, 61, 0.05);
            color: var(--accent);
        }
        .mobile-nav a.active {
            color: var(--accent);
            font-weight: 600;
            background: var(--accent-light);
        }
        .mobile-nav .btn-primary {
            margin-top: 8px;
            justify-content: center;
        }

        /* ===== 响应式断点 ===== */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .search-box input {
                width: 100px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --header-h: 64px;
            }
            .header-nav {
                display: none;
            }
            .header-right .search-box {
                display: none;
            }
            .header-right .btn-primary {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .mobile-nav {
                display: flex;
            }
            .hero {
                min-height: 70vh;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero-stats {
                gap: 24px;
            }
            .hero-stat h3 {
                font-size: 22px;
            }
            .section {
                padding: 56px 0;
            }
            .section-header {
                margin-bottom: 36px;
            }
            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .categories-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .category-card {
                min-height: 240px;
            }
            .news-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .stat-card .num {
                font-size: 30px;
            }
            .steps-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .step-arrow {
                display: none;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .cta-section .container {
                padding: 56px 16px;
            }
            .hero-actions .btn-primary {
                padding: 12px 28px;
                font-size: 15px;
            }
        }

        @media (max-width: 520px) {
            .hero h1 {
                font-size: 1.7rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
            .hero-stats {
                flex-direction: column;
                gap: 16px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .stat-card {
                padding: 20px 12px;
            }
            .steps-grid {
                grid-template-columns: 1fr;
            }
            .section-header h2 {
                font-size: 1.5rem;
            }
            .category-card .content h3 {
                font-size: 20px;
            }
            .news-card .thumb {
                height: 160px;
            }
            .news-card .body {
                padding: 16px 18px 18px;
            }
            .faq-question {
                padding: 14px 18px;
                font-size: 15px;
            }
            .footer-grid {
                gap: 24px;
            }
        }

        /* ===== 工具类 ===== */
        .text-center {
            text-align: center;
        }
        .mt-12 {
            margin-top: 12px;
        }
        .mt-24 {
            margin-top: 24px;
        }
        .mt-40 {
            margin-top: 40px;
        }
        .gap-16 {
            gap: 16px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }

/* roulang page: article */
:root {
        --primary: #1a2a4a;
        --primary-light: #2d4a7a;
        --primary-dark: #0f1a30;
        --secondary: #d4a843;
        --secondary-light: #e8c56a;
        --accent: #e8503a;
        --accent-light: #f06a56;
        --bg: #f5f6f8;
        --bg-card: #ffffff;
        --bg-dark: #0f1a30;
        --text: #1a1a2e;
        --text-light: #6b7280;
        --text-white: #f9fafb;
        --border: #e5e7eb;
        --border-light: #f0f1f3;
        --radius-sm: 8px;
        --radius: 12px;
        --radius-lg: 20px;
        --radius-xl: 28px;
        --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
        --shadow: 0 4px 24px rgba(0,0,0,0.08);
        --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
        --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
        --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans SC', sans-serif;
        --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans SC', sans-serif;
        --max-width: 1200px;
        --content-width: 780px;
        --header-height: 72px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
    body { font-family: var(--font-base); font-size: 16px; line-height: 1.7; color: var(--text); background: var(--bg); }
    img { max-width: 100%; height: auto; display: block; }
    a { color: var(--primary); text-decoration: none; transition: var(--transition); }
    a:hover { color: var(--primary-light); }
    button { cursor: pointer; font-family: inherit; border: none; background: none; }
    input, textarea { font-family: inherit; }
    ul, ol { list-style: none; }
    h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.3; color: var(--primary); }

    .container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
    .content-container { width: 100%; max-width: var(--content-width); margin: 0 auto; padding: 0 24px; }

    /* ===== Header / Nav ===== */
    .site-header {
        position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
        background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border); height: var(--header-height);
        transition: var(--transition);
    }
    .site-header.scrolled { box-shadow: var(--shadow); }
    .header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
    .logo-text { font-size: 1.6rem; font-weight: 800; color: var(--primary); letter-spacing: -0.02em; display: flex; align-items: center; gap: 2px; }
    .logo-text span { color: var(--secondary); font-weight: 900; }
    .logo-text i { color: var(--accent); font-size: 1.2rem; margin-right: 6px; }
    .header-nav { display: flex; align-items: center; gap: 8px; }
    .header-nav a {
        padding: 8px 18px; border-radius: 50px; font-size: 0.95rem; font-weight: 500;
        color: var(--text-light); transition: var(--transition); position: relative;
    }
    .header-nav a:hover { color: var(--primary); background: rgba(26,42,74,0.06); }
    .header-nav a.active { color: var(--primary); background: rgba(26,42,74,0.08); font-weight: 600; }
    .header-nav a.active::after { content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); width: 20px; height: 3px; background: var(--secondary); border-radius: 4px; }
    .header-actions { display: flex; align-items: center; gap: 12px; }
    .header-search {
        display: flex; align-items: center; background: var(--bg); border-radius: 50px;
        padding: 0 16px; border: 1px solid var(--border); transition: var(--transition);
    }
    .header-search:focus-within { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(212,168,67,0.15); }
    .header-search input { border: none; background: transparent; padding: 8px 0; font-size: 0.9rem; color: var(--text); width: 140px; outline: none; }
    .header-search i { color: var(--text-light); font-size: 0.9rem; }
    .btn-primary {
        display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px;
        background: var(--primary); color: var(--text-white); border-radius: 50px;
        font-size: 0.95rem; font-weight: 600; transition: var(--transition); border: none;
    }
    .btn-primary:hover { background: var(--primary-light); color: var(--text-white); transform: translateY(-2px); box-shadow: var(--shadow); }
    .btn-primary i { font-size: 0.9rem; }
    .btn-secondary {
        display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px;
        background: transparent; color: var(--primary); border: 2px solid var(--primary); border-radius: 50px;
        font-size: 0.95rem; font-weight: 600; transition: var(--transition);
    }
    .btn-secondary:hover { background: var(--primary); color: var(--text-white); transform: translateY(-2px); }
    .btn-accent {
        display: inline-flex; align-items: center; gap: 8px; padding: 12px 32px;
        background: var(--accent); color: var(--text-white); border-radius: 50px;
        font-size: 1rem; font-weight: 700; transition: var(--transition); border: none;
    }
    .btn-accent:hover { background: var(--accent-light); color: var(--text-white); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
    .mobile-toggle { display: none; font-size: 1.5rem; color: var(--primary); padding: 8px; background: none; border: none; }

    /* ===== Article Hero ===== */
    .article-hero {
        position: relative; margin-top: var(--header-height); min-height: 420px;
        display: flex; align-items: flex-end; overflow: hidden;
        background: var(--bg-dark);
    }
    .article-hero-bg {
        position: absolute; inset: 0; z-index: 1;
        background-size: cover; background-position: center; background-repeat: no-repeat;
        opacity: 0.55; transition: var(--transition);
    }
    .article-hero::after {
        content: ''; position: absolute; inset: 0; z-index: 2;
        background: linear-gradient(to top, rgba(15,26,48,0.92) 0%, rgba(15,26,48,0.4) 50%, rgba(15,26,48,0.2) 100%);
    }
    .article-hero .content-container { position: relative; z-index: 3; padding-top: 80px; padding-bottom: 48px; }
    .article-hero-category {
        display: inline-block; padding: 6px 18px; border-radius: 50px;
        background: var(--secondary); color: var(--primary-dark); font-size: 0.85rem;
        font-weight: 700; letter-spacing: 0.3px; margin-bottom: 16px;
    }
    .article-hero h1 {
        font-size: 2.8rem; font-weight: 800; color: var(--text-white);
        line-height: 1.2; margin-bottom: 20px; letter-spacing: -0.02em;
        text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }
    .article-hero-meta { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; color: rgba(255,255,255,0.75); font-size: 0.9rem; }
    .article-hero-meta i { margin-right: 6px; color: var(--secondary); }
    .article-hero-meta span { display: flex; align-items: center; }

    /* ===== Article Body ===== */
    .article-section { padding: 48px 0; }
    .article-body-wrap {
        background: var(--bg-card); border-radius: var(--radius-lg);
        padding: 48px 56px; box-shadow: var(--shadow); margin-top: -40px;
        position: relative; z-index: 4;
    }
    .article-body { font-size: 1.1rem; line-height: 1.85; color: var(--text); }
    .article-body p { margin-bottom: 1.6em; }
    .article-body h2 { font-size: 1.8rem; margin-top: 2em; margin-bottom: 0.8em; color: var(--primary); }
    .article-body h3 { font-size: 1.4rem; margin-top: 1.6em; margin-bottom: 0.6em; color: var(--primary-light); }
    .article-body blockquote {
        border-left: 4px solid var(--secondary); background: var(--bg); padding: 20px 28px;
        margin: 1.6em 0; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        font-style: italic; color: var(--text-light); font-size: 1.05rem;
    }
    .article-body ul, .article-body ol { margin: 1.2em 0; padding-left: 1.8em; }
    .article-body li { margin-bottom: 0.5em; list-style: disc; }
    .article-body img { border-radius: var(--radius); margin: 1.6em 0; box-shadow: var(--shadow-sm); }
    .article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
    .article-body a:hover { color: var(--accent-light); }

    /* ===== Article Tags ===== */
    .article-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
    .article-tag {
        padding: 6px 16px; border-radius: 50px; background: var(--bg); font-size: 0.85rem;
        color: var(--text-light); border: 1px solid var(--border); transition: var(--transition);
    }
    .article-tag:hover { background: var(--primary); color: var(--text-white); border-color: var(--primary); }

    /* ===== Article Nav ===== */
    .article-nav-wrap { display: flex; justify-content: space-between; gap: 24px; margin-top: 40px; padding-top: 32px; border-top: 2px solid var(--border); }
    .article-nav-item { flex: 1; padding: 20px 24px; border-radius: var(--radius); background: var(--bg); transition: var(--transition); border: 1px solid var(--border); }
    .article-nav-item:hover { background: var(--bg-card); border-color: var(--secondary); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
    .article-nav-item .label { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
    .article-nav-item .title { font-size: 1rem; font-weight: 600; color: var(--primary); }
    .article-nav-item.next { text-align: right; }

    /* ===== Related Posts ===== */
    .related-section { padding: 64px 0; background: var(--bg); }
    .related-header { text-align: center; margin-bottom: 48px; }
    .related-header h2 { font-size: 2rem; font-weight: 800; color: var(--primary); }
    .related-header p { color: var(--text-light); margin-top: 8px; font-size: 1.05rem; }
    .related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .related-card {
        background: var(--bg-card); border-radius: var(--radius); overflow: hidden;
        box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border);
    }
    .related-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
    .related-card-img { height: 180px; background-size: cover; background-position: center; }
    .related-card-body { padding: 20px; }
    .related-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
    .related-card-body h3 a { color: var(--primary); }
    .related-card-body h3 a:hover { color: var(--accent); }
    .related-card-body .meta { font-size: 0.8rem; color: var(--text-light); display: flex; gap: 12px; }
    .related-card-body .meta i { margin-right: 4px; }

    /* ===== CTA ===== */
    .cta-section {
        padding: 80px 0; background: var(--bg-dark); position: relative; overflow: hidden;
        background-image: url('/assets/images/backpic/back-2.png'); background-size: cover; background-position: center; background-attachment: fixed;
    }
    .cta-section::before { content: ''; position: absolute; inset: 0; background: rgba(15,26,48,0.85); }
    .cta-section .content-container { position: relative; z-index: 2; text-align: center; }
    .cta-section h2 { font-size: 2.2rem; font-weight: 800; color: var(--text-white); margin-bottom: 16px; }
    .cta-section p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto 32px; }
    .cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

    /* ===== Not Found ===== */
    .not-found-wrap { text-align: center; padding: 80px 20px; }
    .not-found-wrap i { font-size: 4rem; color: var(--text-light); margin-bottom: 24px; }
    .not-found-wrap h2 { font-size: 2rem; color: var(--primary); margin-bottom: 12px; }
    .not-found-wrap p { color: var(--text-light); margin-bottom: 24px; font-size: 1.1rem; }

    /* ===== Footer ===== */
    .site-footer {
        background: var(--bg-dark); color: rgba(255,255,255,0.75); padding: 60px 0 0;
    }
    .site-footer .container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
    .footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    .footer-brand .logo-text { font-size: 1.6rem; color: var(--text-white); margin-bottom: 16px; }
    .footer-brand p { font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 20px; max-width: 360px; }
    .footer-social { display: flex; gap: 12px; }
    .footer-social a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); font-size: 1.1rem; transition: var(--transition); }
    .footer-social a:hover { background: var(--secondary); color: var(--primary-dark); transform: translateY(-3px); }
    .footer-col h4 { font-size: 1.05rem; font-weight: 700; color: var(--text-white); margin-bottom: 20px; }
    .footer-col a { display: block; padding: 6px 0; font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
    .footer-col a:hover { color: var(--secondary); padding-left: 6px; }
    .footer-col a i { width: 20px; margin-right: 6px; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
    .footer-bottom a { color: var(--secondary); }
    .footer-bottom a:hover { text-decoration: underline; }

    /* ===== Responsive ===== */
    @media (max-width: 1024px) {
        .related-grid { grid-template-columns: repeat(2, 1fr); }
        .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
        .article-hero h1 { font-size: 2.2rem; }
        .article-body-wrap { padding: 36px 32px; }
    }
    @media (max-width: 768px) {
        .header-nav { display: none; }
        .header-actions .btn-primary { display: none; }
        .mobile-toggle { display: block; }
        .header-nav.open { display: flex; flex-direction: column; position: absolute; top: var(--header-height); left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); padding: 16px 24px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); gap: 4px; }
        .header-nav.open a { width: 100%; padding: 12px 16px; border-radius: var(--radius-sm); }
        .header-search input { width: 100px; }
        .article-hero { min-height: 320px; }
        .article-hero h1 { font-size: 1.6rem; }
        .article-hero .content-container { padding-top: 40px; padding-bottom: 32px; }
        .article-body-wrap { padding: 24px 20px; margin-top: -20px; border-radius: var(--radius); }
        .article-body { font-size: 1rem; }
        .article-body h2 { font-size: 1.4rem; }
        .article-body h3 { font-size: 1.2rem; }
        .article-nav-wrap { flex-direction: column; gap: 16px; }
        .article-nav-item.next { text-align: left; }
        .related-grid { grid-template-columns: 1fr; }
        .footer-grid { grid-template-columns: 1fr; gap: 24px; }
        .footer-bottom { flex-direction: column; text-align: center; }
        .cta-section h2 { font-size: 1.6rem; }
        .cta-actions { flex-direction: column; align-items: center; }
    }
    @media (max-width: 520px) {
        .container { padding: 0 16px; }
        .content-container { padding: 0 16px; }
        .article-hero h1 { font-size: 1.3rem; }
        .article-hero-meta { font-size: 0.8rem; gap: 12px; }
        .article-body-wrap { padding: 16px; }
        .article-body { font-size: 0.95rem; }
        .related-card-img { height: 140px; }
        .header-search input { width: 80px; }
    }

/* roulang page: category1 */
/* ===== Design Variables ===== */
        :root {
            --primary: #DC2626;
            --primary-dark: #B91C1C;
            --primary-light: #FEE2E2;
            --primary-gradient: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
            --secondary: #1E293B;
            --secondary-light: #334155;
            --accent: #F59E0B;
            --accent-light: #FDE68A;
            --bg: #F8FAFC;
            --bg-alt: #F1F5F9;
            --bg-dark: #0F172A;
            --card-bg: #FFFFFF;
            --text: #0F172A;
            --text-light: #64748B;
            --text-white: #FFFFFF;
            --border: #E2E8F0;
            --border-light: #F1F5F9;
            --radius: 12px;
            --radius-sm: 8px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.14);
            --shadow-glow: 0 0 40px rgba(220, 38, 38, 0.20);
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            --nav-height: 76px;
            --max-width: 1200px;
            --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }

        /* ===== Reset & Base ===== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-family);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text);
            background: var(--bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--primary-dark);
        }
        a:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-sm);
        }
        button,
        input,
        textarea,
        select {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
        }
        button {
            cursor: pointer;
            background: none;
        }
        button:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            border-radius: 4px;
        }
        ul,
        ol {
            list-style: none;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            font-weight: 700;
            color: var(--text);
        }
        h1 {
            font-size: 2.8rem;
        }
        h2 {
            font-size: 2.2rem;
        }
        h3 {
            font-size: 1.4rem;
        }
        h4 {
            font-size: 1.15rem;
        }

        /* ===== Container ===== */
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        /* ===== Header & Navigation ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: var(--nav-height);
            background: rgba(15, 23, 42, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: background var(--transition), box-shadow var(--transition);
        }
        .site-header.scrolled {
            background: rgba(15, 23, 42, 0.98);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height);
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--primary-gradient);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            font-weight: 800;
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
            flex-shrink: 0;
        }
        .logo-text {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-white);
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 2px;
        }
        .logo-text span {
            color: var(--primary);
        }
        .logo-text:hover {
            color: var(--text-white);
        }

        .header-nav {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .header-nav a {
            padding: 8px 18px;
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.95rem;
            font-weight: 500;
            transition: all var(--transition);
            position: relative;
        }
        .header-nav a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }
        .header-nav a.active {
            color: #fff;
            background: rgba(220, 38, 38, 0.25);
            box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.3);
        }
        .header-nav a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .header-search {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 0 16px;
            height: 40px;
            transition: all var(--transition);
            width: 200px;
        }
        .header-search:focus-within {
            background: rgba(255, 255, 255, 0.14);
            border-color: var(--primary);
            width: 240px;
        }
        .header-search i {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.9rem;
            margin-right: 10px;
        }
        .header-search input {
            background: transparent;
            border: none;
            color: #fff;
            font-size: 0.9rem;
            width: 100%;
            height: 100%;
        }
        .header-search input::placeholder {
            color: rgba(255, 255, 255, 0.35);
        }
        .header-search input:focus {
            outline: none;
        }
        .btn-subscribe {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 9px 22px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            background: var(--primary-gradient);
            color: #fff;
            box-shadow: 0 4px 16px rgba(220, 38, 38, 0.35);
            transition: all var(--transition);
            border: none;
            white-space: nowrap;
        }
        .btn-subscribe:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(220, 38, 38, 0.45);
            color: #fff;
        }
        .btn-subscribe:active {
            transform: translateY(0);
        }

        /* Mobile menu trigger */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 8px;
            cursor: pointer;
            background: none;
            border: none;
        }
        .menu-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: all var(--transition);
        }
        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ===== Hero Banner ===== */
        .hero-banner {
            position: relative;
            min-height: 560px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-dark);
            margin-top: var(--nav-height);
            overflow: hidden;
        }
        .hero-banner .hero-bg {
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-1.png') center center / cover no-repeat;
            opacity: 0.6;
            transform: scale(1.05);
            transition: transform 8s ease;
        }
        .hero-banner:hover .hero-bg {
            transform: scale(1);
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(220, 38, 38, 0.25) 100%);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 60px 24px;
            max-width: 800px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 18px;
            border-radius: 40px;
            background: rgba(220, 38, 38, 0.2);
            border: 1px solid rgba(220, 38, 38, 0.3);
            color: var(--accent-light);
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 24px;
            backdrop-filter: blur(4px);
        }
        .hero-badge i {
            font-size: 0.75rem;
            color: var(--primary);
        }
        .hero-content h1 {
            font-size: 3.6rem;
            font-weight: 800;
            color: var(--text-white);
            letter-spacing: -1px;
            margin-bottom: 16px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }
        .hero-content h1 span {
            color: var(--primary);
            position: relative;
        }
        .hero-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 620px;
            margin: 0 auto 32px;
            line-height: 1.8;
        }
        .hero-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .hero-actions .btn-primary {
            padding: 14px 36px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            background: var(--primary-gradient);
            color: #fff;
            box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: none;
        }
        .hero-actions .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(220, 38, 38, 0.5);
            color: #fff;
        }
        .hero-actions .btn-secondary {
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .hero-actions .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            border-color: rgba(255, 255, 255, 0.4);
        }

        /* ===== Section Common ===== */
        .section {
            padding: 80px 0;
        }
        .section-alt {
            background: var(--bg-alt);
        }
        .section-dark {
            background: var(--bg-dark);
            color: var(--text-white);
        }
        .section-dark h2,
        .section-dark h3 {
            color: var(--text-white);
        }
        .section-header {
            text-align: center;
            margin-bottom: 52px;
        }
        .section-header h2 {
            margin-bottom: 12px;
            position: relative;
        }
        .section-header h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--primary-gradient);
            border-radius: 2px;
            margin: 16px auto 0;
        }
        .section-header p {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .section-dark .section-header p {
            color: rgba(255, 255, 255, 0.6);
        }

        /* ===== Sport Tags / Categories ===== */
        .sport-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: -20px;
            position: relative;
            z-index: 3;
            padding: 0 24px;
        }
        .sport-tag {
            padding: 10px 28px;
            border-radius: 30px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            color: var(--text);
            font-weight: 600;
            font-size: 0.95rem;
            transition: all var(--transition);
            box-shadow: var(--shadow);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .sport-tag:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        .sport-tag.active {
            background: var(--primary-gradient);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 8px 24px rgba(220, 38, 38, 0.35);
        }
        .sport-tag i {
            font-size: 0.9rem;
        }

        /* ===== Card Grid ===== */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .card-grid.col-2 {
            grid-template-columns: repeat(2, 1fr);
        }
        .card-grid.col-4 {
            grid-template-columns: repeat(4, 1fr);
        }

        /* ===== Event Card ===== */
        .event-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all var(--transition);
            border: 1px solid var(--border-light);
            display: flex;
            flex-direction: column;
        }
        .event-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--border);
        }
        .event-card .card-img {
            position: relative;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            background: var(--bg-alt);
        }
        .event-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .event-card:hover .card-img img {
            transform: scale(1.06);
        }
        .event-card .card-img .card-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            padding: 4px 14px;
            border-radius: 20px;
            background: rgba(220, 38, 38, 0.9);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            backdrop-filter: blur(4px);
        }
        .event-card .card-img .card-badge.live {
            background: rgba(245, 158, 11, 0.95);
            animation: pulse-badge 1.8s ease-in-out infinite;
        }
        @keyframes pulse-badge {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.65;
            }
        }
        .event-card .card-body {
            padding: 20px 22px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .event-card .card-body h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 6px;
            transition: color var(--transition);
        }
        .event-card:hover .card-body h3 {
            color: var(--primary);
        }
        .event-card .card-body .meta {
            display: flex;
            align-items: center;
            gap: 14px;
            color: var(--text-light);
            font-size: 0.85rem;
            margin-bottom: 10px;
        }
        .event-card .card-body .meta span {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .event-card .card-body .desc {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 14px;
            flex: 1;
        }
        .event-card .card-body .card-footer-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            transition: gap var(--transition);
            margin-top: auto;
        }
        .event-card .card-body .card-footer-link i {
            font-size: 0.8rem;
            transition: transform var(--transition);
        }
        .event-card:hover .card-body .card-footer-link i {
            transform: translateX(4px);
        }

        /* ===== Schedule / Timeline ===== */
        .schedule-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 800px;
            margin: 0 auto;
        }
        .schedule-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 18px 24px;
            background: var(--card-bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
            transition: all var(--transition);
        }
        .schedule-item:hover {
            transform: translateX(4px);
            border-color: var(--border);
            box-shadow: var(--shadow-md);
        }
        .schedule-item .time {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--primary);
            min-width: 60px;
            text-align: center;
        }
        .schedule-item .info {
            flex: 1;
        }
        .schedule-item .info h4 {
            font-size: 1.05rem;
            margin-bottom: 2px;
        }
        .schedule-item .info p {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .schedule-item .status {
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            background: var(--primary-light);
            color: var(--primary);
        }
        .schedule-item .status.upcoming {
            background: #E0F2FE;
            color: #0369A1;
        }
        .schedule-item .status.live {
            background: #FEF3C7;
            color: #B45309;
        }

        /* ===== Stats / Counters ===== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            text-align: center;
        }
        .stat-item {
            padding: 32px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(8px);
            transition: all var(--transition);
        }
        .stat-item:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-4px);
        }
        .stat-item .number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 6px;
        }
        .stat-item .label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            font-weight: 500;
        }

        /* ===== News / Article List ===== */
        .news-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
        }
        .news-card {
            display: flex;
            gap: 20px;
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 20px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
            transition: all var(--transition);
        }
        .news-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: var(--border);
        }
        .news-card .news-img {
            width: 160px;
            min-height: 120px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
            background: var(--bg-alt);
        }
        .news-card .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .news-card:hover .news-img img {
            transform: scale(1.06);
        }
        .news-card .news-body {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .news-card .news-body .tag {
            display: inline-block;
            padding: 2px 12px;
            border-radius: 12px;
            background: var(--primary-light);
            color: var(--primary);
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 8px;
            align-self: flex-start;
        }
        .news-card .news-body h4 {
            font-size: 1.05rem;
            margin-bottom: 6px;
            transition: color var(--transition);
        }
        .news-card:hover .news-body h4 {
            color: var(--primary);
        }
        .news-card .news-body p {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.6;
            flex: 1;
        }
        .news-card .news-body .date {
            color: var(--text-light);
            font-size: 0.8rem;
            margin-top: 8px;
        }

        /* ===== FAQ ===== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: var(--card-bg);
            border-radius: var(--radius);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition);
            box-shadow: var(--shadow);
        }
        .faq-item:hover {
            border-color: var(--border);
        }
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 24px;
            font-weight: 600;
            font-size: 1rem;
            color: var(--text);
            background: transparent;
            text-align: left;
            cursor: pointer;
            transition: all var(--transition);
            gap: 16px;
        }
        .faq-question:hover {
            color: var(--primary);
        }
        .faq-question i {
            font-size: 0.85rem;
            color: var(--text-light);
            transition: transform var(--transition);
            flex-shrink: 0;
        }
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
            color: var(--primary);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition);
            padding: 0 24px;
            color: var(--text-light);
            line-height: 1.7;
            font-size: 0.95rem;
        }
        .faq-item.active .faq-answer {
            max-height: 240px;
            padding: 0 24px 20px;
        }

        /* ===== CTA ===== */
        .cta-section {
            background: var(--primary-gradient);
            border-radius: var(--radius-lg);
            padding: 64px 48px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-2.png') center center / cover no-repeat;
            opacity: 0.12;
            mix-blend-mode: overlay;
        }
        .cta-section h2 {
            color: #fff;
            font-size: 2.2rem;
            margin-bottom: 12px;
            position: relative;
        }
        .cta-section p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.1rem;
            max-width: 520px;
            margin: 0 auto 28px;
            position: relative;
        }
        .cta-section .btn-cta {
            padding: 16px 44px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.05rem;
            background: #fff;
            color: var(--primary);
            border: none;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            position: relative;
        }
        .cta-section .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
            color: var(--primary-dark);
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--secondary);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-brand .logo-text {
            font-size: 1.6rem;
            margin-bottom: 12px;
            display: inline-block;
        }
        .footer-brand p {
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 18px;
            color: rgba(255, 255, 255, 0.55);
            max-width: 360px;
        }
        .footer-social {
            display: flex;
            gap: 12px;
        }
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            color: rgba(255, 255, 255, 0.5);
            font-size: 1.1rem;
            transition: all var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .footer-social a:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            transform: translateY(-2px);
        }
        .footer-col h4 {
            color: #fff;
            font-size: 1.05rem;
            margin-bottom: 18px;
            font-weight: 700;
        }
        .footer-col a {
            display: block;
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.95rem;
            padding: 5px 0;
            transition: all var(--transition);
        }
        .footer-col a:hover {
            color: var(--primary);
            padding-left: 4px;
        }
        .footer-col a i {
            width: 20px;
            margin-right: 4px;
        }
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 0;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.35);
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.45);
        }
        .footer-bottom a:hover {
            color: var(--primary);
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .card-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .card-grid.col-4 {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .news-list {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero-content h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            :root {
                --nav-height: 64px;
            }
            .header-nav {
                position: fixed;
                top: var(--nav-height);
                left: 0;
                right: 0;
                background: rgba(15, 23, 42, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 16px 24px;
                gap: 4px;
                transform: translateY(-110%);
                opacity: 0;
                transition: all var(--transition);
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
                pointer-events: none;
            }
            .header-nav.open {
                transform: translateY(0);
                opacity: 1;
                pointer-events: auto;
            }
            .header-nav a {
                padding: 12px 16px;
                font-size: 1.05rem;
                width: 100%;
                border-radius: 8px;
            }
            .header-nav a.active::after {
                display: none;
            }
            .header-nav a.active {
                background: rgba(220, 38, 38, 0.2);
            }
            .menu-toggle {
                display: flex;
            }
            .header-search {
                width: 140px;
            }
            .header-search:focus-within {
                width: 160px;
            }
            .btn-subscribe span {
                display: none;
            }
            .btn-subscribe {
                padding: 9px 14px;
            }

            .hero-banner {
                min-height: 420px;
            }
            .hero-content h1 {
                font-size: 2.2rem;
            }
            .hero-content p {
                font-size: 1rem;
            }
            .hero-actions .btn-primary,
            .hero-actions .btn-secondary {
                padding: 12px 24px;
                font-size: 0.9rem;
            }

            .section {
                padding: 48px 0;
            }
            .section-header {
                margin-bottom: 32px;
            }
            .section-header h2 {
                font-size: 1.8rem;
            }

            .card-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .card-grid.col-2 {
                grid-template-columns: 1fr;
            }
            .card-grid.col-4 {
                grid-template-columns: 1fr;
            }

            .news-card {
                flex-direction: column;
            }
            .news-card .news-img {
                width: 100%;
                height: 180px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .stat-item .number {
                font-size: 2rem;
            }

            .schedule-item {
                flex-wrap: wrap;
                gap: 12px;
                padding: 14px 18px;
            }
            .schedule-item .time {
                min-width: 50px;
                font-size: 1rem;
            }

            .cta-section {
                padding: 40px 24px;
                border-radius: var(--radius);
            }
            .cta-section h2 {
                font-size: 1.6rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .sport-tags {
                gap: 8px;
            }
            .sport-tag {
                padding: 8px 18px;
                font-size: 0.85rem;
            }

            .faq-question {
                padding: 16px 18px;
                font-size: 0.95rem;
            }
            .faq-answer {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .hero-content h1 {
                font-size: 1.8rem;
            }
            .hero-content {
                padding: 40px 16px;
            }
            .hero-banner {
                min-height: 360px;
            }
            .sport-tag {
                padding: 6px 14px;
                font-size: 0.8rem;
            }
            .header-right .btn-subscribe {
                padding: 8px 12px;
                font-size: 0.8rem;
            }
            .header-search {
                width: 100px;
            }
            .header-search:focus-within {
                width: 130px;
            }
            .stat-item {
                padding: 20px 12px;
            }
            .stat-item .number {
                font-size: 1.6rem;
            }
            .stat-item .label {
                font-size: 0.85rem;
            }
            .cta-section h2 {
                font-size: 1.3rem;
            }
            .cta-section .btn-cta {
                padding: 12px 28px;
                font-size: 0.9rem;
            }
        }

        /* ===== Utility Animations ===== */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== Scrollbar ===== */
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-alt);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--text-light);
            border-radius: 3px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--secondary-light);
        }

        /* ===== Selection ===== */
        ::selection {
            background: var(--primary);
            color: #fff;
        }

/* roulang page: category2 */
/* ===== Design Variables ===== */
        :root {
            --primary: #e63946;
            --primary-dark: #c1121f;
            --primary-light: #ff6b6b;
            --secondary: #1d3557;
            --secondary-light: #457b9d;
            --accent: #f4a261;
            --accent-light: #fae1b0;
            --bg-body: #f8f9fa;
            --bg-white: #ffffff;
            --bg-dark: #0d1b2a;
            --bg-card: #ffffff;
            --text-primary: #1a1a2e;
            --text-secondary: #4a4a6a;
            --text-muted: #8a8aaa;
            --text-light: #f0f0f5;
            --border-color: #e8e8f0;
            --border-light: #f0f0f8;
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
            --shadow-md: 0 6px 24px rgba(0,0,0,0.10);
            --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);
            --shadow-hover: 0 12px 36px rgba(230,57,70,0.15);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --spacing-section: 80px;
            --spacing-element: 24px;
            --max-width: 1280px;
        }

        /* ===== Reset & Base ===== */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-primary);
            background: var(--bg-body);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a { color: var(--primary); text-decoration: none; transition: var(--transition); }
        a:hover { color: var(--primary-dark); }
        img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-sm); }
        button, input, textarea { font-family: inherit; font-size: inherit; outline: none; border: none; }
        ul, ol { list-style: none; }
        h1, h2, h3, h4, h5, h6 { line-height: 1.25; font-weight: 700; color: var(--text-primary); }

        /* ===== Container ===== */
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== Header & Navigation ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-light);
            box-shadow: 0 2px 20px rgba(0,0,0,0.04);
            transition: var(--transition);
        }
        .site-header.scrolled { background: rgba(255,255,255,0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
            gap: 16px;
        }
        .logo-text {
            font-size: 26px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 2px;
        }
        .logo-text span { color: var(--primary); }
        .logo-text i { font-size: 22px; color: var(--primary); margin-right: 6px; }
        .logo-text:hover { color: var(--text-primary); }

        .header-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 1;
            justify-content: center;
        }
        .header-nav a {
            padding: 8px 18px;
            border-radius: 40px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition);
            position: relative;
            white-space: nowrap;
        }
        .header-nav a:hover { color: var(--primary); background: rgba(230,57,70,0.06); }
        .header-nav a.active {
            color: #fff;
            background: var(--primary);
            box-shadow: 0 4px 14px rgba(230,57,70,0.30);
        }
        .header-nav a.active:hover { color: #fff; background: var(--primary-dark); }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .search-box {
            display: flex;
            align-items: center;
            background: var(--bg-body);
            border-radius: 40px;
            padding: 0 16px;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .search-box:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(230,57,70,0.10); }
        .search-box input {
            background: transparent;
            border: none;
            padding: 8px 8px;
            font-size: 14px;
            color: var(--text-primary);
            width: 140px;
        }
        .search-box input::placeholder { color: var(--text-muted); }
        .search-box button {
            background: transparent;
            color: var(--text-muted);
            cursor: pointer;
            padding: 6px;
            font-size: 15px;
            transition: var(--transition);
        }
        .search-box button:hover { color: var(--primary); }
        .btn-header {
            padding: 8px 22px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid var(--primary);
            background: transparent;
            color: var(--primary);
        }
        .btn-header:hover { background: var(--primary); color: #fff; }
        .btn-header-primary {
            background: var(--primary);
            color: #fff;
            border: 2px solid var(--primary);
        }
        .btn-header-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
        .mobile-toggle {
            display: none;
            font-size: 24px;
            color: var(--text-primary);
            background: none;
            cursor: pointer;
            padding: 4px;
        }

        /* ===== Hero / Banner ===== */
        .category-hero {
            padding: 140px 0 70px;
            background: var(--bg-dark);
            position: relative;
            overflow: hidden;
            min-height: 360px;
            display: flex;
            align-items: center;
        }
        .category-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-2.png') center center / cover no-repeat;
            opacity: 0.25;
            transform: scale(1.02);
        }
        .category-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.72) 100%);
        }
        .category-hero .container { position: relative; z-index: 2; text-align: center; }
        .category-hero h1 {
            font-size: 48px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }
        .category-hero h1 span { color: var(--primary-light); }
        .category-hero p {
            font-size: 18px;
            color: rgba(255,255,255,0.75);
            max-width: 640px;
            margin: 0 auto 24px;
            line-height: 1.6;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(230,57,70,0.20);
            border: 1px solid rgba(230,57,70,0.30);
            padding: 6px 20px;
            border-radius: 40px;
            color: var(--accent-light);
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 20px;
        }
        .hero-badge i { color: var(--primary-light); }

        /* ===== Section Common ===== */
        .section {
            padding: var(--spacing-section) 0;
        }
        .section-alt { background: var(--bg-white); }
        .section-title {
            font-size: 32px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 12px;
            color: var(--text-primary);
            letter-spacing: -0.5px;
        }
        .section-sub {
            text-align: center;
            color: var(--text-muted);
            max-width: 560px;
            margin: 0 auto 48px;
            font-size: 16px;
        }
        .section-title-left { text-align: left; margin-bottom: 8px; }
        .section-sub-left { text-align: left; margin: 0 0 32px; }

        /* ===== Category Tags ===== */
        .tag-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 40px;
        }
        .tag-filter a {
            padding: 8px 24px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            background: var(--bg-body);
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .tag-filter a:hover { color: var(--primary); border-color: var(--primary); background: rgba(230,57,70,0.04); }
        .tag-filter a.active { color: #fff; background: var(--primary); border-color: var(--primary); box-shadow: 0 4px 14px rgba(230,57,70,0.25); }

        /* ===== News Grid ===== */
        .news-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 32px;
        }
        .news-list { display: flex; flex-direction: column; gap: 24px; }
        .news-card {
            display: flex;
            gap: 20px;
            background: var(--bg-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid var(--border-light);
        }
        .news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
        .news-card .card-img {
            width: 240px;
            min-height: 160px;
            flex-shrink: 0;
            overflow: hidden;
            position: relative;
        }
        .news-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .news-card:hover .card-img img { transform: scale(1.05); }
        .news-card .card-body {
            padding: 18px 20px 18px 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .news-card .card-body .tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            color: var(--primary);
            background: rgba(230,57,70,0.08);
            padding: 2px 12px;
            border-radius: 20px;
            margin-bottom: 8px;
            width: fit-content;
        }
        .news-card .card-body h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .news-card .card-body h3 a { color: var(--text-primary); }
        .news-card .card-body h3 a:hover { color: var(--primary); }
        .news-card .card-body p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-card .card-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 10px;
            font-size: 13px;
            color: var(--text-muted);
        }
        .news-card .card-meta i { margin-right: 4px; }

        /* ===== Sidebar ===== */
        .sidebar { display: flex; flex-direction: column; gap: 28px; }
        .sidebar-widget {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 24px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }
        .sidebar-widget h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--border-light);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-widget h4 i { color: var(--primary); }
        .rank-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-light);
        }
        .rank-list li:last-child { border-bottom: none; }
        .rank-num {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--bg-body);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
            color: var(--text-muted);
            flex-shrink: 0;
        }
        .rank-list li:nth-child(1) .rank-num,
        .rank-list li:nth-child(2) .rank-num,
        .rank-list li:nth-child(3) .rank-num {
            background: var(--primary);
            color: #fff;
        }
        .rank-list li a {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.4;
            flex: 1;
        }
        .rank-list li a:hover { color: var(--primary); }
        .rank-list li .hot-icon { color: var(--accent); font-size: 14px; }

        /* ===== Feature Story ===== */
        .feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }
        .feature-card {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            min-height: 320px;
            display: flex;
            align-items: flex-end;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        .feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
        .feature-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .feature-card .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 70%, transparent 100%);
        }
        .feature-card .feature-body {
            position: relative;
            z-index: 2;
            padding: 28px 24px;
            color: #fff;
        }
        .feature-card .feature-body .tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            color: #fff;
            background: var(--primary);
            padding: 2px 14px;
            border-radius: 20px;
            margin-bottom: 10px;
        }
        .feature-card .feature-body h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 6px;
            color: #fff;
        }
        .feature-card .feature-body p {
            font-size: 14px;
            color: rgba(255,255,255,0.75);
            line-height: 1.5;
        }
        .feature-card.feature-lg { min-height: 400px; grid-column: 1 / -1; }
        .feature-card.feature-lg .feature-body h3 { font-size: 28px; }

        /* ===== Stats Counter ===== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .stat-item {
            text-align: center;
            padding: 32px 20px;
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        .stat-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
        .stat-item .num {
            font-size: 42px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
        }
        .stat-item .num span { font-size: 28px; }
        .stat-item .label {
            font-size: 15px;
            color: var(--text-secondary);
            margin-top: 8px;
            font-weight: 500;
        }
        .stat-item .icon-stat {
            font-size: 32px;
            color: var(--secondary-light);
            margin-bottom: 12px;
        }

        /* ===== Expert Column ===== */
        .expert-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .expert-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 28px 24px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            text-align: center;
        }
        .expert-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
        .expert-card .avatar {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: var(--bg-body);
            margin: 0 auto 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--primary);
            border: 3px solid var(--border-light);
        }
        .expert-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
        .expert-card .role { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
        .expert-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
        .expert-card .expert-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            justify-content: center;
            margin-top: 14px;
        }
        .expert-card .expert-tags span {
            font-size: 12px;
            padding: 2px 12px;
            border-radius: 20px;
            background: var(--bg-body);
            color: var(--text-muted);
            border: 1px solid var(--border-color);
        }

        /* ===== CTA Section ===== */
        .cta-section {
            background: var(--bg-dark);
            padding: 70px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-3.png') center center / cover no-repeat;
            opacity: 0.12;
        }
        .cta-section .container { position: relative; z-index: 2; }
        .cta-section h2 {
            font-size: 34px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
        }
        .cta-section p {
            font-size: 17px;
            color: rgba(255,255,255,0.65);
            max-width: 520px;
            margin: 0 auto 28px;
        }
        .cta-form {
            display: flex;
            max-width: 480px;
            margin: 0 auto;
            gap: 10px;
        }
        .cta-form input {
            flex: 1;
            padding: 14px 20px;
            border-radius: 40px;
            border: 1px solid rgba(255,255,255,0.15);
            background: rgba(255,255,255,0.08);
            color: #fff;
            font-size: 15px;
        }
        .cta-form input::placeholder { color: rgba(255,255,255,0.40); }
        .cta-form input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(230,57,70,0.20); }
        .cta-form button {
            padding: 14px 32px;
            border-radius: 40px;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            white-space: nowrap;
        }
        .cta-form button:hover { background: var(--primary-dark); transform: translateY(-2px); }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--bg-dark);
            color: rgba(255,255,255,0.70);
            padding: 60px 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .footer-brand .logo-text { color: #fff; margin-bottom: 14px; display: inline-block; }
        .footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
        .footer-social { display: flex; gap: 12px; }
        .footer-social a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255,255,255,0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.50);
            font-size: 16px;
            transition: var(--transition);
        }
        .footer-social a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
        .footer-col h4 {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }
        .footer-col a {
            display: block;
            font-size: 14px;
            color: rgba(255,255,255,0.55);
            padding: 5px 0;
            transition: var(--transition);
        }
        .footer-col a:hover { color: var(--primary-light); padding-left: 4px; }
        .footer-col a i { width: 20px; }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            font-size: 13px;
            color: rgba(255,255,255,0.35);
            flex-wrap: wrap;
            gap: 8px;
        }
        .footer-bottom a { color: rgba(255,255,255,0.50); }
        .footer-bottom a:hover { color: var(--primary-light); }

        /* ===== Breadcrumb ===== */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-muted);
            padding: 20px 0 0;
            flex-wrap: wrap;
        }
        .breadcrumb a { color: var(--text-muted); }
        .breadcrumb a:hover { color: var(--primary); }
        .breadcrumb span { color: var(--text-secondary); }
        .breadcrumb i { font-size: 12px; color: var(--border-color); }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .news-grid { grid-template-columns: 1fr; }
            .feature-grid { grid-template-columns: 1fr; }
            .feature-card.feature-lg { grid-column: 1; }
            .expert-grid { grid-template-columns: 1fr 1fr; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .header-inner { height: 60px; }
            .header-nav {
                position: fixed;
                top: 60px;
                left: 0;
                width: 100%;
                background: rgba(255,255,255,0.98);
                backdrop-filter: blur(16px);
                flex-direction: column;
                padding: 16px 20px;
                gap: 6px;
                box-shadow: 0 12px 40px rgba(0,0,0,0.12);
                transform: translateY(-120%);
                opacity: 0;
                transition: var(--transition);
                border-bottom: 1px solid var(--border-light);
                z-index: 999;
            }
            .header-nav.open { transform: translateY(0); opacity: 1; }
            .header-nav a { width: 100%; text-align: center; padding: 10px 0; }
            .mobile-toggle { display: block; }
            .header-actions .search-box { display: none; }
            .header-actions .btn-header { display: none; }
            .category-hero { padding: 110px 0 50px; min-height: 280px; }
            .category-hero h1 { font-size: 30px; }
            .category-hero p { font-size: 15px; }
            .section { padding: 50px 0; }
            .section-title { font-size: 26px; }
            .news-card { flex-direction: column; }
            .news-card .card-img { width: 100%; min-height: 180px; }
            .news-card .card-body { padding: 16px; }
            .expert-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .stat-item .num { font-size: 32px; }
            .footer-grid { grid-template-columns: 1fr; gap: 24px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .cta-form { flex-direction: column; }
            .feature-card.feature-lg { min-height: 300px; }
            .feature-card { min-height: 260px; }
            .feature-card .feature-body h3 { font-size: 18px; }
            .feature-card.feature-lg .feature-body h3 { font-size: 22px; }
            .breadcrumb { font-size: 13px; }
        }

        @media (max-width: 520px) {
            .container { padding: 0 16px; }
            .category-hero h1 { font-size: 24px; }
            .section-title { font-size: 22px; }
            .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
            .stat-item { padding: 20px 12px; }
            .stat-item .num { font-size: 28px; }
            .tag-filter a { padding: 6px 16px; font-size: 13px; }
            .news-card .card-body h3 { font-size: 16px; }
            .expert-card { padding: 20px 16px; }
            .cta-section h2 { font-size: 26px; }
        }

        /* ===== Utilities ===== */
        .text-center { text-align: center; }
        .mt-12 { margin-top: 12px; }
        .mb-8 { margin-bottom: 8px; }
        .gap-16 { gap: 16px; }
        .flex-center { display: flex; align-items: center; justify-content: center; }
        .badge-primary {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            font-size: 12px;
            padding: 2px 14px;
            border-radius: 20px;
            font-weight: 600;
        }
        .badge-outline {
            display: inline-block;
            border: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 12px;
            padding: 2px 14px;
            border-radius: 20px;
            font-weight: 500;
        }
        .view-all {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 15px;
            font-weight: 600;
            color: var(--primary);
            transition: var(--transition);
        }
        .view-all:hover { gap: 12px; color: var(--primary-dark); }
        .section-header-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 28px;
        }
        .section-header-flex .section-title-left { margin-bottom: 0; }
