:root {
    --primary: #00FFD1;
    --secondary: #00B4D8;
    --accent: #7000ff;
    --glow-color: rgba(0, 255, 209, 0.6);
}

/* Background Configuration */
.hero-bg {
    position: fixed;
    inset: 0;
    background: url('./360_F_605639623_v9uvhXjM8BpdmBmJzREZ9yduy5LCYZH6.jpg') center/cover no-repeat;
    z-index: -3;
    background-blend-mode: darken;
    animation: gentlePan 30s infinite alternate ease-in-out;
}

@keyframes gentlePan {
    from { transform: scale(1.1) translateX(-2%); }
    to { transform: scale(1.2) translateX(2%); }
}

.overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(2, 2, 10, 0.3) 0%, rgba(2, 2, 10, 0.95) 85%);
    z-index: -2;
}

/* Typography Helpers */
.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 10px var(--glow-color), 0 0 20px var(--glow-color);
    animation: flicker 4s infinite alternate;
}

@keyframes flicker {
    0%, 100% { opacity: 1; filter: brightness(1); }
    50% { opacity: 0.9; filter: brightness(1.2); }
}

/* Logo Animation - Breathing Glow */
.logo-glow {
    position: absolute;
    inset: -15px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.3); opacity: 0.5; }
}

.float-logo {
    animation: floatBal 5s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(0, 255, 209, 0.2);
}

@keyframes floatBal {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

/* Premium Primary Button with Shimmer */
.btn-primary {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: black !important;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.6);
    transform: rotate(30deg);
    transition: none;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -60%; }
    100% { left: 150%; }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px var(--glow-color);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

/* Stat Cards Glow */
.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.stat-box:hover {
    border-color: var(--primary);
    background: rgba(0, 255, 209, 0.05);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 900;
    font-family: 'Orbitron';
    letter-spacing: -0.05em;
}

/* Firefly Enhanced Glow */
#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), 0 0 20px var(--primary);
}