@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');
@import url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/style.css');

:root {
  --bg-page: #050510;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-border: rgba(255, 255, 255, 0.09);
  --text-main: #f5f7fb;
  --text-muted: #a8afc0;
  --primary: #8b5cf6;
  --primary-hover: #a78bfa;
  --font-heading: 'Geist Sans', 'DM Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.18), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.12), transparent 30rem),
    var(--bg-page);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.7;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 5%;
  background: rgba(5, 5, 16, 0.82);
  border-bottom: 1px solid var(--bg-card-border);
  backdrop-filter: blur(18px);
}

.logo-container,
.lang-option,
.cta-button,
.footer a,
.privacy-policy-back {
  color: inherit;
  text-decoration: none;
}

.logo-container {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.lang-option.active,
.lang-option:hover {
  color: var(--text-main);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(139, 92, 246, 0.42);
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.14);
  font-weight: 600;
}

.privacy-policy-section {
  padding: 80px 5% 60px;
}

.privacy-policy-container {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 0 24px;
}

.privacy-policy-card {
  padding: clamp(1.25rem, 4vw, 3rem);
  border: 1px solid var(--bg-card-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

.privacy-policy-back {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.privacy-policy-back:hover,
.privacy-policy-container a {
  color: var(--primary-hover);
}

h1,
h2 {
  font-family: var(--font-heading);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.25rem, 7vw, 4rem);
}

.privacy-policy-updated {
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

h2 {
  margin: 2.1rem 0 0.75rem;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
}

p {
  margin: 0 0 1rem;
  color: #d9deea;
  font-size: 1rem;
}

.footer {
  padding: 2rem 5% 2.5rem;
  border-top: 1px solid var(--bg-card-border);
  color: var(--text-muted);
}

.footer-content,
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer a:hover {
  color: var(--text-main);
}

.footer-bottom {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer-bottom p {
  color: var(--text-muted);
}

@media (max-width: 720px) {
  .navbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .privacy-policy-section {
    padding: 48px 5% 40px;
  }
}
