:root {
  --bg: #fbfefd;
  --paper: #ffffff;
  --ink: #17272d;
  --muted: #64757b;
  --line: #dce8e8;
  --teal: #0f9c95;
  --teal-dark: #08756f;
  --coral: #f27f68;
  --yellow: #f4c95d;
  --sky: #86c9f4;
  --mint: #dff5ef;
  --peach: #ffe6dc;
  --shadow: 0 18px 44px rgba(23, 39, 45, 0.08);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f2fbfa 0%, var(--bg) 36%, #fff8ef 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 232, 232, 0.9);
  background: rgba(251, 254, 253, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), #58c7ad);
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 156, 149, 0.24);
}

.brand-name {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--teal-dark);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
  align-items: center;
  gap: 64px;
  min-height: calc(100vh - 72px);
  padding: 72px 0 84px;
}

.hero-copy h1,
.page-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy p,
.page-hero p,
.section-head p,
.lead {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
}

.hero-copy p {
  max-width: 660px;
  margin: 26px 0 0;
}

.legal-line {
  margin-top: 22px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 760;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 850;
}

.button.primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 156, 149, 0.22);
}

.button.secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.button.light {
  background: #fff;
  color: var(--teal-dark);
}

.hero-showcase {
  position: relative;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-showcase img,
.game-card img,
.detail-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
}

.showcase-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 6px 2px;
}

.status {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border: 1px solid rgba(15, 156, 149, 0.2);
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
}

.mini-loop {
  display: flex;
  gap: 8px;
}

.mini-loop span {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--yellow);
}

.mini-loop span:nth-child(2) {
  background: var(--coral);
}

.mini-loop span:nth-child(3) {
  background: var(--sky);
}

.section-band {
  padding: 78px 0;
}

.section-band.alt {
  background: linear-gradient(180deg, rgba(223, 245, 239, 0.5), rgba(255, 255, 255, 0));
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 30px;
}

.section-head h2,
.split-copy h2,
.cta h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: 0;
}

.section-head p {
  max-width: 390px;
  margin: 0;
}

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

.game-card,
.info-card,
.value-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(23, 39, 45, 0.05);
}

.game-card {
  overflow: hidden;
}

.game-card-body {
  padding: 22px;
}

.game-card h3,
.info-card h3,
.value-card h3 {
  margin: 14px 0 8px;
  font-size: 23px;
  line-height: 1.2;
}

.game-card p,
.info-card p,
.value-card p,
.detail-list p,
.timeline p {
  margin: 0;
  color: var(--muted);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  background: #f2f7f7;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal-dark);
  font-weight: 850;
}

.info-card,
.value-card {
  padding: 26px;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal-dark);
  font-weight: 900;
}

.info-card:nth-child(2) .icon-box,
.value-card:nth-child(2) .icon-box {
  background: #eef6ff;
  color: #357fad;
}

.info-card:nth-child(3) .icon-box,
.value-card:nth-child(3) .icon-box {
  background: var(--peach);
  color: #ba5a47;
}

.split {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 54px;
  align-items: start;
}

.split-copy p {
  color: var(--muted);
  font-size: 18px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.step-number {
  color: var(--teal-dark);
  font-weight: 950;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.page-hero {
  padding: 74px 0 42px;
}

.page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
}

.game-list {
  display: grid;
  gap: 24px;
  padding: 20px 0 84px;
}

.game-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
  box-shadow: var(--shadow);
}

.game-row img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
}

.game-row-content {
  padding: 12px 12px 12px 0;
}

.game-row h2 {
  margin: 12px 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 46px;
  align-items: center;
  padding: 70px 0 54px;
}

.detail-hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
}

.detail-hero p {
  color: var(--muted);
  font-size: 19px;
}

.detail-hero-media {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 12px;
  box-shadow: var(--shadow);
}

.detail-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.44fr);
  gap: 16px;
  align-items: start;
}

.gameplay-shot img {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  object-fit: cover;
}

.media-caption {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding-bottom: 88px;
}

.detail-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 28px;
}

.detail-list h2 {
  margin: 0 0 18px;
  font-size: 26px;
}

.detail-list ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  color: var(--muted);
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  margin: 0 auto 74px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), #19343b);
  color: #fff;
  padding: 40px;
  box-shadow: 0 22px 52px rgba(15, 156, 149, 0.2);
}

.cta p {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 28px;
  padding: 28px 0 86px;
}

.contact-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-box h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

.contact-box p {
  color: var(--muted);
}

.email-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--teal-dark);
  font-size: 22px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 42px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.footer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 14px;
  }

  .hero,
  .detail-hero,
  .split,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 68px;
  }

  .section-head,
  .cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .game-grid,
  .expertise-grid,
  .value-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-gallery {
    grid-template-columns: minmax(0, 1fr) minmax(150px, 0.45fr);
  }

  .game-row {
    grid-template-columns: 1fr;
  }

  .game-row-content {
    padding: 4px 6px 10px;
  }
}

@media (max-width: 560px) {
  .section,
  .nav,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .brand-name {
    white-space: normal;
  }

  .nav-links {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-hero h1 {
    font-size: 40px;
  }

  .actions .button,
  .cta .button {
    width: 100%;
  }

  .section-band {
    padding: 58px 0;
  }

  .game-card-body,
  .info-card,
  .value-card,
  .detail-list,
  .contact-box,
  .cta {
    padding: 22px;
  }

  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .gameplay-shot {
    max-width: 260px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

.footer-compliance {
  display: grid;
  gap: 6px;
  justify-items: center;
}

.footer-compliance a {
  color: var(--teal-dark);
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
}

.contact-box ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}
