/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Orbitron', monospace;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    min-height: 100vh;
}

#app {
    position: relative;
    min-height: 100vh;
}

/* Stage Management */
.stage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.stage.active {
    opacity: 1;
}

/* Logo Animation Stage */
#logoStage {
    z-index: 2;
}

.logo-container {
    text-align: center;
}

.logo-text {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 255, 255, 0.3);
}

.letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.letter.visible {
    opacity: 1;
    transform: translateY(0);
}

.letter:first-child {
    transform: translateX(-20px);
}

.letter:first-child.visible {
    transform: translateX(0);
}

/* Coming Soon Stage */
#comingSoonStage {
    z-index: 1;
    padding: 2rem;
}

.content-container {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

/* Main Title */
.main-title h1 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
}

.main-title .emoji {
    font-size: 2rem;
    margin-right: 1rem;
    display: inline-block;
}

/* Subtitle */
.subtitle p {
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Call to Action */
.cta p {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fbbf24;
    line-height: 1.6;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.4);
}

.cta .emoji {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    display: inline-block;
}

/* Decorative Dots */
.decorative-dots {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: white;
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse 2s infinite;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.animate-element {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-text {
        font-size: 2.5rem;
    }
    
    .main-title h1 {
        font-size: 2rem;
    }
    
    .main-title .emoji {
        font-size: 1.5rem;
    }
    
    .subtitle p {
        font-size: 1.125rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
    
    .cta .emoji {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 2rem;
    }
    
    .main-title h1 {
        font-size: 1.5rem;
    }
    
    .subtitle p {
        font-size: 1rem;
    }
    
    .cta p {
        font-size: 0.875rem;
    }
}

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

::-webkit-scrollbar-track {
    background: #1e293b;
}

::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}