:root {
    --primary-glow: #3a86ff;
    --secondary-glow: #8338ec;
    --bg-deep: #050505;
    --card-glass: rgba(255, 255, 255, 0.03);
    --text-main: #f8f9fa;
    --text-dim: #94a3b8;
    --border-glass: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Navigation — matches index.html */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-glass);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    height: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-glow), var(--secondary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-tabs {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.nav-tabs a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-tabs a:hover { color: var(--primary-glow); }

.lang-picker {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
}

/* Footer — matches index.html */
footer {
    border-top: 1px solid var(--border-glass);
    padding: 80px 24px 40px;
    text-align: center;
    color: var(--text-dim);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover { color: var(--primary-glow); }

/* Legal content */
.legal-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 140px 24px 80px;
}

.legal-page h1 {
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.legal-date {
    color: var(--text-dim);
    font-size: 15px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-glass);
}

.legal-intro {
    color: var(--text-dim);
    font-size: 16px;
    margin-bottom: 36px;
}

.legal-section {
    margin-bottom: 32px;
}

.legal-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.legal-section p,
.legal-section li {
    color: var(--text-dim);
    font-size: 15px;
    margin-bottom: 12px;
}

.legal-section a {
    color: var(--primary-glow);
    text-decoration: none;
    transition: 0.3s;
}

.legal-section a:hover { opacity: 0.85; }

.legal-section ul {
    padding-left: 24px;
    margin-bottom: 12px;
}

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

.legal-contact {
    background: var(--card-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 24px;
    margin-top: 16px;
}

.legal-contact p {
    color: var(--text-dim);
    font-size: 15px;
    margin-bottom: 6px;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-glass);
}

.legal-links a {
    font-size: 14px;
    color: var(--text-dim);
    text-decoration: none;
    transition: 0.3s;
}

.legal-links a:hover { color: var(--primary-glow); }

@media (max-width: 768px) {
    .nav-tabs { display: none; }
}
