:root {
  --ink: #080a0e;
  --wall: #0f1218;
  --concrete: #151a22;
  --panel: #1c2330;
  --cream: #eef2f7;
  --dust: #94a3b8;
  --hud-green: #86efac;
  --hud-green-dim: #3d6b4f;
  --rust: #64748b;
  --warning: #e05252;
  --gold: #d4b86a;
  --line: rgba(148, 163, 184, 0.22);
  --display: 'Archivo Black', Impact, sans-serif;
  --body: 'Libre Franklin', system-ui, sans-serif;
  --wrap: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

img { max-width: 100%; display: block; }
a { color: var(--hud-green); text-decoration: none; }
a:hover { color: #b8f5cc; }

.wrap {
  width: min(100% - 1.75rem, var(--wrap));
  margin-inline: auto;
}

/* atmosphere */
.vignette {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 50% 20%, transparent 30%, rgba(0,0,0,0.55) 100%);
  z-index: 50;
}

.oil-stain {
  pointer-events: none;
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  z-index: 1;
}
.stain-a { width: 420px; height: 420px; background: #1e3a5f; top: 10%; left: -8%; }
.stain-b { width: 360px; height: 360px; background: #1a3d28; bottom: 5%; right: -5%; }

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(8, 10, 14, 0.94);
  border-bottom: 3px solid var(--line);
  box-shadow: 0 8px 0 rgba(0,0,0,0.35);
  padding-top: env(safe-area-inset-top);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 64px;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--cream);
  flex-shrink: 0;
}

.logo-lockup img {
  border: 2px solid var(--gold);
  border-radius: 10px;
  box-shadow: 2px 2px 0 #000;
}

.logo-type { display: flex; flex-direction: column; line-height: 0.95; }

.logo-small {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  color: var(--dust);
}

.logo-big {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-left: auto;
  font-size: 0.88rem;
  font-weight: 600;
}

.top-nav a { color: var(--dust); }
.top-nav a:hover { color: var(--cream); }

.pill-link {
  padding: 0.45rem 0.9rem !important;
  border: 2px solid var(--hud-green-dim) !important;
  border-radius: 4px !important;
  color: var(--hud-green) !important;
  background: rgba(61, 107, 79, 0.2);
  box-shadow: inset 0 0 0 1px rgba(134, 239, 172, 0.15);
}

.lang-pill {
  display: flex;
  border: 2px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.lang-pill button {
  border: none;
  background: var(--panel);
  color: var(--dust);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.4rem 0.55rem;
  cursor: pointer;
}

.lang-pill button.active {
  background: var(--gold);
  color: var(--ink);
}

.menu-btn {
  display: none;
  margin-left: auto;
  background: none;
  border: 2px solid var(--line);
  border-radius: 4px;
  padding: 0.45rem 0.5rem;
  cursor: pointer;
}
.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cream);
  margin: 4px 0;
}

/* HERO */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 4px solid #000;
}

.hero-shop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.38;
  filter: contrast(1.05) saturate(0.8);
  z-index: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, var(--ink) 0%, transparent 18%),
    radial-gradient(ellipse 70% 90% at 42% 55%, rgba(8,10,14,0.55) 0%, rgba(8,10,14,0.92) 72%);
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  align-items: end;
  gap: 0.75rem 1.5rem;
  padding: 2.75rem 0 1.75rem;
  min-height: auto;
  width: min(100% - 1.75rem, 920px);
  margin-inline: auto;
}

.hero-text {
  position: relative;
  z-index: 2;
  padding-bottom: 0.25rem;
  max-width: 34rem;
}

.hud-chip {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--hud-green);
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
  border: 2px solid #000;
  box-shadow: 3px 3px 0 #000;
  margin-bottom: 0.85rem;
}

.game-title {
  font-family: var(--display);
  margin: 0;
  line-height: 0.92;
  font-size: clamp(2.5rem, 4.8vw, 4.25rem);
  letter-spacing: 0.05em;
  text-shadow: 3px 3px 0 #000;
}

.game-title span:last-child {
  display: block;
  color: var(--gold);
  -webkit-text-stroke: 2px #000;
}

.hero-lede {
  max-width: 24rem;
  color: var(--dust);
  font-size: 0.98rem;
  margin: 0.75rem 0 1rem;
}

