:root {
    --bg-color: #ffffff;
    --text-primary: #1a1a1b;
    --text-secondary: rgba(0, 0, 0, 0.6);
    --accent-color: #007aff;
    --accent-glow: rgba(0, 122, 255, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.05);
    --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(100px);
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    transition: transform 0.2s ease-out;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    top: -15%;
    left: -10%;
    animation: float 20s infinite alternate;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #3b82f6 0%, #2dd4bf 100%);
    bottom: -15%;
    right: -10%;
    animation: float 25s infinite alternate-reverse;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f43f5e 0%, #fbbf24 100%);
    top: 40%;
    left: 40%;
    animation: float 18s infinite alternate;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(100px, 50px) rotate(30deg); }
}

/* Background is handled by body and blobs */

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

.content {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 4rem 2rem;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.1);
    animation: contentFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.logo {
    max-width: 280px;
    height: auto;
    animation: logoFloat 6s ease-in-out infinite;
}

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

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

.coming-soon {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 1.5rem auto;
    border-radius: 2px;
    box-shadow: 0 0 15px var(--accent-glow);
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.5px;
}


.footer {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    text-align: center;
    color: rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
    .coming-soon {
        font-size: 2.5rem;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .content {
        padding: 3rem 1.5rem;
        margin: 0 1rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
}
