:root {
    --primary: #00FFD1;
    --secondary: #00B4D8;
    --glow-color: rgba(0, 255, 209, 0.5);
}

/* Page Load Speed Optimization */
.hero-bg {
    position: fixed;
    inset: 0;
    /* Use a compressed WebP image for better SEO score */
    background: url('./360_F_605639623_v9uvhXjM8BpdmBmJzREZ9yduy5LCYZH6.jpg') center/cover no-repeat; 
    z-index: -3;
    animation: gentlePan 20s infinite alternate ease-in-out;
}

@keyframes gentlePan {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(2, 2, 10, 0.4) 0%, rgba(2, 2, 10, 0.98) 90%);
    z-index: -2;
}

.orbitron { font-family: 'Orbitron', sans-serif; }

.gradient-text {
    background: linear-gradient(135deg, #00FFD1, #ffffff, #00B4D8);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 3s linear infinite;
}

@keyframes shineText { to { background-position: 200% center; } }

.text-glow { text-shadow: 0 0 15px var(--glow-color); }

/* Logo Animation */
.logo-glow {
    position: absolute;
    inset: -20px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.2;
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
}

.float-logo { animation: float 6s infinite ease-in-out; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #000 !important;
    padding: 18px;
    transition: 0.4s;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--glow-color);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

/* Stats Box */
.stat-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 10px;
    border-radius: 24px;
    text-align: center;
}

.stat-value { font-family: 'Orbitron'; font-size: 1.4rem; font-weight: 900; }
.stat-label { font-size: 0.65rem; letter-spacing: 2px; margin-top: 4px; }

/* Fireflies */
#fireflies-root { position: fixed; inset: 0; pointer-events: none; z-index: -1; }
.firefly { position: absolute; background: var(--primary); border-radius: 50%; box-shadow: 0 0 10px var(--primary); }