/* roulang page: index */
:root {
            --primary: #E53935;
            --primary-dark: #C62828;
            --primary-light: #FF6F60;
            --secondary: #1A1A2E;
            --secondary-light: #252540;
            --accent: #FFB300;
            --accent-glow: #FFD54F;
            --bg-light: #F7F8FA;
            --bg-card: #FFFFFF;
            --text-main: #1A1A2E;
            --text-soft: #5A5A72;
            --text-muted: #8A8A9A;
            --border-soft: #E8E8F0;
            --radius-sm: 0.5rem;
            --radius-md: 0.75rem;
            --radius-lg: 1rem;
            --radius-xl: 1.25rem;
            --radius-2xl: 1.5rem;
            --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);
            --shadow-card-hover: 0 12px 32px rgba(0, 0, 0, 0.12);
            --shadow-btn: 0 4px 14px rgba(229, 57, 53, 0.35);
            --shadow-btn-hover: 0 8px 24px rgba(229, 57, 53, 0.5);
            --shadow-nav: 0 2px 20px rgba(0, 0, 0, 0.08);
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            line-height: 1.7;
            color: var(--text-main);
            background-color: #fff;
            overflow-x: hidden;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
        }

        input {
            font-family: inherit;
            outline: none;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 3px solid rgba(229, 57, 53, 0.5);
            outline-offset: 3px;
            border-radius: 4px;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        /* Navigation */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid transparent;
            transition: all var(--transition-smooth);
            padding: 0;
        }

        .site-header.scrolled {
            border-bottom-color: var(--border-soft);
            box-shadow: var(--shadow-nav);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .logo-link {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary);
            letter-spacing: -0.02em;
            white-space: nowrap;
            transition: transform var(--transition-fast);
        }

        .logo-link:hover {
            transform: scale(1.03);
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .nav-list {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-list li a {
            display: inline-block;
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-soft);
            border-radius: 2rem;
            transition: all var(--transition-fast);
            position: relative;
            white-space: nowrap;
        }

        .nav-list li a:hover,
        .nav-list li a.active {
            color: var(--primary);
            background: rgba(229, 57, 53, 0.06);
        }

        .nav-cta-btn {
            display: inline-block;
            padding: 0.55rem 1.4rem;
            font-size: 0.88rem;
            font-weight: 600;
            color: #fff !important;
            background: var(--primary);
            border-radius: 2rem;
            transition: all var(--transition-fast);
            box-shadow: var(--shadow-btn);
            white-space: nowrap;
            margin-left: 0.5rem;
        }

        .nav-cta-btn:hover {
            background: var(--primary-dark);
            box-shadow: var(--shadow-btn-hover);
            transform: translateY(-1px);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            color: var(--text-main);
            padding: 0.4rem;
            cursor: pointer;
            border-radius: var(--radius-sm);
            transition: background var(--transition-fast);
        }

        .mobile-toggle:hover {
            background: rgba(0, 0, 0, 0.04);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 68px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 999;
            flex-direction: column;
            padding: 1.5rem;
            gap: 0.3rem;
            overflow-y: auto;
            transform: translateX(100%);
            transition: transform var(--transition-smooth);
        }

        .mobile-menu.open {
            transform: translateX(0);
            display: flex;
        }

        .mobile-menu a {
            display: block;
            padding: 0.9rem 1.2rem;
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--text-soft);
            border-radius: var(--radius-lg);
            transition: all var(--transition-fast);
        }

        .mobile-menu a:hover,
        .mobile-menu a.active {
            color: var(--primary);
            background: rgba(229, 57, 53, 0.06);
        }

        .mobile-menu .nav-cta-btn {
            text-align: center;
            margin-top: 0.8rem;
            margin-left: 0;
            padding: 0.8rem 1.4rem;
            font-size: 1rem;
        }

        /* Hero */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            background-position: center 30%;
            overflow: hidden;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(26, 26, 46, 0.78) 0%, rgba(26, 26, 46, 0.88) 40%, rgba(26, 26, 46, 0.94) 100%);
            z-index: 1;
        }

        .hero-glow {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(229, 57, 53, 0.35) 0%, transparent 70%);
            top: 20%;
            right: -15%;
            z-index: 2;
            animation: heroGlowPulse 6s ease-in-out infinite;
        }

        @keyframes heroGlowPulse {
            0%,
            100% {
                opacity: 0.5;
                transform: scale(1);
            }
            50% {
                opacity: 0.85;
                transform: scale(1.15);
            }
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            max-width: 800px;
            padding: 2rem 1.5rem;
            margin-top: 2rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            padding: 0.45rem 1.2rem;
            border-radius: 3rem;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(4px);
            animation: fadeInUp 0.7s ease-out;
        }

        .hero-badge .live-dot {
            width: 9px;
            height: 9px;
            background: #4caf50;
            border-radius: 50%;
            animation: livePulse 1.5s ease-in-out infinite;
        }

        @keyframes livePulse {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            font-size: clamp(2.4rem, 5.5vw, 3.8rem);
            font-weight: 900;
            color: #fff;
            line-height: 1.2;
            margin: 0 0 1.2rem;
            letter-spacing: -0.02em;
            animation: fadeInUp 0.7s ease-out 0.1s both;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
        }

        .hero-title .highlight {
            color: var(--accent-glow);
            position: relative;
        }

        .hero-subtitle {
            font-size: clamp(1.05rem, 2vw, 1.25rem);
            color: rgba(255, 255, 255, 0.85);
            margin: 0 auto 2.5rem;
            max-width: 560px;
            line-height: 1.6;
            animation: fadeInUp 0.7s ease-out 0.2s both;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            animation: fadeInUp 0.7s ease-out 0.3s both;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 3rem;
            transition: all var(--transition-bounce);
            cursor: pointer;
            white-space: nowrap;
            letter-spacing: 0.01em;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
            box-shadow: var(--shadow-btn);
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            box-shadow: var(--shadow-btn-hover);
            transform: translateY(-3px);
        }

        .btn-outline {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.55);
        }
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            transform: translateY(-3px);
        }

        .btn-lg {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
        }

        .hero-stats-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2.5rem;
            margin-top: 3.5rem;
            animation: fadeInUp 0.7s ease-out 0.4s both;
        }

        .hero-stat-item {
            text-align: center;
            color: #fff;
        }
        .hero-stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-glow);
            letter-spacing: -0.02em;
        }
        .hero-stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 0.2rem;
        }

        /* Sections */
        .section {
            padding: 5rem 0;
        }
        .section-dark {
            background: var(--secondary);
            color: #fff;
        }
        .section-light {
            background: var(--bg-light);
        }
        .section-white {
            background: #fff;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }
        .section-label {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 0.6rem;
            background: rgba(229, 57, 53, 0.08);
            padding: 0.3rem 1rem;
            border-radius: 2rem;
        }
        .section-title {
            font-size: clamp(1.8rem, 3.5vw, 2.4rem);
            font-weight: 800;
            margin: 0 0 0.8rem;
            letter-spacing: -0.02em;
            line-height: 1.3;
        }
        .section-desc {
            font-size: 1.05rem;
            color: var(--text-soft);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.6;
        }
        .section-dark .section-desc {
            color: rgba(255, 255, 255, 0.7);
        }
        .section-dark .section-title {
            color: #fff;
        }

        /* Cards */
        .card {
            background: #fff;
            border-radius: var(--radius-xl);
            padding: 2rem;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            border: 1px solid var(--border-soft);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-5px);
            border-color: transparent;
        }
        .card-icon {
            width: 52px;
            height: 52px;
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            flex-shrink: 0;
        }
        .card-icon.red {
            background: rgba(229, 57, 53, 0.1);
            color: var(--primary);
        }
        .card-icon.amber {
            background: rgba(255, 179, 0, 0.12);
            color: #e6a000;
        }
        .card-icon.blue {
            background: rgba(30, 100, 220, 0.1);
            color: #1e64dc;
        }
        .card-icon.green {
            background: rgba(56, 180, 100, 0.1);
            color: #38b464;
        }
        .card-title {
            font-size: 1.15rem;
            font-weight: 700;
            margin: 0 0 0.5rem;
            letter-spacing: -0.01em;
        }
        .card-desc {
            font-size: 0.9rem;
            color: var(--text-soft);
            line-height: 1.6;
            flex-grow: 1;
        }
        .card-img-wrap {
            border-radius: var(--radius-lg);
            overflow: hidden;
            margin-bottom: 1.2rem;
            flex-shrink: 0;
            aspect-ratio: 16 / 10;
            background: #f0f0f5;
        }
        .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card:hover .card-img-wrap img {
            transform: scale(1.06);
        }
        .card-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.25rem 0.7rem;
            border-radius: 2rem;
            background: rgba(229, 57, 53, 0.08);
            color: var(--primary);
            margin-bottom: 0.6rem;
            align-self: flex-start;
        }

        /* Stats band */
        .stats-band {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            padding: 3rem 1.5rem;
            background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
            border-radius: var(--radius-2xl);
            margin: 0 1.5rem;
            position: relative;
            overflow: hidden;
        }
        .stats-band::before {
            content: '';
            position: absolute;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(229, 57, 53, 0.2) 0%, transparent 70%);
            top: -60px;
            right: -80px;
            pointer-events: none;
        }
        .stat-block {
            text-align: center;
            position: relative;
            z-index: 1;
            min-width: 120px;
        }
        .stat-block .stat-num {
            font-size: 2.6rem;
            font-weight: 900;
            color: #fff;
            letter-spacing: -0.03em;
            line-height: 1;
        }
        .stat-block .stat-num .plus {
            color: var(--accent);
        }
        .stat-block .stat-text {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 0.4rem;
        }
        .stat-divider {
            width: 1px;
            background: rgba(255, 255, 255, 0.2);
            align-self: stretch;
            min-height: 50px;
            margin: 0 0.5rem;
        }

        /* Timeline / Guide */
        .guide-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 700px;
            margin: 0 auto;
        }
        .guide-item {
            display: flex;
            gap: 1.2rem;
            align-items: flex-start;
            background: #fff;
            border-radius: var(--radius-xl);
            padding: 1.5rem;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-soft);
            transition: all var(--transition-smooth);
        }
        .guide-item:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateX(4px);
        }
        .guide-step-num {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            font-weight: 800;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .guide-step-content h4 {
            margin: 0 0 0.3rem;
            font-size: 1.05rem;
            font-weight: 700;
        }
        .guide-step-content p {
            margin: 0;
            font-size: 0.88rem;
            color: var(--text-soft);
            line-height: 1.5;
        }

        /* FAQ */
        .faq-list {
            max-width: 750px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .faq-item {
            background: #fff;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-soft);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: #d0d0e0;
        }
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 1.2rem 1.5rem;
            font-size: 1rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            color: var(--text-main);
            transition: color var(--transition-fast);
        }
        .faq-question:hover {
            color: var(--primary);
        }
        .faq-icon {
            flex-shrink: 0;
            transition: transform var(--transition-smooth);
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .faq-item.open .faq-icon {
            transform: rotate(180deg);
            color: var(--primary);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 1.5rem 1.2rem;
        }
        .faq-answer p {
            margin: 0;
            font-size: 0.9rem;
            color: var(--text-soft);
            line-height: 1.6;
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            text-align: center;
            padding: 5rem 1.5rem;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            top: -120px;
            left: -100px;
            pointer-events: none;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 179, 0, 0.2) 0%, transparent 70%);
            bottom: -100px;
            right: -80px;
            pointer-events: none;
        }
        .cta-inner {
            position: relative;
            z-index: 1;
            max-width: 600px;
            margin: 0 auto;
        }
        .cta-title {
            font-size: clamp(1.6rem, 3.5vw, 2.2rem);
            font-weight: 800;
            margin: 0 0 1rem;
            letter-spacing: -0.02em;
        }
        .cta-desc {
            font-size: 1.05rem;
            opacity: 0.9;
            margin: 0 0 2rem;
            line-height: 1.6;
        }
        .btn-white {
            background: #fff;
            color: var(--primary);
            font-weight: 700;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .btn-white:hover {
            background: #fefefe;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            transform: translateY(-3px);
        }

        /* Footer */
        .site-footer {
            background: #111118;
            color: rgba(255, 255, 255, 0.7);
            padding: 3rem 1.5rem 2rem;
            text-align: center;
        }
        .footer-logo {
            font-size: 1.4rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.8rem;
            letter-spacing: -0.02em;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            transition: color var(--transition-fast);
        }
        .footer-links a:hover {
            color: #fff;
        }
        .footer-copy {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
            margin: 0;
        }

        /* Live ticker */
        .live-ticker-bar {
            background: var(--secondary);
            color: #fff;
            padding: 0.7rem 0;
            overflow: hidden;
            white-space: nowrap;
            font-size: 0.85rem;
            border-bottom: 2px solid var(--primary);
            position: relative;
            z-index: 5;
        }
        .live-ticker-inner {
            display: inline-flex;
            gap: 3rem;
            animation: tickerScroll 40s linear infinite;
        }
        .live-ticker-inner span {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            flex-shrink: 0;
        }
        .live-ticker-inner .ticker-dot {
            width: 7px;
            height: 7px;
            background: #4caf50;
            border-radius: 50%;
            animation: livePulse 1.5s ease-in-out infinite;
        }
        @keyframes tickerScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-stats-row {
                gap: 1.8rem;
            }
            .hero-stat-number {
                font-size: 1.6rem;
            }
            .stats-band {
                gap: 1.5rem;
                padding: 2.5rem 1rem;
                border-radius: var(--radius-xl);
                margin: 0 1rem;
            }
            .stat-block .stat-num {
                font-size: 2rem;
            }
            .card {
                padding: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .nav-list {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .header-inner {
                height: 60px;
            }
            .site-header {
                padding: 0;
            }
            .hero-section {
                min-height: 90vh;
            }
            .hero-title {
                font-size: 2rem;
            }
            .hero-subtitle {
                font-size: 0.95rem;
            }
            .hero-stats-row {
                gap: 1.2rem;
                margin-top: 2.5rem;
            }
            .hero-stat-number {
                font-size: 1.4rem;
            }
            .hero-stat-label {
                font-size: 0.75rem;
            }
            .section {
                padding: 3.5rem 0;
            }
            .stats-band {
                flex-direction: column;
                align-items: center;
                gap: 1.8rem;
                margin: 0 0.8rem;
                border-radius: var(--radius-xl);
            }
            .stat-divider {
                width: 60%;
                height: 1px;
                min-height: 1px;
                margin: 0;
            }
            .guide-item {
                flex-direction: column;
                gap: 0.8rem;
            }
            .btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }
            .btn-lg {
                padding: 0.85rem 2rem;
                font-size: 1rem;
            }
            .card-img-wrap {
                aspect-ratio: 16 / 9;
            }
            .faq-question {
                padding: 1rem 1.2rem;
                font-size: 0.9rem;
            }
            .faq-item.open .faq-answer {
                padding: 0 1.2rem 1rem;
            }
        }

        @media (max-width: 520px) {
            .hero-section {
                min-height: 85vh;
                background-position: center 40%;
            }
            .hero-title {
                font-size: 1.7rem;
            }
            .hero-subtitle {
                font-size: 0.88rem;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            .hero-buttons .btn {
                width: 100%;
                justify-content: center;
                text-align: center;
            }
            .hero-stats-row {
                gap: 0.9rem;
                flex-wrap: wrap;
            }
            .hero-stat-item {
                flex: 1 1 40%;
                min-width: 100px;
            }
            .hero-stat-number {
                font-size: 1.3rem;
            }
            .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .section-desc {
                font-size: 0.9rem;
            }
            .card {
                padding: 1.2rem;
            }
            .stats-band {
                padding: 2rem 0.8rem;
                gap: 1.5rem;
                margin: 0 0.5rem;
                border-radius: var(--radius-lg);
            }
            .stat-block .stat-num {
                font-size: 1.7rem;
            }
            .footer-links {
                gap: 1rem;
                font-size: 0.8rem;
            }
            .live-ticker-bar {
                font-size: 0.75rem;
                padding: 0.5rem 0;
            }
        }
