:root {
  --bg: #050508;
  --green: #39ff14;
  --purple: #bf00ff;
  --magenta: #ff00aa;
  --cyan: #00ffff;
  --yellow: #ffff33;
  --border: #2a2a3a;
  --panel: #12121c;
  --font-ui: 'Segoe UI', Verdana, Geneva, Tahoma, sans-serif;
  --font-display: 'Trebuchet MS', Verdana, sans-serif;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--yellow);
  font-family: var(--font-ui);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.site-header {
  background: linear-gradient(180deg, #16162a 0%, #0a0a12 100%);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cyan);
}

.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(0, 255, 255, 0.35));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 0 12px rgba(0, 255, 255, 0.25);
  letter-spacing: 0.5px;
}

.nav a {
  color: var(--yellow);
  text-decoration: none;
  margin-left: 10px;
  padding: 6px 12px;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(180deg, #1a1a28 0%, #101018 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 2px 4px rgba(0, 0, 0, 0.4);
}

.nav a:hover {
  background: linear-gradient(180deg, #ffff66 0%, #cccc00 100%);
  color: var(--bg);
  border-color: #cccc00;
}

.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

.page-content h1 {
  font-family: var(--font-display);
  color: var(--yellow);
  font-size: 28px;
  margin: 0 0 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.page-meta {
  color: #888;
  font-size: 12px;
  margin: 0 0 24px;
}

.page-content h2 {
  font-family: var(--font-display);
  color: var(--cyan);
  font-size: 18px;
  margin: 28px 0 10px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.page-content p,
.page-content li {
  font-size: 14px;
  color: #ccc;
}

.page-content a {
  color: var(--green);
}

.page-content strong {
  color: var(--yellow);
}

.cta-line {
  margin: 20px 0 28px;
  font-size: 15px;
}

.footer {
  text-align: center;
  padding: 24px 16px 32px;
  border-top: 2px solid var(--border);
  font-size: 12px;
  color: #666;
  background: linear-gradient(0deg, #0a0a12 0%, transparent 100%);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}

.footer-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(0, 255, 255, 0.3));
}

.footer-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.footer-links {
  margin: 10px 0;
}

.footer-links a {
  color: var(--cyan);
  text-decoration: none;
  margin: 0 8px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer .contact {
  display: block;
  margin-top: 8px;
  font-size: 11px;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #16162a 0%, #0a0a12 100%);
  border-top: 2px solid var(--border);
  padding: 14px 16px;
  z-index: 200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  color: #aaa;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.4);
}

#cookie-banner p {
  margin: 0;
  max-width: 560px;
  text-align: center;
}

#cookie-banner a {
  color: var(--cyan);
}

#cookie-banner button {
  background: linear-gradient(180deg, #ffff66 0%, #cccc00 100%);
  color: var(--bg);
  border: 2px solid #999900;
  border-radius: 6px;
  font-family: inherit;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 16px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 2px 4px rgba(0, 0, 0, 0.4);
}

#cookie-banner button:hover {
  background: linear-gradient(180deg, #66ffff 0%, #00cccc 100%);
}

#cookie-banner[hidden] {
  display: none;
}
