:root {
  --bg: #0b0b0c;
  --panel: #101214;
  --line: #1e2126;
  --text: #f6f7f9;
  --muted: #b8bcc6;
  --accent: #00ffee;
  --accent-2: #80ccc9;
  --radius: 16px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font: 16px/1.7 var(--font);
  margin: 0;
  padding: 0;
}

.privacy-wrap {
  max-width: 720px;
  margin: 40px auto 0 auto;
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 36px 28px 24px 28px;
  position: relative;
}

header h1 {
  font-size: 2.1rem;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: .5px;
}

.privacy-date {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 24px;
}

main section {
  margin-bottom: 32px;
}

h2 {
  font-size: 1.18rem;
  color: var(--accent-2);
  margin-top: 28px;
  margin-bottom: 10px;
  letter-spacing: .2px;
}

ul {
  margin: 0 0 18px 18px;
  padding: 0;
}

li {
  margin-bottom: 8px;
  color: var(--text);
}

p {
  margin-bottom: 18px;
  color: var(--muted);
}

a {
  color: var(--accent);
  text-decoration: underline;
}

footer {
  margin-top: 32px;
  text-align: left;
}

.privacy-back {
  color: var(--accent-2);
  font-size: 1rem;
  text-decoration: none;
  padding: 8px 0;
  display: inline-block;
  transition: color .15s;
}
.privacy-back:hover {
  color: var(--accent);
}

.privacy-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  background: transparent;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--accent-2);
  text-decoration: none;
  font-size: 1rem;
  transition: color .15s;
}
.footer-links a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.footer-meta {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 0;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 18px;
  gap: 0;
  background: transparent;
}
.footer-main-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-main-links a {
  color: var(--accent-2);
  text-decoration: none;
  font-size: 1rem;
  transition: color .15s;
}
.footer-main-links a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.footer-meta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.footer-meta-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 2px;
}
.footer-meta-links a {
  color: var(--accent);
  text-decoration: none;
  font-size: 1rem;
  transition: color .15s;
}
.footer-meta-links a:hover {
  color: var(--accent-2);
  text-decoration: underline;
}
.social {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 6px;
}
.social a {
  display: flex;
  align-items: center;
  color: var(--accent-2);
  font-size: 22px;
  transition: color .15s;
}
.social a:hover {
  color: var(--accent);
}
.social svg {
  display: block;
}

/* Cookies Banner */
.cookies-banner {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(16,18,20,0.98);
  color: var(--text);
  width: 100%;
  z-index: 9999;
  box-shadow: 0 -2px 18px rgba(0,255,238,0.08);
  padding: 0;
}
.cookies-banner-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cookies-banner a {
  color: var(--accent);
  text-decoration: underline;
}
.cookies-banner .btn {
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 8px;
  border: none;
  font-weight: 700;
  padding: 8px 18px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,255,238,0.12);
  transition: background .15s, color .15s;
}
.cookies-banner .btn:hover {
  background: var(--accent-2);
  color: var(--accent-ink);
}

.privacy-home-btn {
  position: absolute;
  top: 24px;
  left: 32px;
  color: var(--accent);
  background: transparent;
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
  padding: 6px 0;
  z-index: 10;
  transition: color .15s;
}
.privacy-home-btn:hover {
  color: var(--accent-2);
  text-decoration: underline;
}
