body {
    margin: 0;
    height: 100vh;
    background: #000;
    color: #fff;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.container {
    text-align: center;
    margin-top: 30vh;
    max-width: 900px;
    padding: 0 24px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

p {
    font-size: 1.15rem;
    color: #a1a1aa;
    margin-bottom: 1.5rem;
}

.links {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #71717a;
}

a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

.divider {
    margin: 0 10px;
    color: #3f3f46;
}