.dialogue-box {
  position: relative;
  max-width: 22rem;
  background: var(--cream);
  color: #111827;
  border: 3px solid #000;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.15rem;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.5);
  font-weight: 600;
  font-size: 0.92rem;
}

.dialogue-box p { margin: 0; }

.dialogue-tail {
  position: absolute;
  bottom: -14px;
  left: 28px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid #000;
}
.dialogue-tail::after {
  content: '';
  position: absolute;
  top: -17px;
  left: -10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid var(--cream);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.btn-solid {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.9rem;
  border: 3px solid #000;
  box-shadow: 4px 4px 0 #000;
  transition: transform 0.15s;
}
.btn-solid:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 #000; color: var(--ink); }

.btn-line {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border: 2px solid var(--dust);
  color: var(--cream);
  font-weight: 700;
  font-size: 0.9rem;
}
.btn-line:hover { border-color: var(--hud-green); color: var(--hud-green); }

.hud-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.hud-row li {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--dust);
  border: 1px solid var(--line);
  padding: 0.3rem 0.55rem;
  background: rgba(0,0,0,0.35);
}

.hero-figure {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: end;
  position: relative;
  z-index: 2;
  margin-left: -0.5rem;
}

.usta-full {
  width: min(300px, 100%);
  max-height: min(58vh, 480px);
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.55));
}

.hero-edge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  z-index: 4;
  pointer-events: none;
  background: repeating-linear-gradient(
    180deg,
    #3a4556 0,
    #3a4556 3px,
    #1a2230 3px,
    #1a2230 8px
  );
  border-top: 2px solid #000;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.35);
}

/* MEET ŞAKİR — single standing visual */
.meet-usta {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, var(--wall) 0%, var(--concrete) 100%);
  border-bottom: 4px solid #000;
}

.meet-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
}

.meet-figure {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 420px;
  background: linear-gradient(180deg, rgba(30, 58, 95, 0.15) 0%, transparent 60%);
  border: 3px solid #000;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.45);
}

.meet-figure img {
  width: min(340px, 90%);
  max-height: 480px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.55));
}

.meet-copy h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.meet-lede {
  color: var(--dust);
  margin: 0 0 1.75rem;
  max-width: 32rem;
}

.meet-beats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.meet-beats li {
  padding: 1rem 1.1rem;
  background: var(--panel);
  border: 2px solid var(--line);
  border-left: 4px solid var(--hud-green-dim);
}

.beat-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--hud-green);
  padding: 0.2rem 0.45rem;
  border: 2px solid #000;
  margin-bottom: 0.45rem;
}

.meet-beats p {
  margin: 0;
  color: var(--cream);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.45;
}

.strip-head h2,
.block-head h2,
.loop-copy h2,
.download-panel h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.strip-head p,
.block-head p,
.loop-lede {
  color: var(--dust);
  margin: 0;
  max-width: 36rem;
}

/* FEATURE STRIPS */
.block-section {
  padding: 4.5rem 0;
  background: var(--ink);
}

.block-head { margin-bottom: 2.5rem; }

.strip-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px dashed var(--line);
}

.strip-feature.reverse { direction: rtl; }
.strip-feature.reverse > * { direction: ltr; }

.strip-shot {
  border: 3px solid #000;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.45);
  overflow: hidden;
  background: #0a0e14;
}

.strip-shot img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.strip-shot.portrait {
  background: linear-gradient(180deg, #1a2438 0%, #0a0e14 100%);
}

.strip-shot.portrait img {
  height: 320px;
  object-fit: contain;
  object-position: center top;
  padding: 1.25rem 1.5rem 0.75rem;
}

.strip-shot.skew-left { transform: rotate(-1.2deg); }
.strip-shot.skew-right { transform: rotate(1.2deg); }

.strip-copy h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.65rem;
  color: var(--gold);
}

.strip-copy p { margin: 0; color: var(--dust); font-size: 0.98rem; }

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mini-tile {
  position: relative;
  min-height: 200px;
  padding: 1.25rem;
  background: var(--panel);
  border: 3px solid #000;
  box-shadow: 5px 5px 0 #000;
  overflow: hidden;
}

.mini-tile h3 {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.03em;
  margin: 0 0 0.5rem;
  position: relative;
  z-index: 2;
}

