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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.content {
    text-align: center;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.logo-container {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5)) 
            drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.coming-soon {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
    animation: fadeIn 1.5s ease-out;
    opacity: 0.8;
}


@media (max-width: 768px) {
    .logo {
        max-width: 200px;
    }
    
    .coming-soon {
        font-size: clamp(1.75rem, 8vw, 3rem);
        letter-spacing: 0.02em;
    }
    
    .logo-container {
        margin-bottom: 2rem;
    }
}
