/* BanditBytes — dark gaming one-pager */

:root {
  --bg: #0e1116;
  --bg-2: #12161d;
  --bg-3: #171c25;
  --border: #22303f;
  --border-2: #2b3a4d;
  --text: #c7d5e0;
  --text-2: #8f98a0;
  --muted: #6b7480;
  --accent: #66c0f4;       /* steam blue */
  --accent-2: #a3cf06;     /* steam green */
  --accent-hot: #ff5c5c;
  --accent-warn: #f9a825;
  --shadow: 0 10px 40px rgba(0, 0, 0, .45);
  --radius: 4px;
  --font-sans: "Motiva Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background:
    radial-gradient(1200px 700px at 90% -10%, rgba(102, 192, 244, .10), transparent 60%),
    radial-gradient(1000px 700px at -10% 20%, rgba(163, 207, 6, .06), transparent 60%),
    linear-gradient(180deg, #0b0e13 0%, #0e1116 50%, #0b0e13 100%);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: #fff; }

/* subtle scanlines overlay */
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 3px
  );
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(11, 14, 19, .82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  letter-spacing: .12em;
  font-size: 14px;
}
.brand-mark { color: var(--accent); display: inline-flex; }
.brand-text .accent { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--text-2);
  transition: color .15s ease;
}
.nav-links a:hover { color: #fff; }

@media (max-width: 640px) {
  .nav-links { display: none; }
}

/* HERO */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 60px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 80px);
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 48px 20px; min-height: 0; gap: 32px; }
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(102, 192, 244, .08);
  border: 1px solid rgba(102, 192, 244, .28);
  color: var(--accent);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}
.tag .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 12px var(--accent-2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 4rem);
  line-height: 1.05;
  margin: 24px 0 20px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -.01em;
}
.hero h1 .hl {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  font-size: 18px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 0 32px;
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .1s ease, background .15s ease, border-color .15s ease, color .15s ease;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, #6ec9ff 0%, var(--accent) 100%);
  color: #0e1116;
  border-color: rgba(255,255,255,.15);
}
.btn-primary:hover { color: #0e1116; background: linear-gradient(180deg, #85d3ff 0%, #78ccff 100%); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn-ghost:hover { color: #fff; border-color: var(--accent); background: rgba(102,192,244,.08); }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats b {
  font-size: 28px;
  color: #fff;
  font-weight: 700;
}
.hero-stats span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* CRT visual */
.hero-visual { display: flex; justify-content: center; }
.crt {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 3;
  background: #0a0d12;
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow), inset 0 0 60px rgba(102,192,244,.08);
  position: relative;
  overflow: hidden;
}
.crt::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(102,192,244,.04) 0px,
    rgba(102,192,244,.04) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
}
.crt-inner {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
  line-height: 1.9;
  text-shadow: 0 0 8px rgba(102,192,244,.4);
}
.crt-line { white-space: nowrap; }
.crt-line.ok, .ok { color: var(--accent-2); text-shadow: 0 0 8px rgba(163,207,6,.4); }
.blink { animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* SECTIONS */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  border-top: 1px solid var(--border);
}
@media (max-width: 720px) { .section { padding: 56px 20px; } }
.section-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 40px;
}
.section-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: .1em;
}
.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  margin: 0;
  font-weight: 800;
  letter-spacing: -.01em;
}

.grid.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 800px) {
  .grid.two { grid-template-columns: 1fr; gap: 32px; }
}

.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  display: flex; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .ico { font-size: 22px; line-height: 1; padding-top: 2px; }
.feature-list b { color: #fff; display: block; margin-bottom: 4px; }
.feature-list p { margin: 0; color: var(--text-2); font-size: 15px; }

/* Game card */
.game-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  padding: 28px;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
@media (max-width: 720px) {
  .game-card { grid-template-columns: 1fr; padding: 20px; gap: 24px; }
}
.game-cover {
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(circle at 30% 20%, rgba(102,192,244,.25), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(163,207,6,.15), transparent 60%),
    linear-gradient(135deg, #1a2130 0%, #0e1116 100%);
  border: 1px solid var(--border-2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.game-cover::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 20px 20px;
}
.game-cover-inner { position: relative; text-align: center; }
.game-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 10px;
  border-radius: 3px;
  background: var(--accent-warn);
  color: #0e1116;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.glitch {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .15em;
  text-shadow:
     2px 0 var(--accent-hot),
    -2px 0 var(--accent);
  animation: glitch 4s infinite steps(1);
}
@keyframes glitch {
  0%, 90%, 100% { text-shadow: 2px 0 var(--accent-hot), -2px 0 var(--accent); }
  92% { text-shadow: -3px 0 var(--accent-hot), 3px 0 var(--accent); transform: translateX(1px); }
  94% { text-shadow: 3px 0 var(--accent-hot), -3px 0 var(--accent); transform: translateX(-1px); }
}

.game-meta h3 {
  color: #fff;
  font-size: 24px;
  margin: 4px 0 12px;
}
.mono { font-family: var(--font-mono); color: var(--accent); font-size: .9em; }
.muted { color: var(--text-2); }
.game-meta blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--accent);
  background: rgba(102,192,244,.05);
  color: #fff;
  font-style: italic;
  border-radius: 0 4px 4px 0;
}

.pill-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 20px 0 24px; }
.pill {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 5px 10px;
  border: 1px solid var(--border-2);
  border-radius: 3px;
  color: var(--text-2);
  letter-spacing: .05em;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.team-card {
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: transform .15s ease, border-color .15s ease;
}
.team-card:hover { transform: translateY(-2px); border-color: var(--border-2); }
.team-card-open {
  border-style: dashed;
  border-color: var(--border-2);
  background: transparent;
}
.avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #0e1116;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 16px;
}
.avatar-open {
  background: transparent;
  color: var(--muted);
  border: 1px dashed var(--border-2);
}
.team-card b { color: #fff; display: block; font-size: 18px; }
.team-card .role {
  display: block;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 2px 0 12px;
}
.team-card p { color: var(--text-2); font-size: 14px; margin: 0; }

/* Contact */
.signup {
  display: flex;
  gap: 8px;
  margin: 20px 0 8px;
  max-width: 480px;
}
.signup input {
  flex: 1;
  padding: 13px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  border-radius: var(--radius);
  transition: border-color .15s ease;
}
.signup input:focus {
  outline: none;
  border-color: var(--accent);
}
.hint { color: var(--accent-2); font-size: 14px; }
.hint.err { color: var(--accent-hot); }

.fine-print {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  max-width: 480px;
  line-height: 1.5;
}

.hp {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  margin: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  clip: rect(0 0 0 0) !important;
}

.contact-links {
  display: grid;
  gap: 12px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  transition: border-color .15s ease, transform .1s ease;
}
.contact-link:hover {
  border-color: var(--accent);
  transform: translateX(2px);
  color: var(--text);
}
.contact-ico {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(102,192,244,.1);
  color: var(--accent);
  border-radius: 4px;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-link div { display: flex; flex-direction: column; }
.contact-link b { color: #fff; }
.contact-link span { font-size: 13px; color: var(--muted); }

/* Footer */
.foot {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding: 32px 32px 48px;
  color: var(--muted);
  font-size: 13px;
}
.foot-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-links { display: flex; gap: 12px; }
.foot-links a { color: var(--muted); }
.foot-links a:hover { color: var(--accent); }

/* Selection */
::selection { background: var(--accent); color: #0e1116; }
