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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0f;
    color: #b0b0b0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 2rem;
}

.logo span {
    color: #00e5ff;
}

.logo .dot {
    color: #00e5ff;
}

.coming-soon {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.8rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: #c8c8c8;
}

.footer {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
}
