/* roulang page: index */
:root {
            --brand-red: #dc2626;
            --brand-red-dark: #b91c1c;
            --brand-red-light: #fef2f2;
            --gold: #d97706;
            --gold-light: #fef3c7;
            --surface: #ffffff;
            --surface-alt: #f8fafc;
            --surface-dark: #1e293b;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --text-muted: #94a3b8;
            --border: #e2e8f0;
            --border-light: #f1f5f9;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
            --shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 4px 10px rgba(0,0,0,0.05);
            --shadow-xl: 0 20px 40px rgba(0,0,0,0.12);
            --radius-sm: 6px;
            --radius: 10px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --transition: 0.2s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: #fafbfc;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--brand-red);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .container-wide {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 导航卡片化面板 */
        .nav-panel {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            padding: 10px 16px;
            gap: 8px;
            flex-wrap: wrap;
            position: relative;
            z-index: 100;
            border: 1px solid var(--border-light);
        }
        .nav-logo {
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--brand-red);
            white-space: nowrap;
            letter-spacing: -0.01em;
            flex-shrink: 0;
            padding: 6px 4px;
        }
        .nav-logo:hover {
            color: var(--brand-red-dark);
        }
        .nav-item-card {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 10px 16px;
            border-radius: var(--radius);
            background: var(--surface-alt);
            color: var(--text-primary);
            font-weight: 500;
            font-size: 0.925rem;
            transition: all var(--transition);
            white-space: nowrap;
            border: 1px solid transparent;
            flex-shrink: 0;
        }
        .nav-item-card:hover {
            background: var(--brand-red-light);
            color: var(--brand-red);
            border-color: #fecaca;
            transform: translateY(-1px);
            box-shadow: var(--shadow-sm);
        }
        .nav-item-card.active {
            background: var(--brand-red);
            color: #ffffff;
            border-color: var(--brand-red);
            box-shadow: 0 2px 8px rgba(220,38,38,0.3);
        }
        .nav-item-card i {
            font-size: 0.85rem;
            opacity: 0.85;
        }
        .nav-cta {
            margin-left: auto;
            flex-shrink: 0;
        }
        .nav-spacer {
            flex: 1;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            padding: 8px;
            line-height: 1;
            border-radius: var(--radius-sm);
        }
        .mobile-menu-btn:hover {
            background: var(--surface-alt);
        }

        /* Hero */
        .hero-section {
            position: relative;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
            min-height: 560px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hero-bg-img {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.35;
            mix-blend-mode: overlay;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(220,38,38,0.25) 0%, transparent 60%),
                        radial-gradient(ellipse at 70% 60%, rgba(217,119,6,0.18) 0%, transparent 55%);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            padding: 60px 0;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            color: #fca5a5;
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 20px;
            backdrop-filter: blur(4px);
        }
        .hero-badge .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ef4444;
            animation: pulse-dot 2s infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.5); }
        }

        /* 板块通用 */
        .section {
            padding: 64px 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 44px;
        }
        .section-label {
            display: inline-block;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--brand-red);
            margin-bottom: 8px;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 10px;
            line-height: 1.3;
        }
        .section-subtitle {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* 卡片 */
        .card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
            transition: all 0.25s ease;
            overflow: hidden;
        }
        .card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }
        .card-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 10;
            background: #f1f5f9;
        }
        .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .card:hover .card-img-wrap img {
            transform: scale(1.04);
        }
        .card-body {
            padding: 20px 22px;
        }
        .card-tag {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 50px;
            background: var(--brand-red-light);
            color: var(--brand-red);
            margin-bottom: 8px;
        }
        .card-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin: 0 0 6px;
            line-height: 1.4;
            color: var(--text-primary);
        }
        .card-desc {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.5;
        }

        /* 特色卡片 */
        .feature-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            text-align: center;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: all 0.25s ease;
        }
        .feature-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            border-color: #fecaca;
        }
        .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 1.5rem;
            background: var(--brand-red-light);
            color: var(--brand-red);
        }

        /* 统计数字 */
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--brand-red);
            line-height: 1;
            letter-spacing: -0.02em;
        }
        .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        /* FAQ */
        .faq-item {
            border-bottom: 1px solid var(--border);
            padding: 18px 0;
            cursor: pointer;
        }
        .faq-question {
            font-weight: 600;
            font-size: 1.05rem;
            color: var(--text-primary);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
        .faq-answer {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-top: 8px;
            line-height: 1.6;
            display: none;
        }
        .faq-item.open .faq-answer {
            display: block;
        }
        .faq-item.open .faq-icon {
            transform: rotate(180deg);
        }
        .faq-icon {
            transition: transform 0.3s ease;
            color: var(--text-muted);
            flex-shrink: 0;
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, #b91c1c 0%, #dc2626 40%, #991b1b 100%);
            color: #ffffff;
            text-align: center;
            padding: 60px 20px;
            border-radius: var(--radius-xl);
            margin: 0 20px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            padding: 12px 24px;
            border-radius: 50px;
            border: none;
            transition: all 0.25s ease;
            font-size: 0.95rem;
            white-space: nowrap;
        }
        .btn-primary {
            background: var(--brand-red);
            color: #fff;
            box-shadow: 0 4px 14px rgba(220,38,38,0.35);
        }
        .btn-primary:hover {
            background: var(--brand-red-dark);
            box-shadow: 0 6px 20px rgba(185,28,28,0.4);
            transform: translateY(-1px);
            color: #fff;
        }
        .btn-outline-light {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255,255,255,0.5);
        }
        .btn-outline-light:hover {
            background: rgba(255,255,255,0.12);
            border-color: #fff;
            color: #fff;
        }
        .btn-gold {
            background: var(--gold);
            color: #fff;
            box-shadow: 0 4px 14px rgba(217,119,6,0.35);
        }
        .btn-gold:hover {
            background: #b45309;
            box-shadow: 0 6px 20px rgba(180,83,9,0.4);
            transform: translateY(-1px);
            color: #fff;
        }
        .btn-lg {
            padding: 15px 32px;
            font-size: 1.05rem;
        }

        /* 页脚 */
        .site-footer {
            background: var(--surface-dark);
            color: #cbd5e1;
            padding: 40px 0 24px;
            text-align: center;
            font-size: 0.9rem;
        }
        .site-footer .footer-brand {
            color: #f87171;
            font-weight: 700;
            font-size: 1.05rem;
        }
        .site-footer a {
            color: #94a3b8;
        }
        .site-footer a:hover {
            color: #f87171;
        }

        /* CMS列表 */
        .cms-list-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            padding: 16px 0;
            border-bottom: 1px solid var(--border-light);
            transition: all var(--transition);
        }
        .cms-list-item:hover {
            background: #fefefe;
        }
        .cms-list-thumb {
            width: 100px;
            height: 68px;
            border-radius: var(--radius-sm);
            object-fit: cover;
            flex-shrink: 0;
            background: #f1f5f9;
        }
        .cms-list-info {
            flex: 1;
            min-width: 0;
        }
        .cms-list-title {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-primary);
            margin: 0 0 4px;
            line-height: 1.4;
        }
        .cms-list-excerpt {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin: 0 0 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .cms-list-meta {
            font-size: 0.78rem;
            color: var(--text-muted);
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .cms-empty {
            text-align: center;
            color: var(--text-muted);
            padding: 32px;
            font-size: 0.95rem;
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .section-title {
                font-size: 1.7rem;
            }
            .hero-section {
                min-height: 440px;
            }
            .nav-item-card {
                font-size: 0.85rem;
                padding: 8px 12px;
            }
            .nav-logo {
                font-size: 1rem;
            }
        }
        @media (max-width: 768px) {
            .nav-panel {
                flex-wrap: wrap;
                gap: 6px;
                padding: 10px 12px;
            }
            .nav-item-card {
                font-size: 0.8rem;
                padding: 7px 10px;
                border-radius: 6px;
            }
            .nav-cta {
                margin-left: 0;
                width: 100%;
                text-align: center;
            }
            .nav-cta .btn {
                width: 100%;
                justify-content: center;
            }
            .nav-spacer {
                display: none;
            }
            .hero-section {
                min-height: 380px;
            }
            .hero-content {
                padding: 40px 0;
            }
            .section {
                padding: 44px 0;
            }
            .section-title {
                font-size: 1.45rem;
            }
            .stat-value {
                font-size: 2rem;
            }
            .cta-section {
                margin: 0 12px;
                padding: 40px 16px;
                border-radius: var(--radius-lg);
            }
            .cms-list-item {
                flex-direction: column;
                gap: 10px;
            }
            .cms-list-thumb {
                width: 100%;
                height: 140px;
            }
        }
        @media (max-width: 520px) {
            .hero-section {
                min-height: 340px;
            }
            .hero-content h1 {
                font-size: 1.4rem;
            }
            .section-title {
                font-size: 1.25rem;
            }
            .nav-panel {
                border-radius: var(--radius);
                gap: 4px;
            }
            .nav-item-card {
                font-size: 0.75rem;
                padding: 6px 8px;
            }
            .nav-logo {
                font-size: 0.9rem;
                width: 100%;
                text-align: center;
            }
            .card-body {
                padding: 14px 16px;
            }
            .feature-card {
                padding: 20px 16px;
            }
        }

/* roulang page: category1 */
:root {
            --color-primary: #dc2626;
            --color-primary-hover: #b91c1c;
            --color-accent: #f59e0b;
            --color-accent-hover: #d97706;
            --color-bg-dark: #0f172a;
            --color-bg-card: #1e293b;
            --color-bg-section: #111827;
            --color-text: #f1f5f9;
            --color-text-muted: #94a3b8;
            --color-text-weak: #64748b;
            --color-border: #334155;
            --color-border-light: #475569;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.35);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.45);
            --shadow-glow-red: 0 0 24px rgba(220,38,38,0.35);
            --shadow-glow-gold: 0 0 20px rgba(245,158,11,0.3);
            --transition-fast: 0.18s ease;
            --transition-normal: 0.28s ease;
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            line-height: 1.65;
            background-color: var(--color-bg-dark);
            color: var(--color-text);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
        img { max-width: 100%; height: auto; display: block; }
        button, input, select, textarea { font-family: inherit; font-size: inherit; }

        .container-wide { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        .container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

        /* ===== 导航面板 ===== */
        .nav-panel {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
            background: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-xl);
            padding: 6px 10px;
            box-shadow: var(--shadow-md);
            position: relative;
            z-index: 100;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.05rem;
            color: #fff;
            white-space: nowrap;
            padding: 8px 14px;
            border-radius: var(--radius-md);
            transition: background var(--transition-fast);
            letter-spacing: 0.02em;
        }
        .nav-logo:hover { background: rgba(255,255,255,0.06); color: #fff; }
        .nav-spacer { flex: 1; min-width: 12px; }
        .nav-item-card {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 16px;
            border-radius: var(--radius-md);
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-text-muted);
            background: transparent;
            transition: all var(--transition-fast);
            white-space: nowrap;
            border: 1px solid transparent;
        }
        .nav-item-card:hover {
            color: #fff;
            background: rgba(255,255,255,0.05);
            border-color: var(--color-border-light);
        }
        .nav-item-card.active {
            color: #fff;
            background: var(--color-primary);
            border-color: var(--color-primary);
            font-weight: 600;
            box-shadow: var(--shadow-glow-red);
        }
        .nav-item-card i { font-size: 0.85rem; }
        .nav-cta { margin-left: 4px; }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all var(--transition-normal);
            border: none;
            white-space: nowrap;
            letter-spacing: 0.01em;
        }
        .btn-gold {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: #1a1a1a;
            box-shadow: 0 2px 10px rgba(245,158,11,0.3);
        }
        .btn-gold:hover {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            box-shadow: var(--shadow-glow-gold);
            transform: translateY(-1px);
        }
        .btn-red {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            color: #fff;
            box-shadow: 0 2px 10px rgba(220,38,38,0.3);
        }
        .btn-red:hover {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            box-shadow: var(--shadow-glow-red);
            transform: translateY(-1px);
        }
        .btn-outline-light {
            background: transparent;
            color: #fff;
            border: 2px solid var(--color-border-light);
        }
        .btn-outline-light:hover {
            border-color: #fff;
            background: rgba(255,255,255,0.06);
        }
        .btn-lg { padding: 12px 26px; font-size: 1rem; border-radius: var(--radius-md); }
        .btn-xl { padding: 15px 34px; font-size: 1.1rem; border-radius: var(--radius-lg); }

        /* ===== Hero ===== */
        .hero-section {
            position: relative;
            padding: 70px 0 80px;
            overflow: hidden;
            background: var(--color-bg-section);
        }
        .hero-bg-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.28;
            pointer-events: none;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(15,23,42,0.7) 0%, rgba(15,23,42,0.9) 60%, rgba(15,23,42,1) 100%);
            pointer-events: none;
        }
        .hero-content { position: relative; z-index: 2; text-align: center; }
        .hero-badge {
            display: inline-block;
            background: rgba(220,38,38,0.2);
            border: 1px solid rgba(239,68,68,0.4);
            color: #fca5a5;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            margin-bottom: 20px;
        }
        .hero-title {
            font-size: clamp(2rem, 4.5vw, 3.2rem);
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: 0.01em;
        }
        .hero-subtitle {
            font-size: 1.15rem;
            color: var(--color-text-muted);
            max-width: 620px;
            margin: 0 auto 32px;
            line-height: 1.7;
        }
        .hero-cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

        /* ===== 板块通用 ===== */
        .section { padding: 60px 0; }
        .section-dark { background: var(--color-bg-section); }
        .section-label {
            display: inline-block;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            color: #f87171;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .section-title {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .section-desc {
            color: var(--color-text-muted);
            max-width: 600px;
            margin: 0 auto 40px;
            font-size: 1rem;
            line-height: 1.7;
        }
        .section-desc-left { margin-left: 0; }

        /* ===== 卡片 ===== */
        .card {
            background: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            transition: all var(--transition-normal);
            height: 100%;
        }
        .card:hover {
            border-color: var(--color-border-light);
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }
        .card-icon-circle {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 16px;
            flex-shrink: 0;
        }
        .card-icon-red { background: rgba(220,38,38,0.2); color: #f87171; }
        .card-icon-gold { background: rgba(245,158,11,0.2); color: #fbbf24; }
        .card-icon-blue { background: rgba(59,130,246,0.2); color: #60a5fa; }
        .card-icon-green { background: rgba(34,197,94,0.2); color: #4ade80; }
        .card-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
        .card-text { font-size: 0.93rem; color: var(--color-text-muted); line-height: 1.6; }

        /* ===== 赛事卡片 ===== */
        .event-card {
            background: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-normal);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .event-card:hover {
            border-color: var(--color-primary);
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }
        .event-card-img-wrap {
            position: relative;
            aspect-ratio: 16/10;
            overflow: hidden;
            background: #1a1f2e;
        }
        .event-card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .event-card:hover .event-card-img-wrap img { transform: scale(1.06); }
        .event-card-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--color-primary);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 50px;
            letter-spacing: 0.03em;
        }
        .event-card-body { padding: 18px 16px 20px; flex: 1; display: flex; flex-direction: column; }
        .event-card-body h4 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
        .event-card-body p { font-size: 0.88rem; color: var(--color-text-muted); margin-bottom: 14px; flex: 1; }
        .event-card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.8rem;
            color: var(--color-text-weak);
            margin-bottom: 14px;
        }
        .event-card-meta span { display: flex; align-items: center; gap: 4px; }

        /* ===== 统计数字 ===== */
        .stat-block {
            text-align: center;
            padding: 20px 16px;
        }
        .stat-number {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 800;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
        }
        .stat-label { font-size: 0.9rem; color: var(--color-text-muted); margin-top: 6px; }

        /* ===== 步骤流程 ===== */
        .step-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            padding: 16px 0;
            border-bottom: 1px solid var(--color-border);
        }
        .step-item:last-child { border-bottom: none; }
        .step-number {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--color-primary);
            color: #fff;
            font-weight: 700;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .step-content h4 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
        .step-content p { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.6; }

        /* ===== FAQ ===== */
        .faq-item {
            background: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            padding: 20px 22px;
            margin-bottom: 12px;
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .faq-item:hover { border-color: var(--color-border-light); background: #1e293b; }
        .faq-item h4 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
        .faq-item h4 i { color: var(--color-accent); font-size: 0.9rem; }
        .faq-item p { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.65; margin: 0; }

        /* ===== CTA Band ===== */
        .cta-band {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-xl);
            padding: 48px 32px;
            text-align: center;
            box-shadow: var(--shadow-lg);
        }
        .cta-band h3 { font-size: 1.6rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
        .cta-band p { color: var(--color-text-muted); margin-bottom: 24px; font-size: 1rem; }

        /* ===== 页脚 ===== */
        .site-footer {
            background: #0a0f1a;
            border-top: 1px solid var(--color-border);
            padding: 32px 20px;
            text-align: center;
        }
        .site-footer a { color: var(--color-text-muted); font-size: 0.9rem; transition: color var(--transition-fast); }
        .site-footer a:hover { color: #fff; }
        .footer-brand { font-size: 1.05rem; font-weight: 700; color: #fff; }

        /* ===== 响应式 ===== */
        @media (max-width: 1024px) {
            .nav-panel { flex-wrap: wrap; justify-content: center; gap: 4px; padding: 8px; }
            .nav-spacer { display: none; }
            .nav-cta { margin-left: 0; margin-top: 4px; }
            .nav-item-card { font-size: 0.82rem; padding: 8px 12px; }
        }
        @media (max-width: 768px) {
            .container-wide { padding: 0 12px; }
            .container { padding: 0 12px; }
            .nav-panel { border-radius: var(--radius-lg); padding: 6px; }
            .nav-logo { font-size: 0.9rem; padding: 6px 10px; }
            .nav-item-card { font-size: 0.78rem; padding: 7px 10px; border-radius: 6px; }
            .nav-item-card i { font-size: 0.75rem; }
            .hero-section { padding: 40px 0 50px; }
            .hero-title { font-size: 1.7rem; }
            .hero-subtitle { font-size: 0.95rem; }
            .section { padding: 36px 0; }
            .section-title { font-size: 1.35rem; }
            .card { padding: 20px 16px; }
            .cta-band { padding: 28px 18px; }
            .cta-band h3 { font-size: 1.3rem; }
            .event-card-body { padding: 14px 12px 16px; }
            .stat-number { font-size: 1.6rem; }
            .step-item { gap: 10px; }
            .step-number { width: 36px; height: 36px; font-size: 0.95rem; }
        }
        @media (max-width: 520px) {
            .nav-panel { flex-direction: column; align-items: stretch; gap: 3px; }
            .nav-item-card { justify-content: center; }
            .nav-cta { text-align: center; }
            .nav-cta .btn { width: 100%; justify-content: center; }
            .hero-cta-group { flex-direction: column; align-items: center; }
            .hero-cta-group .btn { width: 100%; max-width: 300px; justify-content: center; }
            .event-card-img-wrap { aspect-ratio: 16/11; }
            .faq-item { padding: 14px 16px; }
            .faq-item h4 { font-size: 0.9rem; }
        }

/* roulang page: article */
:root {
            --color-brand: #dc2626;
            --color-brand-light: #ef4444;
            --color-gold: #eab308;
            --color-gold-light: #facc15;
            --color-dark-bg: #0f0d1f;
            --color-card-bg: #faf9fc;
            --color-text: #1e1b2e;
            --color-text-soft: #64748b;
            --color-text-muted: #94a3b8;
            --color-border: #e8e2f4;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.05);
            --shadow-elevated: 0 4px 20px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
            --transition-fast: 0.18s ease;
            --transition-smooth: 0.28s ease;
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
        body {
            font-family: 'Inter', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            color: var(--color-text);
            background: #f8f7fa;
            min-height: 100vh;
        }
        a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
        img { max-width: 100%; height: auto; display: block; }
        button, input, select, textarea { font-family: inherit; }

        .container-wide { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        .container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
        .container-medium { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

        /* 导航面板 */
        .nav-panel {
            display: flex;
            align-items: center;
            gap: 6px;
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 8px 10px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--color-border);
            flex-wrap: wrap;
            position: relative;
            z-index: 100;
        }
        .nav-logo {
            font-weight: 700;
            font-size: 1.1rem;
            color: #1e1b2e;
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 8px 14px;
            border-radius: var(--radius-md);
            white-space: nowrap;
            transition: background var(--transition-fast);
        }
        .nav-logo:hover { background: #fef2f2; color: #dc2626; }
        .nav-spacer { flex: 1; min-width: 8px; }
        .nav-item-card {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 16px;
            border-radius: var(--radius-md);
            font-weight: 500;
            font-size: 0.9rem;
            color: #475569;
            background: transparent;
            transition: all var(--transition-fast);
            white-space: nowrap;
            border: 1px solid transparent;
        }
        .nav-item-card:hover {
            background: #fef2f2;
            color: #dc2626;
            border-color: #fecaca;
            box-shadow: 0 2px 8px rgba(220,38,38,0.08);
        }
        .nav-item-card.active {
            background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 3px 12px rgba(220,38,38,0.25);
            font-weight: 600;
        }
        .nav-item-card.active i { color: #facc15; }
        .nav-cta { margin-left: 4px; }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-weight: 600;
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all var(--transition-smooth);
            border: none;
            white-space: nowrap;
            font-size: 0.9rem;
            padding: 10px 20px;
        }
        .btn-gold {
            background: linear-gradient(135deg, #eab308 0%, #facc15 100%);
            color: #7c2d12;
            box-shadow: 0 3px 14px rgba(234,179,8,0.35);
        }
        .btn-gold:hover {
            background: linear-gradient(135deg, #facc15 0%, #fde047 100%);
            box-shadow: 0 5px 20px rgba(234,179,8,0.45);
            transform: translateY(-1px);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--color-border);
            color: #475569;
        }
        .btn-outline:hover {
            border-color: #dc2626;
            color: #dc2626;
            background: #fef2f2;
        }
        .btn-brand {
            background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
            color: #fff;
            box-shadow: 0 3px 14px rgba(220,38,38,0.3);
        }
        .btn-brand:hover {
            box-shadow: 0 5px 22px rgba(220,38,38,0.4);
            transform: translateY(-1px);
        }
        .btn-lg { padding: 12px 26px; font-size: 1rem; border-radius: var(--radius-lg); }
        .btn-sm { padding: 7px 14px; font-size: 0.82rem; border-radius: 8px; }

        /* 面包屑 */
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            color: #64748b;
            padding: 0;
        }
        .breadcrumb a {
            color: #64748b;
            transition: color var(--transition-fast);
        }
        .breadcrumb a:hover { color: #dc2626; }
        .breadcrumb .separator { color: #cbd5e1; user-select: none; }
        .breadcrumb .current { color: #1e1b2e; font-weight: 500; }

        /* 标签 */
        .tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            background: #fef2f2;
            color: #dc2626;
            border: 1px solid #fecaca;
            white-space: nowrap;
        }
        .tag-gold {
            background: #fefce8;
            color: #a16207;
            border-color: #fde68a;
        }

        /* 文章排版 */
        .article-content {
            font-size: 1.05rem;
            line-height: 1.85;
            color: #334155;
        }
        .article-content h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e1b2e;
            margin: 2em 0 0.7em;
            padding-bottom: 0.4em;
            border-bottom: 2px solid #f1f0f5;
            line-height: 1.3;
        }
        .article-content h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1e1b2e;
            margin: 1.6em 0 0.5em;
            line-height: 1.35;
        }
        .article-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #334155;
            margin: 1.3em 0 0.4em;
        }
        .article-content p {
            margin: 0.9em 0;
        }
        .article-content ul,
        .article-content ol {
            margin: 0.9em 0;
            padding-left: 1.5em;
        }
        .article-content li {
            margin: 0.4em 0;
        }
        .article-content ul li::marker { color: #dc2626; }
        .article-content blockquote {
            border-left: 3px solid #dc2626;
            background: #fef2f2;
            padding: 16px 20px;
            margin: 1.2em 0;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            color: #7c2d12;
            font-style: italic;
        }
        .article-content img {
            border-radius: var(--radius-md);
            margin: 1.2em auto;
            box-shadow: var(--shadow-card);
        }
        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2em 0;
            border-radius: var(--radius-sm);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }
        .article-content th {
            background: #fef2f2;
            color: #7c2d12;
            font-weight: 600;
            padding: 12px 16px;
            text-align: left;
            font-size: 0.9rem;
        }
        .article-content td {
            padding: 10px 16px;
            border-top: 1px solid #f1f0f5;
            font-size: 0.95rem;
        }
        .article-content a {
            color: #dc2626;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .article-content a:hover { color: #b91c1c; }
        .article-content strong { color: #1e1b2e; font-weight: 600; }
        .article-content code {
            background: #f3f0f8;
            padding: 2px 7px;
            border-radius: 4px;
            font-size: 0.9em;
            color: #7c2d12;
        }
        .article-content pre {
            background: #1e1b2e;
            color: #e8e2f4;
            padding: 20px;
            border-radius: var(--radius-md);
            overflow-x: auto;
            margin: 1.2em 0;
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .article-content pre code {
            background: transparent;
            color: inherit;
            padding: 0;
        }

        /* 文章卡片容器 */
        .article-card {
            background: #ffffff;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-card);
            border: 1px solid var(--color-border);
            overflow: hidden;
        }

        /* 分享按钮 */
        .share-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--color-border);
            background: #fff;
            color: #64748b;
            transition: all var(--transition-fast);
            cursor: pointer;
            font-size: 1rem;
        }
        .share-btn:hover {
            background: #fef2f2;
            color: #dc2626;
            border-color: #fecaca;
            box-shadow: 0 3px 10px rgba(220,38,38,0.12);
        }

        /* 页脚 */
        .site-footer {
            background: var(--color-dark-bg);
            color: #cbd5e1;
            padding: 40px 24px 32px;
            text-align: center;
            margin-top: 60px;
            border-top: 3px solid #dc2626;
        }
        .site-footer a {
            color: #94a3b8;
            transition: color var(--transition-fast);
        }
        .site-footer a:hover { color: #f87171; }
        .footer-brand {
            font-weight: 700;
            font-size: 1.1rem;
            color: #e2e8f0;
        }

        /* 渐入动画 */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(22px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .animate-in {
            animation: fadeInUp 0.55s ease forwards;
        }
        .animate-in-delay-1 { animation-delay: 0.1s; opacity: 0; }
        .animate-in-delay-2 { animation-delay: 0.2s; opacity: 0; }
        .animate-in-delay-3 { animation-delay: 0.3s; opacity: 0; }

        /* 响应式 */
        @media (max-width: 1024px) {
            .nav-panel { gap: 4px; padding: 6px 8px; }
            .nav-item-card { padding: 8px 12px; font-size: 0.82rem; }
            .nav-logo { font-size: 1rem; padding: 8px 10px; }
            .nav-cta .btn { padding: 8px 14px; font-size: 0.82rem; }
        }
        @media (max-width: 768px) {
            .container-wide { padding: 0 12px; }
            .container-narrow { padding: 0 12px; }
            .container-medium { padding: 0 12px; }
            .nav-panel {
                flex-wrap: nowrap;
                overflow-x: auto;
                gap: 4px;
                padding: 6px;
                border-radius: var(--radius-md);
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            .nav-panel::-webkit-scrollbar { display: none; }
            .nav-item-card {
                flex-shrink: 0;
                padding: 7px 11px;
                font-size: 0.78rem;
                gap: 3px;
            }
            .nav-logo { flex-shrink: 0; font-size: 0.95rem; padding: 7px 10px; }
            .nav-spacer { display: none; }
            .nav-cta { flex-shrink: 0; }
            .nav-cta .btn { padding: 7px 13px; font-size: 0.78rem; }
            .article-content { font-size: 0.98rem; }
            .article-content h2 { font-size: 1.3rem; }
            .article-content h3 { font-size: 1.12rem; }
        }
        @media (max-width: 520px) {
            .nav-panel { padding: 5px 4px; gap: 3px; }
            .nav-item-card { padding: 6px 9px; font-size: 0.72rem; }
            .nav-logo { font-size: 0.85rem; padding: 6px 8px; }
            .nav-cta .btn { padding: 6px 10px; font-size: 0.72rem; }
            .article-content { font-size: 0.93rem; }
            .article-content h2 { font-size: 1.2rem; }
            .article-content blockquote { padding: 12px 14px; }
            .share-btn { width: 34px; height: 34px; font-size: 0.85rem; }
        }

.article-content + div a[href] img:hover,
                section a[href] img:hover {
                    transform: scale(1.05);
                }
                section a[href]:hover {
                    box-shadow: var(--shadow-elevated) !important;
                    transform: translateY(-2px);
                }

/* roulang page: category2 */
:root {
            --color-primary: #ef4444;
            --color-primary-dark: #dc2626;
            --color-gold: #f59e0b;
            --color-gold-light: #fbbf24;
            --color-bg-dark: #0f172a;
            --color-bg-card: #1e293b;
            --color-bg-surface: #1a1f2e;
            --color-text-primary: #f1f5f9;
            --color-text-secondary: #cbd5e1;
            --color-text-muted: #94a3b8;
            --color-border: #334155;
            --color-border-light: #475569;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
            --shadow-glow-gold: 0 0 20px rgba(245, 158, 11, 0.35);
            --shadow-glow-red: 0 0 24px rgba(239, 68, 68, 0.3);
            --transition-fast: 180ms ease;
            --transition-smooth: 280ms cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            line-height: 1.7;
            color: var(--color-text-primary);
            background-color: #0a0f1a;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
        }

        .container-wide {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 导航 */
        .nav-panel {
            display: flex;
            align-items: center;
            gap: 6px;
            background: var(--color-bg-card);
            border-radius: var(--radius-lg);
            padding: 8px 14px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--color-border);
            flex-wrap: wrap;
            position: relative;
            z-index: 100;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.05rem;
            color: #fff;
            padding: 8px 12px;
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        .nav-logo:hover {
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
        }

        .nav-spacer {
            flex: 1;
            min-width: 8px;
        }

        .nav-item-card {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 16px;
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            background: transparent;
            transition: all var(--transition-smooth);
            white-space: nowrap;
            border: 1px solid transparent;
        }

        .nav-item-card:hover {
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            border-color: var(--color-border-light);
        }

        .nav-item-card.active {
            background: rgba(239, 68, 68, 0.15);
            color: #fff;
            border-color: var(--color-primary);
            box-shadow: var(--shadow-glow-red);
            font-weight: 600;
        }

        .nav-cta {
            margin-left: 6px;
            flex-shrink: 0;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 10px 22px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            border: none;
            transition: all var(--transition-smooth);
            text-align: center;
            white-space: nowrap;
            letter-spacing: 0.2px;
        }

        .btn-gold {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: #1a1a1a;
            box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
        }

        .btn-gold:hover {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            box-shadow: var(--shadow-glow-gold);
            transform: translateY(-2px);
            color: #1a1a1a;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: #fff;
            box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
            box-shadow: var(--shadow-glow-red);
            transform: translateY(-2px);
            color: #fff;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--color-border-light);
            color: #fff;
        }

        .btn-outline:hover {
            border-color: var(--color-gold);
            color: var(--color-gold-light);
            background: rgba(245, 158, 11, 0.08);
        }

        .btn-lg {
            padding: 13px 28px;
            font-size: 1rem;
            border-radius: var(--radius-md);
        }

        .btn-xl {
            padding: 16px 36px;
            font-size: 1.1rem;
            border-radius: var(--radius-lg);
        }

        /* 板块 */
        .section {
            padding: 70px 0;
        }

        .section-dark {
            background: var(--color-bg-dark);
        }

        .section-surface {
            background: var(--color-bg-surface);
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-header h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .section-header .subtitle {
            font-size: 1.05rem;
            color: var(--color-text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        .badge {
            display: inline-block;
            padding: 5px 13px;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .badge-hot {
            background: rgba(239, 68, 68, 0.2);
            color: #f87171;
            border: 1px solid rgba(239, 68, 68, 0.3);
        }

        .badge-new {
            background: rgba(34, 197, 94, 0.2);
            color: #4ade80;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }

        .badge-gold {
            background: rgba(245, 158, 11, 0.2);
            color: #fbbf24;
            border: 1px solid rgba(245, 158, 11, 0.3);
        }

        /* Hero */
        .hero-game {
            position: relative;
            overflow: hidden;
            background: linear-gradient(170deg, #0f172a 0%, #1a1f2e 30%, #0f172a 70%, #0a0f1a 100%);
        }

        .hero-game::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(239, 68, 68, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-game::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -60px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        /* 卡片 */
        .game-card {
            background: var(--color-bg-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--color-border);
            transition: all var(--transition-smooth);
            position: relative;
        }

        .game-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--color-border-light);
        }

        .game-card .card-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 10;
            background: #1a1f2e;
        }

        .game-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .game-card:hover .card-img-wrap img {
            transform: scale(1.06);
        }

        .game-card .card-body {
            padding: 18px 20px 20px;
        }

        .game-card .card-body h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 6px;
        }

        .game-card .card-body p {
            font-size: 0.88rem;
            color: var(--color-text-muted);
            margin: 0;
        }

        /* 排行 */
        .rank-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 18px;
            background: var(--color-bg-card);
            border-radius: var(--radius-md);
            border: 1px solid var(--color-border);
            transition: all var(--transition-fast);
        }

        .rank-item:hover {
            border-color: var(--color-border-light);
            background: #1e293b;
        }

        .rank-badge {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .rank-1 {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: #1a1a1a;
        }

        .rank-2 {
            background: linear-gradient(135deg, #94a3b8, #64748b);
            color: #fff;
        }

        .rank-3 {
            background: linear-gradient(135deg, #cd853f, #a0522d);
            color: #fff;
        }

        .rank-other {
            background: #334155;
            color: #cbd5e1;
        }

        /* 统计数字 */
        .stat-block {
            text-align: center;
            padding: 24px 16px;
        }

        .stat-block .stat-number {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--color-gold-light);
            letter-spacing: 1px;
            line-height: 1.2;
        }

        .stat-block .stat-label {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            margin-top: 6px;
        }

        /* 流程 */
        .step-card {
            text-align: center;
            padding: 28px 20px;
            background: var(--color-bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--color-border);
            position: relative;
            transition: all var(--transition-smooth);
        }

        .step-card:hover {
            border-color: var(--color-gold);
            box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
        }

        .step-number {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.3rem;
            margin: 0 auto 16px;
            box-shadow: var(--shadow-glow-red);
        }

        /* FAQ */
        .faq-item {
            background: var(--color-bg-card);
            border-radius: var(--radius-md);
            border: 1px solid var(--color-border);
            padding: 20px 24px;
            margin-bottom: 12px;
            transition: all var(--transition-fast);
            cursor: pointer;
        }

        .faq-item:hover {
            border-color: var(--color-border-light);
            background: #1e293b;
        }

        .faq-item summary {
            font-weight: 600;
            font-size: 1.02rem;
            color: #fff;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary i {
            transition: transform var(--transition-smooth);
            color: var(--color-gold);
            font-size: 0.85rem;
        }

        .faq-item[open] summary i {
            transform: rotate(180deg);
        }

        .faq-item .faq-answer {
            margin-top: 14px;
            color: var(--color-text-secondary);
            font-size: 0.92rem;
            line-height: 1.8;
            padding-top: 14px;
            border-top: 1px solid var(--color-border);
        }

        /* CTA */
        .cta-band {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-xl);
            padding: 56px 40px;
        }

        .cta-band::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -40px;
            width: 260px;
            height: 260px;
            background: radial-gradient(circle, rgba(239, 68, 68, 0.18) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        /* 页脚 */
        .site-footer {
            background: #080c14;
            border-top: 1px solid #1e293b;
            padding: 36px 0;
            text-align: center;
        }

        .site-footer a {
            color: #cbd5e1;
            font-size: 0.88rem;
            transition: color var(--transition-fast);
        }

        .site-footer a:hover {
            color: var(--color-gold-light);
        }

        .footer-brand {
            font-weight: 700;
            font-size: 1.05rem;
            color: #fff;
        }

        /* 实时状态条 */
        .live-bar {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.25);
            border-radius: 20px;
            padding: 10px 20px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.88rem;
            color: #f87171;
            font-weight: 500;
            animation: pulse-live 2s ease-in-out infinite;
        }

        .live-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ef4444;
            box-shadow: 0 0 10px rgba(239, 68, 68, 0.7);
            animation: blink-dot 1.2s ease-in-out infinite;
        }

        @keyframes pulse-live {
            0%,
            100% {
                box-shadow: 0 0 12px rgba(239, 68, 68, 0.2);
            }
            50% {
                box-shadow: 0 0 28px rgba(239, 68, 68, 0.45);
            }
        }

        @keyframes blink-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.3;
            }
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .nav-panel {
                gap: 4px;
                padding: 8px 10px;
                border-radius: var(--radius-md);
            }
            .nav-item-card {
                padding: 8px 12px;
                font-size: 0.82rem;
                gap: 4px;
            }
            .nav-logo {
                font-size: 0.95rem;
                padding: 6px 10px;
            }
            .section {
                padding: 50px 0;
            }
            .section-header h2 {
                font-size: 1.8rem;
            }
            .hero-game {
                padding: 60px 0 40px;
            }
            .cta-band {
                padding: 40px 28px;
                border-radius: var(--radius-lg);
            }
            .stat-block .stat-number {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-panel {
                flex-wrap: wrap;
                justify-content: center;
                gap: 5px;
                padding: 10px 8px;
            }
            .nav-spacer {
                display: none;
            }
            .nav-cta {
                margin-left: 0;
                margin-top: 6px;
                width: 100%;
                text-align: center;
            }
            .nav-cta .btn {
                width: 100%;
                justify-content: center;
            }
            .nav-item-card {
                font-size: 0.78rem;
                padding: 7px 10px;
            }
            .nav-logo {
                font-size: 0.9rem;
            }
            .section-header h2 {
                font-size: 1.55rem;
            }
            .section-header .subtitle {
                font-size: 0.9rem;
            }
            .game-card .card-body h3 {
                font-size: 1rem;
            }
            .cta-band {
                padding: 32px 20px;
                text-align: center;
            }
            .cta-band h2 {
                font-size: 1.5rem;
            }
            .stat-block .stat-number {
                font-size: 1.7rem;
            }
            .step-card {
                padding: 20px 14px;
            }
            .rank-item {
                padding: 10px 14px;
                gap: 10px;
            }
        }

        @media (max-width: 520px) {
            .container-wide {
                padding: 0 10px;
            }
            .container {
                padding: 0 12px;
            }
            .nav-panel {
                border-radius: var(--radius-sm);
                padding: 8px 6px;
                gap: 3px;
            }
            .nav-item-card {
                font-size: 0.72rem;
                padding: 6px 8px;
                border-radius: 6px;
            }
            .nav-logo {
                font-size: 0.82rem;
                padding: 5px 6px;
            }
            .section {
                padding: 36px 0;
            }
            .section-header h2 {
                font-size: 1.35rem;
            }
            .section-header {
                margin-bottom: 30px;
            }
            .cta-band {
                padding: 24px 14px;
                border-radius: var(--radius-md);
            }
            .btn-xl {
                padding: 14px 24px;
                font-size: 0.95rem;
            }
            .btn-lg {
                padding: 10px 20px;
                font-size: 0.88rem;
            }
            .game-card .card-body {
                padding: 12px 14px 14px;
            }
            .stat-block .stat-number {
                font-size: 1.5rem;
            }
            .live-bar {
                font-size: 0.76rem;
                padding: 7px 14px;
            }
        }

/* roulang page: category3 */
:root {
            --color-primary: #dc2626;
            --color-primary-hover: #b91c1c;
            --color-primary-light: #fef2f2;
            --color-gold: #eab308;
            --color-gold-hover: #ca8a04;
            --color-gold-light: #fefce8;
            --color-gold-gradient-start: #f59e0b;
            --color-gold-gradient-end: #d97706;
            --color-bg-dark: #0f172a;
            --color-bg-card: #1e293b;
            --color-bg-light: #f8fafc;
            --color-text-primary: #1e293b;
            --color-text-secondary: #475569;
            --color-text-weak: #94a3b8;
            --color-text-light: #f1f5f9;
            --color-border: #e2e8f0;
            --color-border-light: #f1f5f9;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-2xl: 24px;
            --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.08),0 1px 2px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.07),0 2px 4px rgba(0,0,0,0.06);
            --shadow-lg: 0 10px 15px rgba(0,0,0,0.1),0 4px 6px rgba(0,0,0,0.05);
            --shadow-xl: 0 20px 25px rgba(0,0,0,0.12),0 10px 10px rgba(0,0,0,0.06);
            --shadow-gold: 0 4px 20px rgba(234,179,8,0.3);
            --shadow-red: 0 4px 20px rgba(220,38,38,0.25);
            --transition-fast: 0.15s ease;
            --transition-base: 0.25s ease;
            --transition-slow: 0.35s ease;
        }

        *,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

        html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}

        body{
            font-family:'Segoe UI','PingFang SC','Microsoft YaHei','Noto Sans SC',system-ui,-apple-system,sans-serif;
            line-height:1.65;
            color:var(--color-text-primary);
            background:#f1f5f9;
            min-height:100vh;
            overflow-x:hidden;
        }

        img{max-width:100%;height:auto;display:block}
        a{text-decoration:none;color:inherit;transition:color var(--transition-fast)}
        button{cursor:pointer;border:none;font-family:inherit}

        .container-wide{
            max-width:1280px;
            margin:0 auto;
            padding:0 24px;
        }
        .container{
            max-width:1140px;
            margin:0 auto;
            padding:0 20px;
        }
        .container-narrow{
            max-width:860px;
            margin:0 auto;
            padding:0 20px;
        }

        /* Header & Navigation */
        .site-header{
            position:sticky;
            top:0;
            z-index:100;
            background:rgba(15,23,42,0.95);
            backdrop-filter:blur(16px);
            -webkit-backdrop-filter:blur(16px);
            border-bottom:1px solid rgba(255,255,255,0.08);
            padding:0;
        }
        .nav-panel{
            display:flex;
            align-items:center;
            gap:8px;
            padding:10px 16px;
            margin:8px 0;
            background:rgba(30,41,59,0.85);
            border-radius:var(--radius-xl);
            border:1px solid rgba(255,255,255,0.06);
            flex-wrap:wrap;
            backdrop-filter:blur(8px);
            -webkit-backdrop-filter:blur(8px);
        }
        .nav-logo{
            display:flex;
            align-items:center;
            font-weight:700;
            font-size:1.15rem;
            color:#fff;
            white-space:nowrap;
            padding:6px 10px;
            border-radius:var(--radius-sm);
            transition:all var(--transition-fast);
            letter-spacing:0.02em;
        }
        .nav-logo:hover{
            background:rgba(255,255,255,0.08);
            color:#fca5a5;
        }
        .nav-spacer{flex:1;min-width:8px}
        .nav-item-card{
            display:flex;
            align-items:center;
            gap:6px;
            padding:8px 14px;
            border-radius:var(--radius-md);
            font-size:0.9rem;
            font-weight:500;
            color:#cbd5e1;
            background:rgba(255,255,255,0.03);
            border:1px solid transparent;
            transition:all var(--transition-base);
            white-space:nowrap;
            letter-spacing:0.01em;
        }
        .nav-item-card:hover{
            background:rgba(255,255,255,0.08);
            color:#fff;
            border-color:rgba(255,255,255,0.15);
            transform:translateY(-1px);
            box-shadow:var(--shadow-sm);
        }
        .nav-item-card.active{
            background:var(--color-primary);
            color:#fff;
            border-color:var(--color-primary);
            font-weight:600;
            box-shadow:var(--shadow-red);
        }
        .nav-item-card.active i{color:#fff}
        .nav-cta{margin-left:4px}
        .nav-cta .btn-gold{
            display:inline-flex;
            align-items:center;
            gap:6px;
            padding:10px 18px;
            border-radius:var(--radius-md);
            font-weight:600;
            font-size:0.9rem;
            background:linear-gradient(135deg,var(--color-gold-gradient-start),var(--color-gold-gradient-end));
            color:#1e293b;
            border:none;
            transition:all var(--transition-base);
            white-space:nowrap;
            box-shadow:var(--shadow-gold);
            letter-spacing:0.02em;
        }
        .nav-cta .btn-gold:hover{
            transform:translateY(-2px);
            box-shadow:0 8px 28px rgba(234,179,8,0.45);
            filter:brightness(1.08);
        }

        /* Buttons */
        .btn{
            display:inline-flex;
            align-items:center;
            justify-content:center;
            gap:6px;
            font-weight:600;
            border-radius:var(--radius-md);
            transition:all var(--transition-base);
            cursor:pointer;
            letter-spacing:0.02em;
            white-space:nowrap;
            border:none;
        }
        .btn-primary{
            background:var(--color-primary);
            color:#fff;
            padding:14px 28px;
            font-size:1rem;
            box-shadow:var(--shadow-red);
        }
        .btn-primary:hover{
            background:var(--color-primary-hover);
            transform:translateY(-2px);
            box-shadow:0 8px 30px rgba(220,38,38,0.4);
        }
        .btn-gold{
            background:linear-gradient(135deg,var(--color-gold-gradient-start),var(--color-gold-gradient-end));
            color:#1e293b;
            padding:14px 28px;
            font-size:1rem;
            box-shadow:var(--shadow-gold);
        }
        .btn-gold:hover{
            transform:translateY(-2px);
            box-shadow:0 8px 30px rgba(234,179,8,0.5);
            filter:brightness(1.06);
        }
        .btn-outline{
            background:transparent;
            color:#fff;
            border:2px solid rgba(255,255,255,0.5);
            padding:12px 24px;
            font-size:0.95rem;
        }
        .btn-outline:hover{
            background:rgba(255,255,255,0.1);
            border-color:#fff;
            transform:translateY(-2px);
        }
        .btn-lg{padding:16px 32px;font-size:1.05rem;border-radius:var(--radius-lg)}
        .btn-sm{padding:8px 16px;font-size:0.85rem;border-radius:var(--radius-sm)}

        /* Hero */
        .hero-section{
            position:relative;
            min-height:520px;
            display:flex;
            align-items:center;
            background:var(--color-bg-dark);
            overflow:hidden;
        }
        .hero-bg-img{
            position:absolute;
            inset:0;
            width:100%;
            height:100%;
            object-fit:cover;
            opacity:0.35;
            z-index:0;
        }
        .hero-overlay{
            position:absolute;
            inset:0;
            background:linear-gradient(180deg,rgba(15,23,42,0.7) 0%,rgba(15,23,42,0.9) 60%,#0f172a 100%);
            z-index:1;
        }
        .hero-content{
            position:relative;
            z-index:2;
            width:100%;
            padding:60px 0;
        }

        /* Badge */
        .badge{
            display:inline-flex;
            align-items:center;
            gap:5px;
            padding:5px 12px;
            border-radius:999px;
            font-size:0.8rem;
            font-weight:600;
            letter-spacing:0.03em;
        }
        .badge-hot{
            background:#fef2f2;
            color:#dc2626;
            border:1px solid #fecaca;
        }
        .badge-gold{
            background:#fefce8;
            color:#a16207;
            border:1px solid #fde68a;
        }
        .badge-new{
            background:#eff6ff;
            color:#2563eb;
            border:1px solid #bfdbfe;
        }
        .badge-pulse{
            animation:pulse-badge 1.8s ease-in-out infinite;
        }
        @keyframes pulse-badge{
            0%,100%{opacity:1}
            50%{opacity:0.6}
        }

        /* Cards */
        .promo-card{
            background:#fff;
            border-radius:var(--radius-xl);
            overflow:hidden;
            border:1px solid var(--color-border);
            transition:all var(--transition-slow);
            box-shadow:var(--shadow-sm);
            display:flex;
            flex-direction:column;
            height:100%;
        }
        .promo-card:hover{
            transform:translateY(-6px);
            box-shadow:var(--shadow-xl);
            border-color:#fca5a5;
        }
        .promo-card-img-wrap{
            position:relative;
            overflow:hidden;
            aspect-ratio:16/10;
            background:#f1f5f9;
        }
        .promo-card-img-wrap img{
            width:100%;
            height:100%;
            object-fit:cover;
            transition:transform var(--transition-slow);
        }
        .promo-card:hover .promo-card-img-wrap img{
            transform:scale(1.06);
        }
        .promo-card-badge{
            position:absolute;
            top:12px;
            left:12px;
            z-index:2;
        }
        .promo-card-body{
            padding:20px;
            flex:1;
            display:flex;
            flex-direction:column;
            gap:10px;
        }
        .promo-card-title{
            font-size:1.1rem;
            font-weight:700;
            color:var(--color-text-primary);
            line-height:1.35;
        }
        .promo-card-desc{
            font-size:0.9rem;
            color:var(--color-text-secondary);
            line-height:1.55;
            flex:1;
        }
        .promo-card-meta{
            display:flex;
            align-items:center;
            gap:8px;
            font-size:0.8rem;
            color:var(--color-text-weak);
        }
        .promo-card-meta i{color:var(--color-gold);font-size:0.7rem}

        /* Highlight number card */
        .stat-card{
            background:#fff;
            border-radius:var(--radius-lg);
            padding:24px 20px;
            text-align:center;
            border:1px solid var(--color-border);
            box-shadow:var(--shadow-sm);
            transition:all var(--transition-base);
        }
        .stat-card:hover{
            box-shadow:var(--shadow-lg);
            transform:translateY(-3px);
        }
        .stat-number{
            font-size:2.6rem;
            font-weight:800;
            background:linear-gradient(135deg,#dc2626,#eab308);
            -webkit-background-clip:text;
            -webkit-text-fill-color:transparent;
            background-clip:text;
            line-height:1.1;
        }
        .stat-label{
            font-size:0.9rem;
            color:var(--color-text-secondary);
            margin-top:6px;
            font-weight:500;
        }

        /* Step timeline */
        .step-list{
            display:grid;
            grid-template-columns:repeat(4,1fr);
            gap:20px;
            position:relative;
        }
        .step-item{
            text-align:center;
            position:relative;
            z-index:1;
        }
        .step-circle{
            width:56px;
            height:56px;
            border-radius:50%;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:1.4rem;
            font-weight:700;
            margin:0 auto 14px;
            color:#fff;
            position:relative;
            z-index:2;
            box-shadow:var(--shadow-md);
        }
        .step-circle.s1{background:linear-gradient(135deg,#ef4444,#dc2626)}
        .step-circle.s2{background:linear-gradient(135deg,#f59e0b,#eab308)}
        .step-circle.s3{background:linear-gradient(135deg,#3b82f6,#2563eb)}
        .step-circle.s4{background:linear-gradient(135deg,#10b981,#059669)}
        .step-title{
            font-weight:700;
            font-size:1rem;
            color:var(--color-text-primary);
            margin-bottom:4px;
        }
        .step-desc{
            font-size:0.85rem;
            color:var(--color-text-secondary);
            line-height:1.45;
        }

        /* FAQ */
        .faq-item{
            background:#fff;
            border-radius:var(--radius-lg);
            border:1px solid var(--color-border);
            overflow:hidden;
            transition:all var(--transition-base);
            box-shadow:var(--shadow-xs);
        }
        .faq-item:hover{
            border-color:#fca5a5;
            box-shadow:var(--shadow-md);
        }
        .faq-question{
            padding:18px 22px;
            font-weight:600;
            font-size:1rem;
            color:var(--color-text-primary);
            cursor:pointer;
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:12px;
            background:#fafbfc;
            transition:background var(--transition-fast);
            user-select:none;
        }
        .faq-question:hover{background:#fef2f2}
        .faq-question i{color:var(--color-primary);transition:transform var(--transition-base);font-size:0.85rem}
        .faq-answer{
            padding:0 22px 18px;
            font-size:0.92rem;
            color:var(--color-text-secondary);
            line-height:1.7;
            display:block;
        }

        /* CTA Section */
        .cta-section{
            background:var(--color-bg-dark);
            position:relative;
            overflow:hidden;
        }
        .cta-glow{
            position:absolute;
            width:400px;
            height:400px;
            border-radius:50%;
            filter:blur(120px);
            opacity:0.3;
            z-index:0;
        }
        .cta-glow.red{background:#dc2626;top:-120px;right:-80px}
        .cta-glow.gold{background:#eab308;bottom:-120px;left:-80px}

        /* Footer */
        .site-footer{
            background:#0f172a;
            color:#cbd5e1;
            padding:32px 0;
            text-align:center;
            border-top:2px solid rgba(234,179,8,0.2);
        }
        .site-footer a{
            color:#94a3b8;
            transition:color var(--transition-fast);
            font-size:0.9rem;
        }
        .site-footer a:hover{color:#fca5a5}
        .footer-brand{font-weight:700;font-size:1.1rem;color:#f1f5f9}

        /* Utility */
        .section-pad{padding:64px 0}
        .section-pad-sm{padding:40px 0}
        .text-gradient-gold{
            background:linear-gradient(135deg,#f59e0b,#eab308,#fbbf24);
            -webkit-background-clip:text;
            -webkit-text-fill-color:transparent;
            background-clip:text;
        }
        .text-gradient-red{
            background:linear-gradient(135deg,#ef4444,#dc2626,#b91c1c);
            -webkit-background-clip:text;
            -webkit-text-fill-color:transparent;
            background-clip:text;
        }
        .divider{
            width:60px;
            height:4px;
            border-radius:2px;
            background:linear-gradient(90deg,#dc2626,#eab308);
            margin:0 auto;
        }
        .card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
        .card-grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}

        @media(max-width:1024px){
            .card-grid{grid-template-columns:repeat(2,1fr)}
            .step-list{grid-template-columns:repeat(2,1fr);gap:28px}
            .nav-panel{gap:6px;padding:8px 12px}
            .nav-item-card{padding:7px 10px;font-size:0.82rem;gap:4px}
            .nav-logo{font-size:1rem}
            .hero-section{min-height:420px}
        }
        @media(max-width:768px){
            .card-grid{grid-template-columns:1fr;gap:16px}
            .card-grid-2{grid-template-columns:1fr;gap:16px}
            .step-list{grid-template-columns:1fr 1fr;gap:20px}
            .nav-panel{flex-wrap:wrap;justify-content:center;gap:5px}
            .nav-spacer{display:none}
            .nav-cta{width:100%;text-align:center;margin-top:6px}
            .nav-cta .btn-gold{width:100%;justify-content:center}
            .hero-section{min-height:360px}
            .hero-content{padding:40px 0}
            .section-pad{padding:40px 0}
            .stat-number{font-size:2rem}
            .container-wide{padding:0 12px}
            .container{padding:0 14px}
            .promo-card-body{padding:16px}
        }
        @media(max-width:520px){
            .nav-panel{border-radius:var(--radius-lg);padding:6px 8px}
            .nav-logo{font-size:0.9rem;padding:5px 8px}
            .nav-item-card{font-size:0.75rem;padding:6px 8px;border-radius:var(--radius-sm)}
            .step-list{grid-template-columns:1fr;gap:16px}
            .hero-section{min-height:300px}
            .hero-content{padding:28px 0}
            .btn-lg{padding:12px 22px;font-size:0.9rem}
            h1{font-size:1.6rem!important}
            h2{font-size:1.3rem!important}
            .stat-number{font-size:1.7rem}
            .faq-question{padding:14px 16px;font-size:0.9rem}
            .faq-answer{padding:0 16px 14px;font-size:0.85rem}
        }

@media(max-width:768px){
                    .stat-card[style*="border:none"]{padding:8px!important}
                    .stat-number{font-size:1.5rem!important}
                }
                @media(max-width:520px){
                    section[style*="grid-template-columns:repeat(4,1fr)"] > div{
                        grid-template-columns:repeat(2,1fr)!important
                    }
                }

@media(max-width:520px){
                    .stats-row{grid-template-columns:repeat(2,1fr)!important;gap:12px!important}
                }

@media(max-width:768px){
                    section[style*="grid-template-columns:1fr 1fr"]{grid-template-columns:1fr!important;gap:24px!important}
                    section[style*="grid-template-columns:1fr 1fr"] div:last-child{order:-1}
                }