.mini-tile p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--dust);
  position: relative;
  z-index: 2;
}

.mini-icon {
  font-size: 2rem;
  font-weight: 900;
  color: var(--warning);
  display: block;
  margin-bottom: 0.5rem;
}

.mini-fig {
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 55%;
  opacity: 0.35;
  z-index: 1;
}

.mini-fig.portrait-mini {
  height: 88%;
  width: auto;
  max-width: 52%;
  object-fit: contain;
  object-position: bottom right;
  opacity: 0.5;
}

.mini-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  z-index: 0;
}

/* LOOP */
.loop-section {
  padding: 4.5rem 0;
  background: var(--concrete);
  border-block: 4px solid #000;
}

.loop-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.day-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.day-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.day-list li span {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}

.day-list li p { margin: 0; color: var(--dust); font-weight: 600; }

.loop-visual { position: relative; }

.browser-frame {
  border: 3px solid #000;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  box-shadow: 10px 10px 0 rgba(0,0,0,0.4);
  background: #fff;
}

.browser-bar {
  display: flex;
  gap: 6px;
  padding: 8px 10px;
  background: #e7e5e4;
  border-bottom: 2px solid #ccc;
}
.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d6d3d1;
  border: 1px solid #aaa;
}

.browser-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.loop-float {
  position: absolute;
  width: 72px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5));
}
.loop-float.part { top: -20px; right: -10px; transform: rotate(12deg); }
.loop-float.part-b { bottom: 20px; left: -24px; transform: rotate(-8deg); width: 64px; }

/* FILMSTRIP */
.shots-section {
  padding: 4rem 0 4.5rem;
  background: var(--wall);
}

.filmstrip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 1rem 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.filmstrip figure {
  flex: 0 0 min(78vw, 420px);
  margin: 0;
  scroll-snap-align: start;
  border: 3px solid #000;
  box-shadow: 6px 6px 0 #000;
  position: relative;
  background: #000;
}

.filmstrip img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.filmstrip figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  font-weight: 700;
  font-size: 0.88rem;
}

/* DOWNLOAD */
.download-block {
  padding: 0 0 4rem;
  background: var(--ink);
}

.download-inner {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: end;
  gap: 0;
  border: 4px solid #000;
  background: var(--panel);
  box-shadow: 10px 10px 0 rgba(0,0,0,0.5);
  overflow: hidden;
}

.download-usta {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  object-position: bottom center;
  align-self: end;
  margin-bottom: -4px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
}

.download-panel {
  padding: 2rem 2rem 2rem 1rem;
  text-align: left;
}

.dl-icon {
  border: 3px solid var(--gold);
  border-radius: 16px;
  margin-bottom: 1rem;
  box-shadow: 3px 3px 0 #000;
}

.download-panel p {
  color: var(--dust);
  max-width: 28rem;
  margin: 0 0 1.25rem;
}

.store-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.store-pill {
  padding: 0.65rem 1rem;
  font-weight: 800;
  font-size: 0.85rem;
  border: 2px solid var(--line);
  color: var(--dust);
  background: rgba(0,0,0,0.3);
}

.store-pill.on {
  background: var(--gold);
  color: var(--ink);
  border-color: #000;
  box-shadow: 3px 3px 0 #000;
}

/* FOOTER */
.site-foot {
  border-top: 3px solid var(--line);
  padding: 1.75rem 0;
  background: #06080c;
}

.foot-row {
  display: grid;
  gap: 0.75rem;
}

.foot-brand strong { display: block; font-family: var(--display); letter-spacing: 0.06em; }
.foot-brand span { color: var(--dust); font-size: 0.88rem; }
.foot-links { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.9rem; }
.foot-row small { color: var(--dust); opacity: 0.7; }

/* PRIVACY PAGE (shared) */
.privacy-main { padding: 2.5rem 0 4rem; }

.back-link {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--dust);
  font-weight: 700;
}

.privacy-doc {
  max-width: 720px;
  background: var(--panel);
  border: 3px solid #000;
  box-shadow: 6px 6px 0 #000;
  padding: 2rem;
}

.privacy-doc h1 {
  font-family: var(--display);
  font-size: 2.5rem;
  margin: 0 0 1rem;
  letter-spacing: 0.04em;
}

