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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
}

header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.25rem;
    color: #888;
    font-weight: 300;
}

.coming-soon {
    margin: 3rem 0;
    padding: 2rem;
    border: 1px solid #222;
    border-radius: 8px;
    background-color: #111;
}

.coming-soon p {
    font-size: 1rem;
    line-height: 1.6;
    color: #aaa;
}

footer {
    margin-top: 3rem;
    font-size: 0.85rem;
    color: #555;
}
