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

:root {
    --primary: #ffffff;
    --accent: #3b82f6;
    --bg-overlay: rgba(0, 0, 0, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    animation: zoomOut 20s infinite alternate linear;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

main {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
}

.content-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.5s ease-out;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.coming-soon {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: var(--text-shadow);
}

.accent {
    color: var(--accent);
    background: linear-gradient(to right, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    opacity: 0.8;
}

footer {
    font-size: 0.9rem;
    opacity: 0.5;
    letter-spacing: 0.05rem;
}

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

@keyframes zoomOut {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

@media (max-width: 600px) {
    .content-card {
        padding: 3rem 1.5rem;
    }
    
    .logo {
        margin-bottom: 2rem;
    }
    
    .description {
        font-size: 1rem;
    }
}
