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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0f0f23;
    color: #e0e0e0;
    min-height: 100vh;
}

.content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 24px;
    text-align: center;
}

.logo {
    max-width: 260px;
    height: auto;
    margin-bottom: 48px;
}

.coming-soon {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #ffffff;
}

.date {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #888;
    letter-spacing: 1px;
}

.back-link {
    margin-top: 48px;
    display: inline-block;
    color: #aaa;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.back-link:hover {
    color: #fff;
}

@media (max-width: 480px) {
    .logo {
        max-width: 180px;
        margin-bottom: 36px;
    }

    .coming-soon {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }
}
