/* Base Styles & Typography */
:root {
    --bg-color: #0c022d; /* Specifically requested color */
    --text-primary: #ffffff;
    --accent: #66fcf1; /* Keeping accent for animation glow */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Main Container */
.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    width: 100%;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Coming Soon Animated Text */
.coming-soon-container {
    position: relative;
    padding: 10px 0;
}

.coming-soon-text {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    
    /* Setup for gradient scanning animation */
    background: linear-gradient(
        90deg, 
        rgba(255,255,255,0.3) 0%, 
        var(--text-primary) 40%, 
        var(--text-primary) 60%, 
        rgba(255,255,255,0.3) 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    
    animation: shimmer 3s linear infinite, glowPulse 4s ease-in-out infinite alternate;
}

/* Typewriter Effect */
.typewriter {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--accent);
    display: inline-block;
    animation: 
        typing 4s steps(40, end),
        blinkCursor 0.8s infinite;
}

/* Typing animation */
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

/* Blinking cursor */
@keyframes blinkCursor {
    0% { border-color: var(--accent); }
    50% { border-color: transparent; }
    100% { border-color: var(--accent); }
}

/* Underline effect to anchor the text */
.coming-soon-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: slideLine 3s ease-in-out infinite alternate;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

@keyframes glowPulse {
    0% { text-shadow: 0 0 10px rgba(255,255,255,0.1); }
    100% { text-shadow: 0 0 30px rgba(255,255,255,0.4); }
}

@keyframes slideLine {
    0% { transform: scaleX(0.5); opacity: 0.3; }
    100% { transform: scaleX(1.2); opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .logo {
        max-width: 180px;
    }
    .coming-soon-text {
        font-size: 1.5rem;
        letter-spacing: 0.3rem;
    }
}
