:root {
  --bg: #07080d;
  --bg-2: #0c0f17;
  --panel: rgba(14, 17, 24, 0.78);
  --line: #1c2536;
  --red: #e11d48;
  --red-2: #fb7185;
  --text: #f4f7fb;
  --muted: #8b9bb3;
  --ok: #34d399;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Sora", "Segoe UI", sans-serif;
}

body {
  background:
    radial-gradient(1200px 500px at 12% -10%, rgba(225, 29, 72, 0.18), transparent 55%),
    radial-gradient(900px 420px at 90% 0%, rgba(56, 189, 248, 0.08), transparent 50%),
    linear-gradient(180deg, #090b12 0%, #07080d 40%, #05060a 100%);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 5;
  background: linear-gradient(90deg, transparent, var(--red), #38bdf8, transparent);
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 8px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid #25334d;
  background: #0b0e16;
}

.brand-name {
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 18px;
}

.brand-name span { color: var(--red-2); font-weight: 500; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill {
  font-family: "Oxanium", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-2);
  border: 1px solid #3f1730;
  background: #1a0c14;
  border-radius: 999px;
  padding: 7px 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.btn-red {
  color: white;
  background: linear-gradient(180deg, #fb2d5a, #e11d48);
  box-shadow: 0 10px 30px rgba(225, 29, 72, 0.28);
}

.btn-red:hover { transform: translateY(-1px); filter: brightness(1.06); }

.btn-ghost {
  color: var(--text);
  background: #121824;
  border: 1px solid #25334d;
}

.hero {
  padding: 36px 0 20px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.kicker {
  font-family: "Oxanium", monospace;
  color: var(--red);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.lead {
  margin: 18px 0 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 540px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.meta {
  color: var(--muted);
  font-size: 13px;
}

.stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.stat {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 14px 12px;
  backdrop-filter: blur(12px);
}

.stat b {
  display: block;
  font-family: "Oxanium", sans-serif;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.stat span {
  color: var(--muted);
  font-size: 12px;
}

.frame {
  position: relative;
  border-radius: 22px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(225,29,72,.25), rgba(28,37,54,.7));
  box-shadow: var(--shadow);
}

.frame img {
  display: block;
  width: 100%;
  border-radius: 16px;
  border: 1px solid #25334d;
}

.frame::before, .frame::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--red);
}

.frame::before { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.frame::after { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }

.section {
  padding: 28px 0 10px;
}

.section h2 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.section p.sub {
  margin: 0 0 22px;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  background: #0c1018;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.cards.games {
  grid-template-columns: repeat(5, 1fr);
}

.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.lead strong {
  color: var(--text);
  font-weight: 700;
}

.ok {
  display: inline-block;
  color: var(--ok);
  font-family: "Oxanium", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0b0e16;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 8px;
  flex: none;
}

.hash {
  margin-top: 16px;
  font-family: "Oxanium", monospace;
  font-size: 12px;
  color: #cbd5e1;
  background: #0b0e16;
  border: 1px dashed #25334d;
  border-radius: 12px;
  padding: 12px 14px;
  overflow-wrap: anywhere;
}

.shot {
  margin: 18px 0 8px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.shot img { display: block; width: 100%; }

.why-lead {
  margin: 0 0 22px;
  padding: 22px 24px;
  border: 1px solid #3f1730;
  border-left: 3px solid var(--red);
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(225, 29, 72, 0.12), rgba(12, 16, 24, 0.6));
  color: #e8eef7;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.why-lead em {
  color: var(--red-2);
  font-style: normal;
  font-weight: 700;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  align-items: stretch;
}

.why-idea {
  background: #0c1018;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}

.why-idea h3 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.why-idea p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.compare > div {
  padding: 14px 16px;
  background: #0b0e16;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.compare-h {
  font-family: "Oxanium", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  background: #10141c !important;
}

.compare-h-app {
  color: var(--red-2);
}

.compare > div:nth-child(4n),
.compare > div:nth-child(4n-1) {
  background: #0e121a;
}

.compare > div:nth-child(even):not(.compare-h) {
  color: #d5deea;
}

footer {
  padding: 40px 0 50px;
  color: var(--muted);
  font-size: 13px;
}

footer a { color: var(--red-2); }

@media (max-width: 1100px) {
  .cards.games { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero, .cards, .stats, .features, .why-grid, .cards.games { grid-template-columns: 1fr; }
  .nav { flex-wrap: wrap; }
  h1 { font-size: 40px; }
}
