body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f8fafc;
    color: #0f172a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 700px;
    padding: 50px;
    text-align: center;
    background: white;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
}

h1 {
    font-size: 52px;
    margin-bottom: 10px;
    color: #2563eb;
    letter-spacing: -1px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: #334155;
    margin: 10px 0;
}

.buttons {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.buttons {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #2563eb;
    color: #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
}

.footer-text {
    margin-top: 20px;
    font-size: 13px;
    color: #64748b;
}