:root {
  --bg: #0a0a0f;
  --panel: #12121a;
  --border: #2a2a3a;
  --yellow: #ffe600;
  --cyan: #00f5ff;
  --pink: #ff2d78;
  --green: #39ff14;
  --purple: #b44fff;
  --orange: #ff6600;
  --white: #f0f0f0;
  --dim: #888;
}

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'VT323', monospace;
  font-size: 20px;
  overflow-x: hidden;
}

/* SCANLINE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.18) 3px,
    rgba(0,0,0,0.18) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  background: var(--bg);
  border-bottom: 2px solid var(--yellow);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  gap: 16px;
}

.nav-logo {
  font-family: 'Press Start 2P', monospace;
  font-size: 13px;
  color: var(--yellow);
  text-shadow: 0 0 12px var(--yellow);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 6px #00f5ff);
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  color: var(--dim);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cyan); text-shadow: 0 0 8px var(--cyan); }

/* TICKER */
.ticker {
  background: var(--yellow);
  color: var(--bg);
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-block;
  animation: tickerScroll 28s linear infinite;
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  letter-spacing: 0.05em;
}
@keyframes tickerScroll {
  from { transform: translateX(100vw); }
  to   { transform: translateX(-100%); }
}

/* FOOTER */
footer {
  border-top: 2px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  font-size: 16px;
  color: var(--dim);
}
footer a { color: var(--cyan); text-decoration: none; }
footer a:hover { text-decoration: underline; }

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

/* PRIVACY */
.legal-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px;
}

.legal-header {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(12px, 3vw, 20px);
  color: var(--yellow);
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 16px;
  color: var(--dim);
  margin-bottom: 40px;
}

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

.legal-section h3 {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--cyan);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.legal-section p, .legal-section li {
  font-size: 19px;
  color: #bbb;
  line-height: 1.7;
}

.legal-section ul {
  padding-left: 24px;
  margin-top: 8px;
}

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

.legal-badge {
  display: inline-block;
  border: 1px solid var(--green);
  color: var(--green);
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  padding: 6px 14px;
  margin-bottom: 32px;
  text-shadow: 0 0 8px var(--green);
}

/* SUPPORT */
.support-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 24px;
}

.support-header {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(12px, 3vw, 20px);
  color: var(--yellow);
  margin-bottom: 8px;
}

.support-sub {
  font-size: 20px;
  color: var(--dim);
  margin-bottom: 40px;
}

.form-group { margin-bottom: 24px; }

.form-label {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  color: var(--cyan);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'VT323', monospace;
  font-size: 20px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 10px rgba(0,245,255,0.2);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select option { background: var(--panel); }

.submit-btn {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  background: var(--cyan);
  color: var(--bg);
  border: none;
  padding: 16px 32px;
  cursor: pointer;
  width: 100%;
  letter-spacing: 0.05em;
  box-shadow: 4px 4px 0 #006b77;
  transition: transform 0.1s, box-shadow 0.1s;
}
.submit-btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 #006b77; }
.submit-btn:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 #006b77; }

.form-note { font-size: 16px; color: var(--dim); margin-top: 8px; }

.success-msg { display: none; text-align: center; padding: 40px 24px; }
.success-msg.show { display: block; }
.success-icon { font-size: 56px; margin-bottom: 16px; }
.success-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 14px;
  color: var(--green);
  margin-bottom: 12px;
  text-shadow: 0 0 12px var(--green);
}
.success-text { font-size: 20px; color: var(--dim); }

@media (max-width: 600px) {
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 7px; }
}
