:root {
    --neon-cyan: #00ffff;
    --neon-purple: #9333ea;
    --dark-bg: #050505;
    --glass-bg: rgba(10, 10, 10, 0.75);
    --glass-border: rgba(255, 255, 255, 0.05);
    --font-gamer: 'Orbitron', sans-serif;
    --font-sans: 'Inter', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--neon-cyan), var(--neon-purple));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
}

/* Base Styles */
body {
    background-color: var(--dark-bg);
    color: #e5e7eb;
    font-family: var(--font-sans);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.15), transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.12), transparent 30%);
    z-index: 0;
    animation: bgPulse 10s infinite alternate ease-in-out;
    pointer-events: none;
}

@keyframes bgPulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.5; }
    100% { transform: scale(1.1) translate(-2%, -2%); opacity: 1; }
}

nav, main, footer {
    position: relative;
    z-index: 10;
}

/* Utility Classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.text-gradient {
    background: linear-gradient(to right, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.neon-border-cyan {
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
}

.neon-border-purple {
    border: 1px solid rgba(147, 51, 234, 0.2);
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.1);
}

.menu-gradient {
    background: linear-gradient(to right, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.menu-gradient:hover {
    background: none;
    -webkit-text-fill-color: var(--neon-purple);
    color: var(--neon-purple);
}

.btn-purchase {
    background: linear-gradient(to right, var(--neon-cyan), var(--neon-purple));
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.btn-purchase:hover {
    opacity: 0.9;
    box-shadow: 0 0 35px rgba(147, 51, 234, 0.6);
    transform: scale(1.05);
}

@keyframes logo-pulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.4)); }
    50% { transform: scale(1.03); filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.6)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.4)); }
}
.animate-pulse-custom { animation: logo-pulse 2s infinite ease-in-out; }

@keyframes flame-float {
    0%, 100% { transform: translateY(0) scale(1.1); opacity: 0.35; }
    50% { transform: translateY(-15px) scale(1.2); opacity: 0.55; }
}
.animate-flame { animation: flame-float 4s infinite ease-in-out; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) !important;
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

/* Shimmer Effect */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

/* Glow Effect */
.glow-cyan {
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.glow-purple {
    filter: drop-shadow(0 0 10px rgba(147, 51, 234, 0.5));
}

/* Splash Screen Styles */
#splash-screen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    pointer-events: all;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
}

.splash-logo {
    width: 350px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(147, 51, 234, 0.4));
    animation: splashPulse 2s infinite ease-in-out;
}

#splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

@keyframes splashPulse {
    0%, 100% { transform: scale(1); filter: brightness(1) drop-shadow(0 0 30px rgba(147, 51, 234, 0.4)); }
    50% { transform: scale(1.05); filter: brightness(1.3) drop-shadow(0 0 50px rgba(147, 51, 234, 0.8)); }
}
