/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background-color: #111827;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    padding: 20px 0;
}

.logo h1 {
    font-size: 32px;
    font-weight: 700;
    color: #60a5fa;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
}

.hero h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f9fafb;
}

.tagline {
    font-size: 20px;
    color: #9ca3af;
    margin-bottom: 40px;
    max-width: 600px;
}

.status {
    margin-top: 20px;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: #1e3a8a;
    color: #93c5fd;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Success/Error Pages */
.message-page {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
}

.icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.success-icon {
    color: #10b981;
}

.error-icon {
    color: #ef4444;
}

.message-page h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #f9fafb;
}

.message-page p {
    font-size: 18px;
    color: #9ca3af;
    margin-bottom: 32px;
    max-width: 500px;
}

.button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.button:hover {
    background-color: #2563eb;
}

.button-secondary {
    background-color: #6b7280;
}

.button-secondary:hover {
    background-color: #4b5563;
}

/* Legal Pages */
.legal-page {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #f9fafb;
}

.legal-page .updated {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 32px;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #f3f4f6;
}

.legal-page p, .legal-page li {
    font-size: 16px;
    color: #d1d5db;
    margin-bottom: 16px;
}

.legal-page ul, .legal-page ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-page li {
    margin-bottom: 8px;
}

/* Footer */
footer {
    padding: 40px 0 20px;
    text-align: center;
    border-top: 1px solid #374151;
    margin-top: auto;
}

footer nav {
    margin-bottom: 16px;
}

footer nav a {
    color: #60a5fa;
    text-decoration: none;
    margin: 0 16px;
    font-size: 14px;
}

footer nav a:hover {
    text-decoration: underline;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }

    .tagline {
        font-size: 18px;
    }

    .message-page h2 {
        font-size: 28px;
    }

    .legal-page h2 {
        font-size: 28px;
    }

    .legal-page h3 {
        font-size: 20px;
    }

    footer nav a {
        display: block;
        margin: 8px 0;
    }
}
