* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8fafc;
    color: #1f2937;
    line-height: 1.6;
}

a {
    color: #ff6900;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.brand {
    font-weight: 700;
    text-decoration: none;
    color: #111827;
}

.site-header nav a {
    margin-left: 16px;
    text-decoration: none;
    color: #4b5563;
    font-size: 14px;
}

.container {
    max-width: 760px;
    margin: 32px auto;
    padding: 0 16px;
}

.card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.card h1 {
    margin-top: 0;
    font-size: 1.6rem;
}

.legal h2 {
    margin-top: 24px;
    font-size: 1.1rem;
}

.alert {
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-danger {
    background: #ef4444;
    color: #fff;
}

.btn-secondary {
    background: #e5e7eb;
    color: #374151;
}

.links-list {
    padding-left: 20px;
}

.muted {
    color: #6b7280;
    font-size: 14px;
}

.site-footer {
    text-align: center;
    padding: 24px;
    color: #6b7280;
    font-size: 13px;
}

.site-footer a {
    color: #6b7280;
}
