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

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

.container {
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.tagline {
    font-size: 24px;
    color: #888;
    margin-bottom: 40px;
}

.coming-soon {
    font-size: 18px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: #444;
}

@media (max-width: 768px) {
    h1 {
        font-size: 48px;
    }
    
    .tagline {
        font-size: 18px;
    }
    
    .coming-soon {
        font-size: 14px;
    }
}