:root {
    --primary: #496df1;
    --secondary: #00bfff;
    --bg-dark: #050a14;
    --bg-gradient: linear-gradient(135deg, #0b1120 0%, #050a14 100%);
    --card-bg: rgba(255, 255, 255, 0.03);
    --text-main: #ffffff;
    --text-muted: #a0aec0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    background-image: var(--bg-gradient);
    color: var(--text-main);
    line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Navbar */
.navbar { height: 80px; display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-container { width: 100%; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: bold; font-size: 1.3rem; }
.logo-circle { width: 35px; height: 35px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* Hero */
.hero { padding: 100px 0; text-align: center; }
.hero-title { font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; }
.highlight { color: var(--primary); background: linear-gradient(to right, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { color: var(--text-muted); font-size: 1.2rem; max-width: 600px; margin: 0 auto 40px; }

/* Buttons */
.btn-primary, .btn-main { background: var(--primary); color: #fff; text-decoration: none; padding: 12px 25px; border-radius: 8px; font-weight: 600; transition: 0.3s; }
.btn-main { padding: 16px 35px; font-size: 1.1rem; box-shadow: 0 10px 20px rgba(73,109,241,0.2); }
.btn-secondary { background: rgba(255,255,255,0.05); color: #fff; text-decoration: none; padding: 16px 35px; border-radius: 8px; margin-left: 15px; transition: 0.3s; }
.btn-text { color: var(--text-muted); text-decoration: none; margin-right: 20px; }
.btn-primary:hover, .btn-main:hover { transform: translateY(-3px); filter: brightness(1.2); }

/* Features */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin: 50px 0; }
.card { background: var(--card-bg); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; text-align: center; }
.card:hover { transform: translateY(-10px); border-color: var(--primary); background: rgba(255,255,255,0.06); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.card h3 { color: var(--secondary); margin-bottom: 15px; }
.card p { color: var(--text-muted); }

/* Footer */
.footer { padding: 60px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-links { margin-bottom: 15px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; margin: 0 10px; }
.footer-links a:hover { color: var(--primary); }

/* Legal Containers */
.legal-container { max-width: 800px; margin: 80px auto; padding: 0 20px; min-height: 60vh; }
.last-updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 30px; }

@media (max-width: 768px) {
    .grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.5rem; }
    .btn-secondary { margin-left: 0; margin-top: 15px; display: block; }
    .btn-main { display: block; }
    .nav-buttons .btn-text { display: none; }
}
