* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    color: #e5e7eb;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.container {
    text-align: center;
    padding: 40px;
    max-width: 500px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.divider {
    margin: 32px auto;
    width: 60px;
    height: 4px;
    background: #38bdf8;
    border-radius: 2px;
}

.small {
    font-size: 0.9rem;
    opacity: 0.6;
}