@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --bg: #0C0C0F;
  --surface: #17171C;
  --text: #F2F2F5;
  --muted: #A1A1AA;
  --accent: #E11D48;
  --button: #E11D48;
  --button-dark: #9F1239;
  --secondary: #27272A;
  --line: #3F3F46;
  --chrome: #D4D4D8;
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "IBM Plex Sans", sans-serif;
  line-height: 1.65;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(135deg, transparent 48%, rgba(225,29,72,.04) 49%, transparent 51%),
    linear-gradient(45deg, transparent 48%, rgba(212,212,216,.03) 49%, transparent 51%),
    radial-gradient(ellipse at 80% 10%, rgba(225,29,72,.12), transparent 45%);
  background-size: 80px 80px, 80px 80px, 100% 100%;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; color: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 200;
  background: var(--accent); color: #fff; padding: 10px 15px;
}
.skip-link:focus { top: 16px; }

h1, h2, h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 700;
}
h1 { font-size: clamp(42px, 7vw, 84px); max-width: 820px; }
h2 { font-size: clamp(30px, 4.4vw, 52px); }
h3 { font-size: 22px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12,12,15,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: 18px; letter-spacing: -.03em;
}
.brand img { width: 40px; height: 40px; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
}
.nav-links a { color: var(--muted); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::before,
.nav-links a:hover::before {
  content: "";
  position: absolute; left: 0; top: -10px;
  width: 100%; height: 2px; background: var(--accent);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}
.nav-cta, .button {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; padding: 12px 22px;
  background: var(--button); color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .06em;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background .2s, transform .2s;
}
.nav-cta:hover, .button:hover { background: var(--button-dark); transform: translateY(-1px); }
.button-ghost {
  background: transparent;
  border: 1px solid var(--chrome);
  color: var(--chrome);
  clip-path: none;
}
.button-ghost:hover { background: var(--secondary); color: var(--text); }
.nav-toggle {
  display: none; width: 44px; height: 44px;
  border: 1px solid var(--line); background: var(--surface);
  color: var(--text); font-size: 18px;
}

.hero { padding: 28px 0 70px; }
.hero-shell {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 620px;
  border: 1px solid var(--line);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.hero-shell::before {
  content: "";
  position: absolute; left: 42%; top: -20%; bottom: -20%; width: 1px;
  background: linear-gradient(transparent, var(--accent), transparent);
  transform: rotate(12deg); z-index: 2; opacity: .55;
}
.hero-copy {
  position: relative; z-index: 1;
  padding: clamp(36px, 5vw, 72px);
  display: flex; flex-direction: column; justify-content: center;
}
.hero-media {
  position: relative;
  min-height: 420px;
  background: #111 url("../images/hero.webp") center/cover no-repeat;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(270deg, transparent 30%, rgba(12,12,15,.55) 100%);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px; color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em;
}
.eyebrow::before {
  content: ""; width: 18px; height: 18px;
  border: 1px solid var(--accent);
  transform: rotate(45deg);
}
.hero p { max-width: 520px; margin: 20px 0 30px; color: var(--muted); font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-note {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--chrome); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
}
.hero-note span {
  width: 32px; height: 32px; display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--accent);
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
}

.section { padding: 88px 0; }
.section-tight { padding-top: 28px; }
.section-head {
  display: grid; grid-template-columns: 1.2fr .8fr;
  gap: 40px; align-items: end; margin-bottom: 40px;
  padding-bottom: 24px; border-bottom: 1px solid var(--line);
}
.section-head p { margin: 0; color: var(--muted); }

.intro-band {
  display: grid; grid-template-columns: .8fr 1.2fr;
  gap: 48px; align-items: start;
  padding: 40px; border: 1px solid var(--line); background: var(--surface);
}
.intro-band .mark {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(48px, 8vw, 96px); line-height: .9;
  color: transparent; -webkit-text-stroke: 1px var(--chrome);
  letter-spacing: -.06em;
}
.intro-band p { color: var(--muted); font-size: 17px; }
.chip {
  display: inline-block; margin-bottom: 16px;
  padding: 8px 12px; border: 1px solid var(--line);
  color: var(--chrome); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  background: var(--secondary);
}

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); background: var(--surface);
}
.stat {
  padding: 28px 22px; border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: 0; }
.stat::after {
  content: "";
  position: absolute; top: 0; right: 18px;
  width: 10px; height: 10px; background: var(--accent);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  opacity: .7;
}
.stat strong {
  display: block; font-family: "Space Grotesk", sans-serif;
  font-size: 34px; letter-spacing: -.05em;
}
.stat span {
  color: var(--muted); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
}

.game-list { display: grid; gap: 0; border: 1px solid var(--line); }
.game-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center; gap: 28px;
  padding: 22px 24px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  transition: background .2s, transform .2s;
}
.game-card:last-child { border-bottom: 0; }
.game-card:hover {
  background: #1c1c22;
  transform: translateX(4px);
}
.game-card img {
  width: 120px; aspect-ratio: 1; object-fit: cover;
  border: 1px solid var(--line);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}
.game-card p { margin: 8px 0 12px; color: var(--muted); }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  padding: 4px 9px; border: 1px solid var(--line);
  color: var(--chrome); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
}
.game-meta {
  display: grid; gap: 14px; justify-items: end; align-content: center;
}
.game-rank {
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
}

