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

/* Full screen layout */
body {
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Container holding logo + text */
.container {
    display: flex;
    align-items: center; /* vertical alignment */
    justify-content: center;
    gap: 40px;
}

/* Logo */
.logo {
    max-width: 300px;
    width: 80%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

/* Coming soon text */
.coming-soon {
    color: white;
    font-size: 12px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Mobile: stack logo above text */
@media (max-width: 600px) {
    .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .logo {
        max-width: 220px;
    }
}

/* Subtle floating animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}