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

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

main {
    max-width: 500px;
    padding: 3rem 2rem;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.subhead {
    font-size: 1.25rem;
    color: #aaa;
    margin-bottom: 2.5rem;
}

.body-text {
    margin-bottom: 2.5rem;
}

.body-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background: #e50914;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    margin-bottom: 1.5rem;
}

.cta-button:hover {
    background: #f40d18;
    transform: translateY(-2px);
}

.trust-line {
    font-size: 0.85rem;
    color: #666;
}
