```css
:root {
  --bg: #0b0d12;
  --surface: #121620;
  --surface-2: #181d29;
  --text: #f6f7fb;
  --muted: #a8afc0;
  --line: rgba(255,255,255,.09);
  --accent: #ffb84d;
  --max: 1120px;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 85% 5%,
      rgba(255,184,77,.08),
      transparent 25rem
    ),
    var(--bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}


/* ================= HEADER ================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,13,18,.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
}

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.03em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), #f47b35);
  color: #111;
  font-weight: 900;
  box-shadow: 0 8px 25px rgba(255,184,77,.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: .95rem;
}

.nav-links a {
  transition: color .2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 2px;
}


/* ================= HERO ================= */

.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
  padding: 80px 0 100px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 7vw, 6.3rem);
  line-height: .95;
  letter-spacing: -.065em;
}

h1 span {
  color: var(--accent);
}

.hero-text {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 34px;
}

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

.button {
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 750;
  border: 1px solid var(--line);
  transition: transform .2s ease, background .2s ease;
}

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

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

.button-secondary {
  color: var(--text);
  background: rgba(255,255,255,.04);
}

.hero-art {
  display: grid;
  place-items: center;
}

.hero-card {
  width: min(420px, 80vw);
  aspect-ratio: 1;
  border-radius: 36px;
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,216,138,.18), transparent 38%),
    linear-gradient(145deg, #202634, #0f1219);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 35px 90px rgba(0,0,0,.42);
  transform: rotate(3deg);
}

.game-icon {
  width: 52%;
  border-radius: 24%;
  box-shadow: 0 28px 55px rgba(0,0,0,.5);
  transform: rotate(-3deg);
  z-index: 2;
}

.floating-tile {
  position: absolute;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #f8f3e8;
  color: #30291e;
  font-size: 1.7rem;
  box-shadow: 0 16px 30px rgba(0,0,0,.25);
}

.tile-one {
  left: 5%;
  top: 17%;
  transform: rotate(-12deg);
}

.tile-two {
  right: 5%;
  top: 28%;
  transform: rotate(12deg);
}

.tile-three {
  left: 16%;
  bottom: 9%;
  transform: rotate(8deg);
}

.hero-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: .13;
}

.hero-glow-one {
  background: var(--accent);
  right: -220px;
  top: 80px;
}

.hero-glow-two {
  background: #83c85a;
  left: -300px;
  bottom: -300px;
}


/* ================= SECTIONS ================= */

.section {
  padding: 120px 0;
}

.games-section {
  background: #0e1118;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 55px;
}

.section-heading h2,
.about-copy h2,
.contact-card h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  margin-bottom: 18px;
}

.section-heading > p:last-child,
.about-copy > p,
.contact-card > div > p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}


/* ================= GAME ================= */

.game-showcase {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 55px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.055),
      rgba(255,255,255,.018)
    );
}

.game-preview {
  overflow: hidden;
  border-radius: 20px;
  min-height: 420px;
  background: #171b24;
}

.game-preview img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.game-info {
  padding: 25px 15px 25px 0;
}

.game-title-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
}

.small-icon {
  width: 62px;
  height: 62px;
  border-radius: 17px;
  box-shadow: 0 12px 25px rgba(0,0,0,.3);
  object-fit: cover;
}

.game-label {
  margin: 0 0 2px;
  font-size: .7rem;
  color: var(--accent);
  letter-spacing: .16em;
  font-weight: 800;
}

.game-title-row h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.1;
}

.game-description {
  color: var(--muted);
  margin-bottom: 25px;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin-bottom: 30px;
}

.feature-list > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 10px;
  align-items: start;
}

.feature-list span {
  grid-row: span 2;
  color: var(--accent);
  font-size: 1.15rem;
}

.feature-list strong {
  font-size: .93rem;
}

.feature-list small {
  color: var(--muted);
  font-size: .82rem;
}


/* ================= GOOGLE PLAY ================= */

.play-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 19px 10px 13px;
  border-radius: 12px;
  background: #080a0e;
  border: 1px solid rgba(255,255,255,.2);
  transition: transform .2s ease, border-color .2s ease;
}

.play-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.45);
}

.play-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--text);
  color: #111;
  font-size: .85rem;
}

.play-button small {
  display: block;
  font-size: .55rem;
  line-height: 1;
  letter-spacing: .05em;
}

.play-button strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.15;
}


/* ==================================================
   SCREENSHOT SLIDER
   ================================================== */

.screenshots {
  margin-top: 75px;
}

.screenshots-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 25px;
}

.screenshots-heading h3 {
  margin: 0;
  font-size: 1.6rem;
}

.screenshots-heading p {
  margin: 0;
  color: var(--muted);
}


/*
  Horizontal scrolling gallery.

  The screenshots keep their natural proportions.
  They are NOT cropped.
*/

.screenshot-grid {
  display: flex;
  gap: 20px;

  overflow-x: auto;
  overflow-y: hidden;

  padding: 10px 5px 25px;

  scroll-snap-type: x mandatory;

  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.25) transparent;

  -webkit-overflow-scrolling: touch;
}


/* Each screenshot */

.screenshot-card {
  flex: 0 0 auto;

  width: 250px;

  scroll-snap-align: start;

  border-radius: 20px;

  overflow: hidden;

  background: #151923;

  border: 1px solid rgba(255,255,255,.1);

  box-shadow:
    0 18px 45px rgba(0,0,0,.3);

  transition:
    transform .25s ease,
    border-color .25s ease;
}

.screenshot-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.25);
}


/*
  IMPORTANT:
  contain = show the complete screenshot.
  Nothing gets cropped.
*/

.screenshot-card img {
  width: 100%;
  height: auto;

  display: block;

  object-fit: contain;

  background: #10131a;
}


/* Custom scrollbar */

.screenshot-grid::-webkit-scrollbar {
  height: 8px;
}

.screenshot-grid::-webkit-scrollbar-track {
  background: rgba(255,255,255,.04);
  border-radius: 20px;
}

.screenshot-grid::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.22);
  border-radius: 20px;
}

.screenshot-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,.35);
}


/* ================= ABOUT ================= */

.about-section {
  background:
    linear-gradient(
      rgba(255,255,255,.02) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.02) 1px,
      transparent 1px
    );

  background-size: 55px 55px;
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.about-copy {
  max-width: 570px;
}

.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.value-card {
  min-height: 200px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.025);
}

.value-card span {
  color: var(--accent);
  font-size: .72rem;
  font-weight: 800;
}

.value-card h3 {
  margin: 40px 0 8px;
  font-size: 1.25rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}


/* ================= CONTACT ================= */

.contact-section {
  padding: 30px 0 120px;
}

.contact-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;

  padding: 55px;

  border-radius: 28px;

  background:
    linear-gradient(
      135deg,
      #1c222e,
      #11151d
    );

  border: 1px solid var(--line);
}

.contact-card h2 {
  margin-bottom: 12px;
}

.contact-card > div > p:last-child {
  margin-bottom: 0;
  max-width: 600px;
}

.email-button {
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  gap: 18px;

  padding: 15px 18px 15px 22px;

  border-radius: 999px;

  background: var(--accent);

  color: #17120a;

  font-weight: 800;

  transition: transform .2s ease;
}

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

.email-button span {
  font-size: 1.25rem;
}


/* ================= FOOTER ================= */

.footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 25px;
  align-items: center;
}

.footer-inner > p {
  margin: 0;
  text-align: right;
  color: #707789;
  font-size: .8rem;
}

.footer-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: .82rem;
}

.footer-links a:hover {
  color: var(--text);
}


/* ================= ANIMATION ================= */

.reveal {
  opacity: 0;
  transform: translateY(20px);

  transition:
    opacity .7s ease,
    transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}


/* ================= TABLET ================= */

@media (max-width: 850px) {

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .game-showcase,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 60px;
    padding: 75px 0 90px;
  }

  .hero-art {
    order: -1;
  }

  .hero-card {
    width: min(340px, 75vw);
  }

  .game-info {
    padding: 10px 10px 25px;
  }

  .game-preview,
  .game-preview img {
    min-height: auto;
  }

  .about-grid {
    gap: 50px;
  }

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 40px 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-inner .brand,
  .footer-links {
    justify-content: center;
  }

  .footer-inner > p {
    text-align: center;
  }
}


/* ================= MOBILE ================= */

@media (max-width: 650px) {

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav {
    height: 64px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;

    left: 14px;
    right: 14px;
    top: 70px;

    padding: 15px;

    display: grid;
    gap: 4px;

    background: rgba(18,22,32,.98);

    border: 1px solid var(--line);

    border-radius: 18px;

    box-shadow: 0 20px 50px rgba(0,0,0,.35);

    opacity: 0;

    transform: translateY(-8px);

    pointer-events: none;

    transition: .2s ease;
  }

  .nav-links.open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 12px;
    border-radius: 10px;
  }

  .nav-links a:hover {
    background: rgba(255,255,255,.05);
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .section {
    padding: 85px 0;
  }

  .game-showcase {
    padding: 12px;
    border-radius: 22px;
  }

  .values {
    grid-template-columns: 1fr;
  }

  .screenshots-heading {
    display: block;
  }

  .screenshots-heading p {
    margin-top: 5px;
  }


  /*
    On phones the screenshots become larger
    so users can swipe through them.
  */

  .screenshot-card {
    width: 75vw;
    max-width: 300px;
  }


  .email-button {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: .88rem;
  }
}


/* ================= ACCESSIBILITY ================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
```
