:root {
  --bg: #0a0a0a;
  --bg-panel: #131313;
  --bg-panel-alt: #171717;
  --border: #2a2a2a;
  --border-soft: #202020;
  --text: #e9e9e9;
  --text-dim: #9a9a9a;
  --text-faint: #6b6b6b;
  --red: #e2231b;
  --red-bright: #ff3b30;
  --red-dim: #7a0f0f;
  --green: #3ddc5b;
  --mono: "Consolas", "SFMono-Regular", ui-monospace, Menlo, monospace;
  --sans: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --radius: 4px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- top bar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
}

.brand .dot {
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red-bright);
  flex: none;
}

.brand small {
  color: var(--text-faint);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 14px;
}

.nav-links a:hover { color: var(--text); }

.nav-cta { display: flex; align-items: center; gap: 14px; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.btn-primary:hover { background: var(--red-bright); border-color: var(--red-bright); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover { border-color: var(--text-dim); }

.btn-sm { padding: 8px 14px; font-size: 13px; }

/* ---------- hero ---------- */

.hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border-soft);
}

.hero .wrap {
  max-width: 1560px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--red-bright);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.hero p.lead {
  color: var(--text-dim);
  font-size: 16px;
  max-width: 46ch;
  margin: 0 0 20px;
}

.hero-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dim);
}

.hero-facts li { display: flex; gap: 10px; }

.hero-facts li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 7px;
  background: var(--red);
  flex: none;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.hero-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-faint);
}

.hero-meta strong { color: var(--green); font-weight: 600; }

.window {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-panel);
  box-shadow: 0 20px 60px -20px rgba(226, 35, 27, 0.25);
}

.hero-image img {
  transition: opacity 0.3s ease;
}

.hero-image img.is-fading {
  opacity: 0;
}

/* ---------- scam banner ---------- */

.banner {
  border-bottom: 1px solid var(--border-soft);
  background: linear-gradient(180deg, rgba(226, 35, 27, 0.08), transparent);
}

.banner .wrap {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.banner .tag {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--bg);
  background: var(--red);
  padding: 4px 8px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  flex: none;
}

.banner p {
  margin: 0;
  font-size: 14px;
  color: var(--text-dim);
}

.banner strong { color: var(--text); }

/* ---------- sections ---------- */

section { padding: 64px 0; border-bottom: 1px solid var(--border-soft); }

.section-head { margin-bottom: 32px; }

.section-head .kicker {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--red-bright);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 8px;
}

.section-head h2 { font-size: 26px; margin: 0 0 8px; }

.section-head p { color: var(--text-dim); margin: 0; max-width: 60ch; }

/* ---------- games ---------- */

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.game-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.game-card h3 { margin: 0 0 4px; font-size: 17px; }

.game-card .platform {
  color: var(--text-faint);
  font-size: 13px;
  font-family: var(--mono);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  font-family: var(--mono);
  color: var(--green);
  border: 1px solid rgba(61, 220, 91, 0.35);
  background: rgba(61, 220, 91, 0.08);
  padding: 4px 9px;
  border-radius: 999px;
}

.pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.games-note {
  margin-top: 18px;
  color: var(--text-faint);
  font-size: 13px;
}

/* ---------- features ---------- */

.features-grid {
  display: grid;
  /* Fixed-ish column width (not 1fr) so incomplete trailing rows have real
     leftover space for justify-content to center into — 1fr columns always
     stretch to fill the full row, which makes centering invisible. Wraps to
     2 then 1 column on its own as space runs out, no manual breakpoints
     needed. */
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
  justify-content: center;
  gap: 16px;
}

.feature-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.feature-card .icon {
  width: 34px;
  height: 34px;
  border: 1px solid var(--red-dim);
  color: var(--red-bright);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 14px;
}

.feature-card h3 { margin: 0 0 6px; font-size: 15.5px; }

.feature-card p { margin: 0; color: var(--text-dim); font-size: 13.5px; }

/* ---------- gallery / carousel ---------- */

.carousel {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  max-width: 100%;
  border: none;
  background: #000;
  padding: 0;
  margin: 0;
  cursor: zoom-in;
  display: block;
  line-height: 0;
}

.carousel-slide img {
  width: 100%;
  height: min(70vh, 640px);
  object-fit: contain;
  background: #000;
}

.carousel-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  border: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.carousel-arrow.next {
  right: 0;
  left: auto;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.55), transparent);
}

.carousel-arrow.prev { left: 0; }

.carousel-arrow:hover { color: var(--red-bright); }

.carousel-caption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-family: var(--mono);
  font-size: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  padding: 5px 10px;
  border-radius: 3px;
  pointer-events: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-panel);
  padding: 0;
  cursor: pointer;
}

.carousel-dot.active { background: var(--red); border-color: var(--red); }

.carousel-slide:focus-visible,
.carousel-arrow:focus-visible,
.carousel-dot:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: -2px;
}

/* ---------- get started ---------- */

.start-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }

.steps li {
  counter-increment: step;
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}

.steps li:last-child { border-bottom: none; }

.steps li::before {
  content: counter(step);
  font-family: var(--mono);
  font-weight: 700;
  color: var(--red-bright);
  border: 1px solid var(--red-dim);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-size: 13px;
}

.steps h4 { margin: 3px 0 4px; font-size: 15px; }

.steps p { margin: 0; color: var(--text-dim); font-size: 13.5px; }

.video-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-panel);
  text-decoration: none;
}

.video-thumb {
  position: relative;
  background: #000;
}

.video-thumb img { width: 100%; display: block; opacity: 0.85; }

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(226, 35, 27, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.video-card .caption {
  padding: 14px 16px;
}

.video-card .caption .label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--red-bright);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
}

.video-card .caption h4 { margin: 0; font-size: 14.5px; color: var(--text); }

/* ---------- footer ---------- */

footer { padding: 48px 0 40px; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  font-size: 13.5px;
}

.footer-link:hover { border-color: var(--text-dim); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-faint);
  font-size: 12.5px;
  font-family: var(--mono);
  border-top: 1px solid var(--border-soft);
  padding-top: 20px;
}

.footer-bottom a { color: var(--text-faint); text-decoration: underline; }

/* ---------- lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 40px;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}

/* ---------- mobile nav ---------- */

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius);
  width: 38px;
  height: 38px;
  font-size: 16px;
  cursor: pointer;
}

.nav-links-mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.nav-links-mobile.open { display: flex; }

.nav-links-mobile a {
  padding: 14px 24px;
  text-decoration: none;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
}

/* ---------- responsive ---------- */

@media (max-width: 880px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .games-grid { grid-template-columns: 1fr; }
  .carousel-slide img { height: min(50vh, 420px); }
  .start-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 30px; }
  .carousel-slide img { height: 46vh; }
  .carousel-arrow { width: 40px; font-size: 22px; }
  section { padding: 44px 0; }
  .footer-bottom { flex-direction: column; }
  .brand small { display: none; }
  .nav-cta { gap: 8px; }
  .topbar .wrap { padding: 0 16px; }
}
