/* roulang page: index */
:root {
            --bg-main: #060B0E;
            --bg-card: #0F1A24;
            --border-card: #1F3447;
            --accent-green: #10B981;
            --accent-gold: #F59E0B;
            --text-main: #F8FAFC;
            --text-muted: #94A3B8;
        }
        body {
            background-color: var(--bg-main);
            color: var(--text-main);
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            overflow-x: hidden;
        }
        .hero-pattern {
            background-image: radial-gradient(rgba(16, 185, 129, 0.12) 1px, transparent 1px), radial-gradient(rgba(59, 130, 246, 0.08) 1px, transparent 1px);
            background-size: 32px 32px;
            background-position: 0 0, 16px 16px;
        }
        .glass-card {
            background: rgba(15, 26, 36, 0.75);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(31, 52, 71, 0.8);
        }
        .glow-border:hover {
            border-color: rgba(16, 185, 129, 0.6);
            box-shadow: 0 0 25px rgba(16, 185, 129, 0.15);
        }
        .badge-live {
            position: relative;
        }
        .badge-live::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #EF4444;
            margin-right: 6px;
            animation: pulse-dot 1.5s infinite;
        }
        @keyframes pulse-dot {
            0% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(1.3); }
            100% { opacity: 1; transform: scale(1); }
        }
