body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #f1f5f9;
}

.hero {
    background: linear-gradient(135deg, #0f2158 0%, #1e3a8a 50%, #1d4ed8 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(99,179,237,0.08) 0%, transparent 60%),
                        radial-gradient(circle at 80% 20%, rgba(168,139,250,0.08) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; }

.dot-grid {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    z-index: 0;
}

.card {
    background: white; border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden; display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
}
.card-header { padding: 28px 28px 20px; display: flex; align-items: center; gap: 16px; }
.card-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
}
.card-body { padding: 0 28px 24px; flex: 1; }
.card-footer {
    padding: 14px 28px; border-top: 1px solid #f1f5f9;
    display: flex; align-items: center; justify-content: space-between;
}

.tag {
    font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
    padding: 3px 10px; border-radius: 99px; text-transform: uppercase;
}

.stat-bar {
    background: white; border-radius: 12px; padding: 18px 24px;
    display: flex; align-items: center; gap: 14px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.live-dot {
    width: 8px; height: 8px; background: #22c55e;
    border-radius: 50%; animation: pulse 2s infinite; display: inline-block;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.5s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

.lang-btn {
    color: #8ca0d7;
    background: transparent;
}
.lang-btn:hover {
    color: #cfd8f9;
}
.lang-btn.active {
    background: #3b82f6; /* Bright blue for active state */
    color: #ffffff;
}