:root {
    --bg-color: #000;
    --text-color: #fff;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --secondary-opacity: 0.8;
}

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

body, html {
    height: 100%;
    width: 100%;
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: #000;
    margin: 0;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&q=80&w=2047');
    background-size: cover;
    background-position: center;
    filter: blur(5px); /* Reduced from 15px for better visibility */
    transform: scale(1.05); /* Slightly reduced scale to match smaller blur */
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    padding: 3rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    opacity: var(--secondary-opacity);
}

.hero {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.launch-date {
    font-size: 0.9rem;
    opacity: var(--secondary-opacity);
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 100px;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    margin-bottom: 3rem;
}

.cta-button:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.coming-soon-wrapper h2 {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.6;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 3rem;
}

.info-col h3 {
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 1rem;
    opacity: var(--secondary-opacity);
}

.info-col p {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 300;
}

.info-col a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
}

.info-col a:hover {
    opacity: 0.7;
}

.social-link {
    text-decoration: underline !important;
    text-underline-offset: 4px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 2rem 1.5rem;
        overflow-y: auto;
        display: block; /* Disable flex-between for scrollability if content grows */
    }

    .logo {
        margin-bottom: 4rem;
    }

    .hero {
        margin-bottom: 6rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding-bottom: 2rem;
    }
    
    body {
        overflow-y: auto;
    }
}