.selection {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--line); overflow: hidden;
}
.selection-media { position: relative; min-height: 460px; }
.selection-media img {
  width: 100%; height: 100%; min-height: 460px; object-fit: cover;
}
.selection-media .chip {
  position: absolute; left: 20px; bottom: 20px; margin: 0;
}
.selection-copy {
  padding: clamp(32px, 4vw, 56px);
  background: var(--surface);
  border-left: 1px solid var(--line);
}
.check-list { padding: 0; margin: 28px 0; list-style: none; display: grid; gap: 16px; }
.check-list li {
  display: grid; grid-template-columns: 28px 1fr; gap: 14px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.check-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.check-list li::before {
  content: ""; width: 18px; height: 18px; margin-top: 4px;
  border: 1px solid var(--accent);
  background: linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  transform: rotate(45deg);
}
.check-list strong { color: var(--text); }
.text-link {
  color: var(--chrome); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .08em;
  border-bottom: 1px solid var(--accent); padding-bottom: 2px;
}
.text-link:hover { color: var(--accent); }

.faq-list { display: grid; gap: 0; border: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); background: var(--surface); }
.faq-item:last-child { border-bottom: 0; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; gap: 20px;
  padding: 20px 22px; border: 0; background: transparent;
  color: var(--text); text-align: left;
  font-family: "Space Grotesk", sans-serif; font-weight: 600; cursor: pointer;
}
.faq-question span {
  color: var(--accent); font-size: 22px; transition: transform .2s;
}
.faq-answer { display: none; padding: 0 22px 20px; color: var(--muted); }
.faq-item.open { background: #1a1a20; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question span { transform: rotate(45deg); }

.page-hero {
  padding: 96px 0 56px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(225,29,72,.08), transparent 40%),
    var(--bg);
}
.page-hero .container {
  display: grid; grid-template-columns: .85fr 1.15fr;
  gap: 48px; align-items: end;
}
.page-hero p { margin: 0; color: var(--muted); font-size: 18px; }

.content-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(28px, 5vw, 60px);
}
.content-card h2 { margin: 36px 0 14px; font-size: 32px; }
.content-card h2:first-child { margin-top: 0; }
.content-card h3 { margin: 26px 0 10px; }
.content-card p, .content-card li { color: var(--muted); }
.content-card a { color: var(--chrome); font-weight: 600; border-bottom: 1px solid var(--accent); }
.two-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature-card {
  padding: 26px; border: 1px solid var(--line); background: var(--bg);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 40px; height: 40px;
  background: linear-gradient(225deg, rgba(225,29,72,.35), transparent 60%);
}
.feature-card .number {
  width: 40px; height: 40px; display: grid; place-items: center;
  margin-bottom: 20px; border: 1px solid var(--line);
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 13px;
}
.feature-card p { color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 20px; }
.contact-box {
  padding: 30px; background: var(--bg);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
}
.contact-box p { color: var(--muted); }
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label {
  font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: .08em; color: var(--chrome);
}
.field input, .field textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: 0;
  background: var(--bg); color: var(--text); outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.field textarea { min-height: 150px; resize: vertical; }
.form-status { min-height: 24px; color: var(--chrome); font-weight: 700; }

.site-footer {
  margin-top: 80px; padding: 64px 0 28px;
  background: #09090b; border-top: 1px solid var(--line);
}
.footer-grid { display: grid; grid-template-columns: 1.3fr .85fr .85fr; gap: 48px; }
.footer-brand p { max-width: 420px; color: var(--muted); }
.footer-title {
  margin-bottom: 14px; color: var(--chrome);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: .14em;
}
.footer-links { display: grid; gap: 9px; color: var(--muted); font-size: 14px; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 20px;
  margin-top: 48px; padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted); font-size: 12px;
}

.cookie-banner {
  position: fixed; z-index: 150; right: 20px; bottom: 20px;
  width: min(420px, calc(100% - 40px));
  padding: 24px; background: var(--surface);
  border: 1px solid var(--line); border-top: 2px solid var(--accent);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner h2 { font-size: 22px; }
.cookie-banner p { margin: 10px 0 18px; color: var(--muted); font-size: 14px; }
.cookie-actions { display: flex; gap: 12px; align-items: center; }

@media (max-width: 960px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav-links {
    display: none; position: absolute; left: 24px; right: 24px; top: 64px;
    padding: 20px; background: var(--surface); border: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; gap: 18px;
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .hero-shell, .intro-band, .selection, .page-hero .container,
  .contact-grid, .section-head { grid-template-columns: 1fr; }
  .hero-shell::before { display: none; }
  .selection-copy { border-left: 0; border-top: 1px solid var(--line); }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero { padding-top: 12px; }
  .hero-copy { padding: 28px; }
  h1 { font-size: 40px; }
  .section { padding: 64px 0; }
  .game-card { grid-template-columns: 84px 1fr; gap: 14px; padding: 16px; }
  .game-card img { width: 84px; }
  .game-meta { grid-column: 1 / -1; grid-template-columns: 1fr auto; align-items: center; justify-items: stretch; }
  .stats { grid-template-columns: 1fr; }
  .stat, .stat:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .two-columns, .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .cookie-actions { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
