:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --accent-color: #ffffff;
    --accent-glow: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Animated Background Blobs */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(120px);
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.blob-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0) 70%);
    top: -20%;
    left: -10%;
    animation: float 25s infinite alternate;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0) 70%);
    bottom: -15%;
    right: -10%;
    animation: float 30s infinite alternate-reverse;
}

.blob-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0) 70%);
    top: 40%;
    left: 40%;
    animation: float 20s infinite alternate;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(150px, 100px) scale(1.2); }
}

/* Main Container */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 900px;
    padding: 2rem;
    text-align: center;
}

.content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 48px;
    padding: 5rem 3rem;
    box-shadow: 0 50px 100px -30px rgba(0, 0, 0, 0.5);
    animation: contentFadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

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

.logo-wrapper {
    margin-bottom: 3rem;
}

.logo {
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.1));
    animation: logoReveal 1.2s ease-out, logoFloat 8s ease-in-out infinite 1.2s;
}

@keyframes logoReveal {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.text-wrapper {
    margin-bottom: 3rem;
}

.coming-soon {
    font-family: var(--font-main);
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: lowercase;
}

.divider {
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin: 2rem auto;
    position: relative;
}

.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff;
}

.tagline {
    font-size: 1.4rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pulse {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    position: relative;
}

.pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: pulseAni 2s infinite;
}

@keyframes pulseAni {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

.footer {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
    .coming-soon {
        font-size: 2.8rem;
    }
    
    .logo {
        max-width: 240px;
    }
    
    .content {
        padding: 4rem 1.5rem;
        margin: 0 1rem;
        border-radius: 32px;
    }
    
    .tagline {
        font-size: 1rem;
    }
}
