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

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 2rem;
}

.content {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.title {
    font-family: 'Tenor Sans', sans-serif;
    font-size: clamp(2.5rem, 10vw, 5.5rem);
    font-weight: 400;
    margin-bottom: 4rem;
    color: #000;
    letter-spacing: 0.1em;
}

.message {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.coming-soon {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 1rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.delay-1 {
    animation-delay: 0.5s;
}

.delay-2 {
    animation-delay: 1s;
}