.privacy-intro { color: var(--dust); }

.privacy-doc section { margin-top: 1.75rem; }
.privacy-doc h2 { font-size: 1rem; color: var(--gold); margin: 0 0 0.5rem; }
.privacy-doc p, .privacy-list { color: var(--dust); margin: 0; }
.privacy-list { padding-left: 1.2rem; }

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (min-width: 961px) {
  .hero-layout {
    padding-inline: 1rem;
  }

  .hero-figure {
    margin-left: -1rem;
  }
}

@media (max-width: 960px) {
  .header-row {
    flex-wrap: wrap;
    min-height: 56px;
    gap: 0.65rem;
  }

  .lang-pill {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 1.5rem 0 1.25rem;
    gap: 0.25rem;
    width: min(100% - 1.25rem, 920px);
  }

  .hero-text {
    order: 1;
    max-width: none;
  }

  .hero-figure {
    order: 2;
    min-height: 0;
    max-height: none;
    margin-top: 0.25rem;
    margin-left: 0;
  }

  .usta-full {
    max-height: min(44vh, 300px);
    width: min(260px, 72vw);
    margin-inline: auto;
  }

  .hero-lede {
    font-size: 1rem;
    max-width: none;
  }

  .dialogue-box {
    max-width: none;
  }

  .hud-row {
    margin-bottom: 0;
  }

  .meet-grid { grid-template-columns: 1fr; }
  .meet-figure { min-height: 300px; order: -1; }
  .strip-feature, .strip-feature.reverse { grid-template-columns: 1fr; direction: ltr; }
  .strip-shot.portrait img { height: 280px; }
  .loop-grid { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: 1fr; }
  .download-inner { grid-template-columns: 1fr; }
  .download-usta { max-height: 280px; }
  .menu-btn { display: block; }
  .top-nav {
    position: fixed;
    top: calc(56px + env(safe-area-inset-top));
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(8,10,14,0.98);
    border-bottom: 3px solid var(--line);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: 0.22s;
    margin-left: 0;
  }
  .top-nav.open { transform: none; opacity: 1; pointer-events: auto; }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 1.25rem, var(--wrap));
  }

  .logo-big { font-size: 0.92rem; }
  .logo-lockup img { width: 34px; height: 34px; }

  .game-title {
    font-size: clamp(2.35rem, 13vw, 3.2rem);
    letter-spacing: 0.04em;
  }

  .hud-chip {
    font-size: 0.65rem;
    padding: 0.3rem 0.55rem;
  }

  .hero-layout {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .hero-lede {
    font-size: 0.95rem;
    margin: 0.85rem 0 1rem;
  }

  .dialogue-box {
    font-size: 0.9rem;
    padding: 0.85rem 1rem;
    margin-bottom: 1.15rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .btn-solid, .btn-line {
    text-align: center;
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
  }

  .hud-row {
    gap: 0.35rem;
  }

  .hud-row li {
    font-size: 0.62rem;
    padding: 0.28rem 0.45rem;
    flex: 1 1 auto;
    text-align: center;
  }

  .usta-full {
    max-height: min(46vh, 300px);
    width: min(260px, 80vw);
  }

  .meet-usta { padding: 3rem 0; }
  .meet-figure { min-height: 260px; }
  .meet-figure img { max-height: 340px; }
  .meet-beats li { padding: 0.85rem; }

  .block-section { padding: 3rem 0; }
  .strip-feature { margin-bottom: 2rem; padding-bottom: 2rem; gap: 1.25rem; }
  .strip-shot img { height: 220px; }
  .strip-shot.portrait img { height: 260px; padding: 1rem; }

  .loop-section { padding: 3rem 0; }
  .shots-section { padding: 3rem 0; }

  .filmstrip {
    gap: 0.75rem;
    padding-inline: 0.75rem;
    scroll-padding-inline: 0.75rem;
  }

  .filmstrip figure {
    flex: 0 0 min(85vw, 360px);
  }

  .filmstrip img { height: 200px; }

  .download-panel {
    padding: 1.5rem 1.25rem;
  }

  .site-foot {
    padding-bottom: calc(1.75rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 380px) {
  .game-title { font-size: 2.15rem; }
  .hud-row li { font-size: 0.58rem; }
}
