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

body {
    background-color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 80vw;
    max-height: 60vh;
    height: 400px;
    width: auto;
    object-fit: contain;
    margin-bottom: 2rem;
}

.coming-soon {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6b7280;
}

@media (max-width: 640px) {
    .logo {
        height: 250px;
    }
    .coming-soon {
        font-size: 1.25rem;
    }
}
