:root {
  --bg:      #0a0e14;
  --bg2:     #0f1620;
  --card:    #121a26;
  --accent:  #00d4ff;
  --accent2: #7c4dff;
  --text:    #e6edf3;
  --muted:   #8b9bb0;
  --border:  #1f2937;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

h2 {
  font-size: 42px;
  margin-bottom: 8px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.section-line {
  display: block;
  width: 60px;
  height: 3px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.6);
}

.section-sub {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 16px;
}

.status-msg  { font-size: 13px; margin-top: 10px; }
.status-ok   { color: #4ade80; }
.status-err  { color: #ff6b6b; }
.small-muted { font-size: 12px; color: var(--muted); margin-top: 6px; }

/* ── Consent checkbox ── */
.consent-label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--muted); line-height: 1.5;
  cursor: pointer; margin-top: 4px;
}
.consent-label input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--accent); cursor: pointer;
}
.consent-label a { color: var(--accent); text-decoration: underline; }

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 9999; width: calc(100% - 48px); max-width: 860px;
  background: rgba(10,14,20,.92);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(0,212,255,.2);
  border-radius: 16px; padding: 18px 24px;
  display: flex; align-items: center; gap: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
  flex-wrap: wrap;
}
.cookie-text { flex: 1; font-size: 13px; color: var(--muted); line-height: 1.5; min-width: 240px; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-btn {
  flex-shrink: 0; padding: 10px 24px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #000; font-weight: 700; font-size: 13px;
  border: none; border-radius: 10px; cursor: pointer; font-family: inherit;
  transition: .2s;
}
.cookie-btn:hover { opacity: .88; }

/* ── Footer requisites ── */
.footer-requisites { font-size: 11px; color: var(--muted); opacity: .6; margin-top: 4px; }
