:root {
  --bg: #0f1021;
  --bg-soft: #1a1d36;
  --panel: rgba(19, 24, 47, 0.82);
  --panel-strong: rgba(12, 16, 34, 0.92);
  --line: rgba(153, 180, 255, 0.18);
  --text: #eef2ff;
  --muted: #b6c0e8;
  --accent: #ff6b3d;
  --accent-soft: #ffd166;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(117, 99, 255, 0.2), transparent 30%),
    linear-gradient(180deg, #11142b 0%, #090b18 100%);
}

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

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.hero,
.section,
.footer {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 18px 0 48px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
}

.brand {
  display: grid;
  gap: 6px;
}

.brand-kicker,
.eyebrow,
.caption,
.top-link {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
}

.brand strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.04em;
}

.top-link {
  color: var(--muted);
  text-decoration: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.hero-copy,
.video-frame,
.game-card,
.verification-card,
.footer {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-copy {
  padding: 36px;
  border-radius: 28px;
}

.hero-copy h1,
.section h2,
.game-card h3,
.pillars h3,
.verification-card h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  line-height: 0.98;
  letter-spacing: 0.02em;
}

.hero-copy h1 {
  margin: 10px 0 18px;
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.lead,
.section-copy,
.intro-grid p,
.card-body p,
.pillars p,
.verification-copy p,
.footer p {
  color: var(--muted);
  line-height: 1.7;
}

.lead span {
  color: var(--accent-soft);
  font-weight: 700;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-notes li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.92rem;
}

.video-frame {
  padding: 14px;
  border-radius: 28px;
}

.video-frame video {
  width: 100%;
  border-radius: 18px;
  background: #05060c;
}

.caption {
  margin: 14px 0 0;
  color: var(--muted);
  text-align: center;
}

.section {
  padding: 42px 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 24px;
}

.section h2 {
  margin: 8px 0 10px;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}

.intro-grid,
.game-showcase,
.game-grid,
.game-details,
.pillars {
  display: grid;
  gap: 20px;
}

.intro-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.game-showcase {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.game-grid {
  grid-template-columns: 1fr;
  margin-bottom: 0;
}

.game-card {
  overflow: hidden;
  border-radius: 24px;
}

.game-card-primary img {
  width: 100%;
}

.game-side {
  display: grid;
  gap: 20px;
}

.game-details {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0;
}

.card-body,
.game-details article,
.pillars article {
  padding: 22px;
}

.game-details article,
.pillars article {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel-strong);
}

.pillars {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pillars span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent-soft);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.2rem;
}

.verification-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding: 28px;
  border-radius: 26px;
}

.verification-card a {
  color: var(--accent-soft);
}

.footer {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  margin-top: 18px;
}

.footer img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
}

@media (max-width: 980px) {
  .hero-grid,
  .verification-card,
  .intro-grid,
  .game-showcase,
  .game-grid,
  .game-details,
  .pillars {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 12px;
  }

  .topbar,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-copy h1 {
    font-size: 2.8rem;
  }

  .section h2 {
    font-size: 2.2rem;
  }
}
