:root {
  --bg: #08090d;
  --panel: #11141b;
  --panel-2: #171b25;
  --text: #f4f6fb;
  --muted: #a6adbd;
  --accent: #5478ff;
  --accent-2: #8aa0ff;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 25% 10%, rgba(84, 120, 255, 0.16), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(138, 160, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #08090d 0%, #0b0d13 50%, #050609 100%);
  z-index: -2;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px clamp(20px, 5vw, 72px);
  background: rgba(8, 9, 13, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a,
.site-footer a,
.text-link {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--text);
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 130px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 120px rgba(84, 120, 255, 0.22);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  text-align: center;
}

.eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1, h2, h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
}

.hero h1 {
  font-size: clamp(4rem, 13vw, 10.5rem);
  line-height: 0.82;
  letter-spacing: 0.08em;
  margin: 20px 0;
}

.tagline {
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: var(--text);
  margin: 0 0 12px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--text);
  color: #07080c;
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--text);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.section h2,
.page-hero h1 {
  font-size: clamp(2.3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.section p,
.page-hero p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.game-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  padding: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border-radius: 28px;
}

.game-card.large {
  min-height: 420px;
}

.game-info {
  padding: clamp(22px, 4vw, 46px);
}

.game-info h2 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  margin-bottom: 18px;
}

.game-visual {
  min-height: 320px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(84, 120, 255, 0.22), rgba(0, 0, 0, 0.12)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 24px),
    #0c0f16;
  border: 1px solid rgba(255, 255, 255, 0.09);
  overflow: hidden;
}

.game-visual span {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.2rem, 3vw, 2.4rem);
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.value-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
}

.value-grid h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.page {
  padding-top: 100px;
}

.page-hero {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 100px 0 40px;
}

.muted {
  color: var(--muted);
}

.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    flex-direction: column;
    gap: 14px;
  }

  .nav {
    gap: 14px;
    font-size: 0.9rem;
  }

  .split,
  .game-card,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 92px;
  }
}
