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

:root {
  --bg: #0f0f0f;
  --fg: #ddd8ce;
  --red: #e04a3a;
  --teal: #22a898;
  --border: #2a2a2a;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Mono', monospace;
  overflow-x: hidden;
}


/* LAYOUT */
.wrapper {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}

/* BUTTONS */
.btn-primary {
  background: var(--red);
  color: var(--fg);
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--teal);
  transform: translate(4px, 4px);
  pointer-events: none;
  transition: transform 0.15s;
}

.btn-primary:hover { background: var(--fg); color: var(--bg); }
.btn-primary:hover::after { transform: translate(2px, 2px); }

.btn-primary.btn-lg {
  font-size: 14px;
  padding: 20px 40px;
  white-space: nowrap;
}


/* SECTION HEADER */

/* FOOTER */
footer {
  padding: 24px 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg);
  opacity: 0.35;
}

/* ─── INDEX PAGE ─────────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.hero-left {
  padding: 72px 48px 72px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-right {
  padding: 72px 0 72px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}


.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(64px, 10vw, 112px);
  line-height: 0.92;
  color: var(--fg);
}

.hero-kicker {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 28px;
  font-style: italic;
}

.hero-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--fg);
  opacity: 0.7;
  max-width: 340px;
  margin-bottom: 40px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.trailer-section { padding: 0 0 56px; }

.trailer-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  overflow: hidden;
}

.trailer-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px dashed var(--border);
}

.trailer-placeholder .play-icon {
  width: 64px; height: 64px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trailer-placeholder .play-icon svg {
  width: 24px; height: 24px;
  fill: var(--border);
  margin-left: 4px;
}

.trailer-placeholder .trailer-label {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--border);
}

.trailer-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

.game-summary {
  padding: 0 0 56px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--fg);
  opacity: 0.7;
  max-width: 600px;
}


.quote-section {
  padding: 56px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 32px;
  align-items: start;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-style: italic;
  font-size: 96px;
  line-height: 0.7;
  color: var(--red);
  opacity: 0.5;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 20px;
}

.quote-author {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
}

.cta-footer {
  padding: 56px 0 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.cta-footer h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  color: var(--fg);
}

.cta-footer h2 em {
  color: var(--red);
  font-style: italic;
}


/* ─── RESPONSIVE ─────────────────────────────────────── */

@media (max-width: 700px) {
  /* index */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 48px 0 40px; border-right: none; border-bottom: 1px solid var(--border); }
  .hero-right { padding: 40px 0 48px; }
  .cta-footer { grid-template-columns: 1fr; }
  .quote-section { grid-template-columns: 1fr; }
  .quote-mark { display: none; }

}
