/* ProMaxPicks - Main Stylesheet */
/* Dark sporty theme - Mobile First */

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121e;
    --bg-card: #1a1a2e;
    --bg-card-hover: #222240;
    --green: #00ff88;
    --green-dark: #00cc6a;
    --gold: #ffd700;
    --gold-dark: #ccac00;
    --red: #ff4444;
    --orange: #ff8800;
    --blue: #4488ff;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #666680;
    --border: #2a2a40;
    --border-glow: rgba(0, 255, 136, 0.3);
    --gradient-green: linear-gradient(135deg, #00ff88, #00cc6a);
    --gradient-gold: linear-gradient(135deg, #ffd700, #ff8800);
    --gradient-dark: linear-gradient(180deg, #12121e, #0a0a0f);
    --shadow-green: 0 0 30px rgba(0, 255, 136, 0.2);
    --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }

a { color: var(--green); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-dark); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 20px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100vw;
    overflow: visible;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar-brand .pro { color: var(--green); }
.navbar-brand .max { color: var(--gold); }

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar-menu a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar-menu a:hover, .navbar-menu a.active {
    color: var(--green);
    background: rgba(0, 255, 136, 0.1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-green {
    background: var(--gradient-green);
    color: #000;
    box-shadow: var(--shadow-green);
}
.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.4);
    color: #000;
}

.btn-gold {
    background: var(--gradient-gold);
    color: #000;
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
    color: #000;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-primary);
}
.btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    animation: pulse-bg 8s ease-in-out infinite alternate;
}

@keyframes pulse-bg {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.1); opacity: 0.7; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 .highlight-green { color: var(--green); }
.hero h1 .highlight-gold { color: var(--gold); }

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--green);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CARDS ===== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}

.card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.pricing-card.featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.pricing-card.featured .pricing-badge {
    position: absolute;
    top: 16px;
    right: -30px;
    background: var(--gradient-gold);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-tier {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.pricing-card:not(.featured) .pricing-tier { color: var(--green); }
.pricing-card.featured .pricing-tier { color: var(--gold); }

.pricing-name {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.pricing-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.pricing-option:hover, .pricing-option.selected {
    border-color: var(--green);
    background: rgba(0, 255, 136, 0.05);
}

.pricing-card.featured .pricing-option:hover,
.pricing-card.featured .pricing-option.selected {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.05);
}

.pricing-option-label {
    font-weight: 600;
    font-size: 0.95rem;
}

.pricing-option-price {
    font-weight: 800;
    font-size: 1.2rem;
}

.pricing-option-save {
    font-size: 0.75rem;
    color: var(--green);
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin: 24px 0;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 800;
    font-size: 1.1rem;
}

.pricing-card.featured .pricing-features li::before {
    color: var(--gold);
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.step-card {
    text-align: center;
    padding: 32px 24px;
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--green);
    border: 2px solid var(--green);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.step-card h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== PICKS DISPLAY ===== */
.pick-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.pick-card.tier-max { border-left: 4px solid var(--green); }
.pick-card.tier-promax { border-left: 4px solid var(--gold); }

.pick-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.pick-tier-badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pick-tier-badge.max {
    background: rgba(0, 255, 136, 0.15);
    color: var(--green);
}

.pick-tier-badge.promax {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
}

.pick-sport {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pick-matchup {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pick-matchup .vs {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.9rem;
    margin: 0 8px;
}

.pick-label {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--green);
    margin-bottom: 8px;
}

.pick-card.tier-promax .pick-label { color: var(--gold); }

.pick-confidence {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.confidence-bar {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.confidence-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.confidence-fill.high { background: var(--green); }
.confidence-fill.very-high { background: var(--blue); }
.confidence-fill.elite { background: var(--gold); }

.confidence-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pick-locked {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.pick-locked .lock-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.3;
}

.pick-locked p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* Pick result badges */
.result-badge {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.result-badge.win { background: rgba(0, 255, 136, 0.2); color: var(--green); }
.result-badge.loss { background: rgba(255, 68, 68, 0.2); color: var(--red); }
.result-badge.push { background: rgba(255, 136, 0, 0.2); color: var(--orange); }
.result-badge.pending { background: rgba(68, 136, 255, 0.2); color: var(--blue); }

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.code-input {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 12px;
    font-family: 'Courier New', monospace;
}

/* ===== AUTH PAGES ===== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
}

.auth-card .logo {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.auth-card .subtitle {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 0.9rem;
}

/* ===== DASHBOARD ===== */
.dashboard {
    padding-top: 80px;
    min-height: 100vh;
}

.dashboard-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.dashboard-greeting h2 {
    font-size: 1.3rem;
}

.dashboard-greeting p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.dashboard-content {
    padding: 0 20px 40px;
}

.sub-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
}

.sub-status.active {
    background: rgba(0, 255, 136, 0.1);
    color: var(--green);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.sub-status.inactive {
    background: rgba(255, 68, 68, 0.1);
    color: var(--red);
    border: 1px solid rgba(255, 68, 68, 0.2);
}

/* ===== WARNING BANNER ===== */
.warning-banner {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--red);
}

.warning-banner .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ===== RECORD TRACKER ===== */
.record-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.record-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}

.record-value {
    font-size: 2rem;
    font-weight: 900;
}

.record-value.green { color: var(--green); }
.record-value.red { color: var(--red); }
.record-value.gold { color: var(--gold); }

.record-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 4px 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--green);
}

.footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 16px auto 0;
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===== ADMIN ===== */
.admin-layout {
    display: flex;
    min-height: 100vh;
    padding-top: 64px;
}

.admin-sidebar {
    width: 240px;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border);
    padding: 20px 0;
    position: fixed;
    top: 64px;
    bottom: 0;
    overflow-y: auto;
}

.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.admin-sidebar a:hover, .admin-sidebar a.active {
    color: var(--green);
    background: rgba(0, 255, 136, 0.05);
    border-right: 3px solid var(--green);
}

.admin-main {
    flex: 1;
    margin-left: 240px;
    padding: 24px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.admin-table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.admin-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        flex-shrink: 0;
        z-index: 1001;
    }

    .navbar {
        padding: 0 12px;
        overflow: visible;
    }

    .navbar-brand {
        flex-shrink: 1;
        min-width: 0;
        font-size: 1.2rem;
    }

    .navbar-menu {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--border);
        z-index: 1000;
    }

    .navbar-menu.open { display: flex; }

    .hero { padding: 100px 16px 40px; }
    .hero-stats { gap: 24px; }
    .hero-stat-value { font-size: 1.8rem; }

    .section { padding: 40px 16px; }

    .pricing-grid { grid-template-columns: 1fr; }

    .admin-sidebar {
        display: none;
    }

    .admin-main {
        margin-left: 0;
    }

    .admin-table {
        display: block;
        overflow-x: auto;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===== UTILITIES ===== */
.text-green { color: var(--green); }
.text-gold { color: var(--gold); }
.text-red { color: var(--red); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.hidden { display: none !important; }

/* ===== LOADING ===== */
.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--border);
    border-top-color: var(--green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    animation: slideIn 0.3s ease-out;
    max-width: 360px;
}

.toast.success { border-left: 4px solid var(--green); }
.toast.error { border-left: 4px solid var(--red); }
.toast.warning { border-left: 4px solid var(--orange); }

@keyframes slideIn {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding-top: 100px;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 60px;
}

.legal-page h1 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.legal-page .updated {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--green);
}

.legal-page p, .legal-page li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

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