/* Enhanced Dark Gaming Coming Soon Page */

/* Import Attractive Gaming Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Exo+2:wght@300;400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* Font Families */
.font-orbitron {
    font-family: 'Orbitron', monospace;
}

.font-exo {
    font-family: 'Exo 2', sans-serif;
}

.font-rajdhani {
    font-family: 'Rajdhani', sans-serif;
}

/* Root Variables - Enhanced Dark Gaming Theme */
:root {
    --primary-glow: #00d4ff;
    --secondary-glow: #a855f7;
    --accent-glow: #ec4899;
    --particle-color: rgba(0, 212, 255, 0.6);
    --neon-blue: #00d4ff;
    --neon-purple: #a855f7;
    --neon-pink: #ec4899;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #000000;
    overflow-x: hidden;
}

/* Animated Background */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--particle-color);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    box-shadow: 0 0 10px var(--particle-color), 0 0 20px var(--particle-color);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 8s; }
.particle:nth-child(2) { left: 25%; animation-delay: 1s; animation-duration: 10s; }
.particle:nth-child(3) { left: 40%; animation-delay: 2s; animation-duration: 9s; }
.particle:nth-child(4) { left: 55%; animation-delay: 3s; animation-duration: 7s; }
.particle:nth-child(5) { left: 70%; animation-delay: 4s; animation-duration: 11s; }
.particle:nth-child(6) { left: 85%; animation-delay: 5s; animation-duration: 8s; }
.particle:nth-child(7) { left: 15%; animation-delay: 6s; animation-duration: 12s; }
.particle:nth-child(8) { left: 90%; animation-delay: 7s; animation-duration: 9s; }

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Enhanced Grid Pattern */
.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Enhanced Glow Effects */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: glow-pulse 6s ease-in-out infinite alternate;
}

.glow-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: 10%;
    left: -15%;
    animation-delay: 0s;
}

.glow-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
    bottom: 15%;
    right: -10%;
    animation-delay: 2s;
}

.glow-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes glow-pulse {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.7; transform: scale(1.3); }
}

/* Logo Styles */
.logo-container {
    position: relative;
}

.logo-subtle {
    filter: drop-shadow(0 0 20px var(--primary-glow));
    animation: logo-float 3s ease-in-out infinite;
}

@keyframes logo-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Floating Geometric Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 2px solid;
    animation: float-shapes 15s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    border-color: var(--neon-blue);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.shape-2 {
    width: 40px;
    height: 40px;
    border-color: var(--neon-purple);
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    animation-duration: 18s;
    transform: rotate(45deg);
}

.shape-3 {
    width: 80px;
    height: 80px;
    border-color: var(--neon-pink);
    bottom: 30%;
    left: 20%;
    animation-delay: 10s;
    animation-duration: 22s;
    border-radius: 50%;
}

.shape-4 {
    width: 50px;
    height: 50px;
    border-color: var(--neon-blue);
    top: 40%;
    right: 30%;
    animation-delay: 15s;
    animation-duration: 16s;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

@keyframes float-shapes {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.8;
    }
}

/* Animated Lines */
.animated-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
    animation: line-move 8s ease-in-out infinite;
}

.line-1 {
    width: 200px;
    height: 2px;
    top: 25%;
    left: -200px;
    animation-delay: 0s;
}

.line-2 {
    width: 150px;
    height: 2px;
    top: 65%;
    right: -150px;
    animation-delay: 3s;
    background: linear-gradient(90deg, transparent, var(--secondary-glow), transparent);
}

.line-3 {
    width: 100px;
    height: 2px;
    top: 45%;
    left: -100px;
    animation-delay: 6s;
    background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
}

@keyframes line-move {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 200px));
        opacity: 0;
    }
}

/* Enhanced Text Effects */
.glow-text {
    text-shadow: 
        0 0 10px currentColor,
        0 0 20px currentColor,
        0 0 40px currentColor;
    animation: text-glow 3s ease-in-out infinite alternate;
}

@keyframes text-glow {
    0% {
        text-shadow: 
            0 0 10px currentColor,
            0 0 20px currentColor,
            0 0 40px currentColor;
    }
    100% {
        text-shadow: 
            0 0 20px currentColor,
            0 0 40px currentColor,
            0 0 80px currentColor;
    }
}

.neon-glow {
    text-shadow: 
        0 0 5px var(--neon-blue),
        0 0 10px var(--neon-blue),
        0 0 20px var(--neon-blue),
        0 0 40px var(--neon-blue);
    animation: neon-flicker 2s ease-in-out infinite alternate;
}

@keyframes neon-flicker {
    0%, 100% {
        text-shadow: 
            0 0 5px var(--neon-blue),
            0 0 10px var(--neon-blue),
            0 0 20px var(--neon-blue),
            0 0 40px var(--neon-blue);
    }
    50% {
        text-shadow: 
            0 0 2px var(--neon-blue),
            0 0 5px var(--neon-blue),
            0 0 10px var(--neon-blue),
            0 0 20px var(--neon-blue);
    }
}


/* Animation Classes */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fade-in-up 0.8s ease forwards;
}

.animation-delay-200 { animation-delay: 0.2s; }
.animation-delay-400 { animation-delay: 0.4s; }
.animation-delay-600 { animation-delay: 0.6s; }
.animation-delay-800 { animation-delay: 0.8s; }
.animation-delay-1000 { animation-delay: 1s; }
.animation-delay-1200 { animation-delay: 1.2s; }

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .glow-orb-1 {
        width: 300px;
        height: 300px;
    }
    
    .glow-orb-2 {
        width: 250px;
        height: 250px;
    }
    
    .glow-orb-3 {
        width: 200px;
        height: 200px;
    }
    
    .shape {
        transform: scale(0.8);
    }
    
    .line {
        height: 1px;
    }
}

@media (max-width: 480px) {
    .particles-container .particle {
        width: 3px;
        height: 3px;
    }
    
    .glow-orb-1 {
        width: 250px;
        height: 250px;
    }
    
    .glow-orb-2 {
        width: 200px;
        height: 200px;
    }
    
    .glow-orb-3 {
        width: 150px;
        height: 150px;
    }
    
    .shape {
        transform: scale(0.6);
    }
    
    .glow-text {
        text-shadow: 
            0 0 5px currentColor,
            0 0 10px currentColor,
            0 0 20px currentColor;
    }
    
    .neon-glow {
        text-shadow: 
            0 0 3px var(--neon-blue),
            0 0 6px var(--neon-blue),
            0 0 12px var(--neon-blue);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .particle,
    .logo-subtle,
    .glow-orb,
    .shape,
    .line,
    .glow-text,
    .neon-glow {
        animation: none;
    }
    
    .animate-fade-in-up {
        opacity: 1;
        transform: translateY(0);
        animation: none;
    }
}
