:root {
    --bg: #0a0a0a;
    --primary: #ffffff;
    --secondary: #ccc;
    --muted: #7a7a7a;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-heading: "bahnschrift", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background: radial-gradient(circle at center, #111 0%, #050505 100%);
    color: var(--primary);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 40px 20px;
}

.logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 30px;
    opacity: 0.95;
    width: 100%;
}

h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.subtitle {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.coming-soon {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
}

.divider {
    width: 60px;
    height: 2px;
    background: #333;
    margin: 30px auto;
}