:root {
    --bg: #0a192f;
    --panel: #112240;
    --gold: #d4af37;
    --text-main: #ccd6f6;
    --text-dim: #8892b0;
    --white: #ffffff;
}

body {
    background: var(--bg);
    color: var(--text-main);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* Authority Bar */
.auth-bar {
    background: #020c1b;
    color: var(--gold);
    font-size: 11px;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--bg);
    border-bottom: 1px solid #233554;
}

.logo { font-size: 24px; font-weight: 800; color: var(--white); }
.logo span { color: var(--gold); }
nav a { color: var(--text-dim); text-decoration: none; margin-left: 20px; font-size: 13px; }

/* Hero Section */
.hero { padding: 80px 5%; text-align: center; background: radial-gradient(circle at center, #112240 0%, #0a192f 100%); }
h1 { font-size: 48px; line-height: 1.2; color: var(--white); margin-bottom: 20px; }
.gold-text { color: var(--gold); }
.hero p { max-width: 700px; margin: 0 auto 40px; color: var(--text-dim); line-height: 1.6; }

/* Stats */
.stats-grid { display: flex; justify-content: center; gap: 30px; margin-bottom: 50px; }
.stat-card { background: var(--panel); padding: 20px 40px; border-radius: 10px; border-bottom: 3px solid var(--gold); }
.stat-num { display: block; font-size: 32px; font-weight: bold; color: var(--white); }
.stat-label { color: var(--gold); font-size: 12px; text-transform: uppercase; }

/* Buttons */
.main-btn {
    background: var(--gold);
    color: #000;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}
.main-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3); }

/* Footer */
.legal-footer { background: #020c1b; padding: 50px 5%; text-align: center; }
.footer-note h3 { color: var(--gold); font-size: 16px; margin-bottom: 15px; }
.footer-note p { font-size: 12px; color: #495670; line-height: 2; max-width: 900px; margin: 0 auto; }

/* Trust Pop-up */
.trust-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--panel);
    border-left: 4px solid var(--gold);
    padding: 15px 25px;
    border-radius: 5px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: slideIn 0.5s ease;
}
.trust-popup i { color: #2ebd85; font-size: 18px; }

@keyframes slideIn { from { transform: translateX(-100%); } to { transform: translateX(0); } }