:root {
  --bg: #070707;
  --yellow: #ffd51f;
  --text: #fff;
  --muted: #c8c8c8;
  --border: rgba(255,255,255,.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body { margin: 0; color: var(--text); background: var(--bg); font-family: Inter, Arial, Helvetica, sans-serif; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(26px,3.4vw,66px);
  background: linear-gradient(#080808 0%, rgba(8,8,8,.92) 72%, transparent);
}
.brand { flex: 0 0 auto; }
.brand img { width: 245px; max-height: 72px; object-fit: contain; object-position: left center; display: block; }
.desktop-nav { margin-left: auto; display: flex; gap: clamp(24px,2vw,40px); font-size: 14px; font-weight: 800; text-transform: uppercase; }
.desktop-nav a { transition: color .2s ease; }
.desktop-nav a:hover { color: var(--yellow); }
.menu-button { display: none; }
.mobile-menu-backdrop { position: fixed; z-index: 48; inset: 0; background: transparent; }
.mobile-menu { position: fixed; z-index: 49; top: 82px; right: 18px; left: 18px; padding: 18px; border: 1px solid var(--border); border-radius: 16px; background: rgba(5,5,5,.96); }
.mobile-menu a { display: block; padding: 13px; }

/* Die Bühne bleibt stehen, der Text darunter ist normaler Dokumentinhalt. */
.scroll-story { position: relative; }
.sticky-stage {
  position: sticky;
  z-index: 0;
  top: 0;
  height: 100vh;
  height: 100svh;
  min-height: 650px;
  overflow: hidden;
  isolation: isolate;
}
.scene-stack,
.scene { position: absolute; inset: 0; width: 100%; height: 100%; }
.scene {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  filter: blur(8px);
  will-change: opacity, transform, filter;
  background: #000;
}
.scene.is-active { opacity: 1; }
.vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.985) 0%, rgba(0,0,0,.93) 30%, rgba(0,0,0,.69) 46%, rgba(0,0,0,.20) 68%, rgba(0,0,0,.04) 84%),
    linear-gradient(0deg, rgba(0,0,0,.70), transparent 44%);
}
.ambient-glow { position: absolute; width: 40vw; height: 40vw; right: 8vw; top: 15vh; border-radius: 50%; background: rgba(255,190,0,.13); filter: blur(70px); }

.story-copy {
  position: relative;
  z-index: 10;
  width: min(42vw, 720px);
  margin-top: -100vh;
  margin-top: -100svh;
  margin-left: clamp(34px, 3.4vw, 66px);
}
.copy-panel {
  position: relative;
  min-height: 122vh;
  min-height: 122svh;
  display: flex;
  align-items: flex-start;
  padding: clamp(145px, 18vh, 205px) 0 clamp(150px, 20vh, 240px);
}
.copy-panel:first-child {
  min-height: 128vh;
  min-height: 128svh;
}
.hero-panel { padding-top: clamp(165px, 18vh, 210px); }
.hero-panel h1 { max-width: 720px; margin-top: 0; font-size: clamp(50px, 4.15vw, 76px); line-height: .96; }
.hero-summary { margin-top: 24px !important; max-width: 610px !important; color: #e8e8e8 !important; font-size: clamp(17px, 1.05vw, 20px) !important; line-height: 1.7 !important; }
.hero-summary strong { color: #fff; font-size: 1.08em; }
.copy-inner { width: 100%; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: #fff; border: 1px solid rgba(255,213,31,.7); border-radius: 8px; padding: 8px 13px; text-transform: uppercase; font-weight: 900; font-size: 13px; letter-spacing: .08em; }
.eyebrow.eyebrow-white { color: #fff; border-color: rgba(255,255,255,.9); }
h1,
h2 { margin: 20px 0 18px; font-family: Impact, Arial, sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: .015em; line-height: .94; font-size: clamp(48px,4.5vw,78px); }
h1 strong,
h2 strong { color: var(--yellow); font-weight: inherit; }
.copy-panel p { margin: 0; max-width: 620px; color: #e6e6e6; font-size: clamp(16px,1.05vw,19px); line-height: 1.62; overflow-wrap: break-word; }
.copy-panel p + p { margin-top: 17px; }
.copy-panel .copy-lead { color: #fff; font-size: clamp(18px,1.25vw,22px); line-height: 1.5; font-weight: 700; }
.story-highlights { display: grid; gap: 10px; margin: 27px 0 0; padding: 0; list-style: none; }
.story-highlights li { display: grid; grid-template-columns: minmax(145px, .85fr) 1.5fr; gap: 15px; align-items: start; padding: 13px 15px; border-left: 3px solid var(--yellow); background: linear-gradient(90deg, rgba(0,0,0,.7), rgba(0,0,0,.18)); backdrop-filter: blur(8px); }
.story-highlights strong { color: var(--yellow); text-transform: uppercase; font-size: 13px; letter-spacing: .03em; }
.story-highlights span { color: #d2d2d2; font-size: 14px; line-height: 1.42; }
.hero-stats { display: flex; align-items: stretch; gap: 0; margin-top: 34px; }
.hero-stat { display: flex; align-items: center; gap: 16px; min-width: 190px; padding: 0 30px 0 0; }
.hero-stat + .hero-stat { margin-left: 30px; padding-left: 30px; border-left: 1px solid rgba(255,255,255,.22); }
.hero-stat-icon { width: 62px; height: 62px; flex: 0 0 62px; display: grid; place-items: center; border: 1px solid rgba(255,213,31,.75); border-radius: 50%; }
.hero-stat-icon svg { width: 38px; height: 38px; fill: none; stroke: var(--yellow); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.hero-stat > span:last-child { display: flex; flex-direction: column; }
.hero-stat strong { font-size: 24px; line-height: 1; text-transform: uppercase; }
.hero-stat small { margin-top: 7px; color: #bbb; font-size: 12px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 56px; padding: 0 26px; border-radius: 8px; font-weight: 900; text-transform: uppercase; font-size: 14px; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.play-icon { font-size: 13px; }
.button-primary { color: #090909; background: linear-gradient(90deg,#ffcb17,#ffe349); box-shadow: 0 0 28px rgba(255,213,31,.22); }
.button-primary:hover { transform: translateY(-2px); }
.button-secondary { border: 1px solid rgba(255,255,255,.55); background: rgba(0,0,0,.45); }
.funding-section { position: relative; z-index: 15; max-width: 1380px; margin: 0 auto; padding: 92px 36px; display: grid; grid-template-columns: minmax(320px,.8fr) minmax(520px,1.2fr); gap: clamp(50px,7vw,110px); align-items: center; }
.funding-intro h2 { margin: 20px 0 18px; font-size: clamp(44px,4.3vw,70px); }
.funding-intro p { margin: 0; max-width: 560px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.funding-overview { padding: 30px; border: 1px solid rgba(255,213,31,.42); border-radius: 18px; background: linear-gradient(145deg, rgba(24,24,24,.96), rgba(8,8,8,.98)); box-shadow: 0 28px 60px rgba(0,0,0,.3); }
.funding-numbers { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.funding-numbers > div { display: flex; flex-direction: column; min-width: 0; }
.funding-numbers span,
.funding-numbers small { color: #aaa; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
.funding-numbers strong { margin: 6px 0 4px; color: #fff; font-size: clamp(23px,2vw,31px); line-height: 1; }
.funding-progress { height: 12px; margin-top: 26px; overflow: hidden; border-radius: 999px; background: #292929; }
.funding-progress i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg,#ffcb17,#ffe349); box-shadow: 0 0 18px rgba(255,213,31,.4); }
.funding-button { margin-top: 24px; }

.product-layer { position: absolute; z-index: 8; right: 2.6vw; bottom: 18px; width: min(39vw, 700px); height: calc(100vh - 120px); height: calc(100svh - 120px); display: flex; align-items: flex-end; justify-content: center; transform-origin: 50% 72%; filter: drop-shadow(0 28px 35px rgba(0,0,0,.55)); }
.product-layer .device-video { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }

/* Das Smartphone erscheint verzögert, bleibt mittig und kann gezoomt werden. */
.phone-game-showcase {
  --phone-zoom: 1;
  position: absolute;
  z-index: 20;
  left: 54%;
  bottom: -120px;
  width: clamp(600px, 42vw, 780px);
  max-width: 92vw;
  aspect-ratio: 1088 / 1024;
  opacity: 0;
  transform: translate(-50%, 120%) rotate(-4deg) scale(var(--phone-zoom));
  transform-origin: 50% 100%;
  filter: drop-shadow(0 34px 42px rgba(0,0,0,.58));
  will-change: transform, opacity;
  transition: opacity .55s ease, transform 1.15s cubic-bezier(.16, 1, .3, 1);
}
.phone-game-showcase.is-visible {
  opacity: 1;
  transform: translate(-50%, 0) rotate(0deg) scale(var(--phone-zoom));
}
.phone-game-showcase.is-folded {
  opacity: .98;
  transform: translate(-50%, 78%) rotate(-5deg) scale(var(--phone-zoom));
}
.phone-game-showcase.is-folded::after {
  content: '';
  position: absolute;
  top: 9.1%;
  left: 50%;
  width: 30%;
  height: 3.2%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.30));
  box-shadow: 0 4px 12px rgba(0,0,0,.22);
  pointer-events: none;
}
.phone-hands-frame { position: absolute; z-index: 2; inset: 0; display: block; width: 100%; height: 100%; object-fit: contain; pointer-events: none; opacity: 1; visibility: visible; transform: translateZ(0); user-select: none; -webkit-user-drag: none; }
.phone-control-stack {
  position: absolute;
  z-index: 8;
  right: 26.6%;
  top: 8.2%;
  display: grid;
  gap: 7px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(7px);
  transition: opacity .22s ease, transform .22s ease;
}
.phone-game-showcase:hover .phone-control-stack,
.phone-game-showcase:focus-within .phone-control-stack {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.phone-control-button {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  background: rgba(10,10,10,.74);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.32);
  backdrop-filter: blur(6px);
  font: 800 18px/1 Arial, sans-serif;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, opacity .18s ease, border-color .18s ease;
}
.phone-control-button:hover,
.phone-control-button:focus-visible {
  background: rgba(0,0,0,.92);
  border-color: rgba(255,213,31,.9);
  transform: scale(1.07);
  outline: none;
}
.phone-control-button:active { transform: scale(.93); }
.phone-control-button:disabled { opacity: .32; cursor: default; transform: none; }
.phone-close-button { font-size: 17px; }
.phone-zoom-button { color: var(--yellow); }
.phone-game-showcase.is-folded .phone-control-stack { opacity: 0; pointer-events: none; }
.phone-reopen-button {
  position: absolute;
  z-index: 9;
  top: 9.2%;
  left: 50%;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  transform: translate(-50%, -115%);
  border: 1px solid rgba(255,213,31,.85);
  border-radius: 999px;
  color: #111;
  background: var(--yellow);
  box-shadow: 0 8px 22px rgba(0,0,0,.42);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.phone-reopen-button b { font-size: 16px; line-height: 1; }
.phone-reopen-button:hover,
.phone-reopen-button:focus-visible { background: #ffe45c; outline: none; transform: translate(-50%, -115%) scale(1.04); }
.phone-game-showcase.is-folded .phone-reopen-button { opacity: 1; pointer-events: auto; }
.phone-game-screen { position: absolute; z-index: 1; left: 32.62%; top: 11.45%; width: 35%; height: 71.2%; overflow: hidden; border-radius: 7.5% / 3.4%; background: #262626; pointer-events: auto; isolation: isolate; }
.phone-game-screen iframe { display: none; }
.instruction-video-player { position: absolute; z-index: 1; inset: 0; overflow: hidden; background: #000; }
.instruction-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; transition: opacity .4s ease; pointer-events: none; }
.instruction-video.is-active { opacity: 1; }
.instruction-video-nav { position: absolute; z-index: 4; top: 50%; width: 28px; height: 46px; padding: 0; transform: translateY(-50%); border: 1px solid rgba(255,255,255,.38); border-radius: 8px; color: #fff; background: rgba(0,0,0,.42); box-shadow: 0 4px 14px rgba(0,0,0,.3); font: 700 18px/1 Arial, sans-serif; cursor: pointer; opacity: 0; pointer-events: none; transition: opacity .2s ease, background .2s ease, transform .2s ease; }
.phone-game-showcase:hover .instruction-video-nav,
.phone-game-showcase:focus-within .instruction-video-nav { opacity: .72; pointer-events: auto; }
.instruction-video-nav:hover,
.instruction-video-nav:focus-visible { opacity: 1; background: rgba(0,0,0,.7); outline: none; }
.instruction-video-nav:active { transform: translateY(-50%) scale(.94); }
.instruction-video-prev { left: 6px; }
.instruction-video-next { right: 6px; }
.instruction-video-nav[hidden] { display: none; }
.phone-game-loader { position: absolute; z-index: 2; inset: 0; display: grid; place-items: center; padding: 20px; color: rgba(255,255,255,.8); background: #262626; font-size: 12px; font-weight: 800; text-align: center; text-transform: uppercase; letter-spacing: .08em; transition: opacity .25s ease; }
.phone-game-loader.is-hidden { opacity: 0; pointer-events: none; }

.scene-dots { position: absolute; z-index: 20; right: 22px; top: 50%; display: grid; gap: 10px; }
.scene-dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.35); transition: height .25s ease, background .25s ease; }
.scene-dots span.is-active { height: 28px; border-radius: 8px; background: var(--yellow); }

.feature-strip { position: relative; z-index: 12; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; max-width: 1450px; margin: 0 auto; padding: 0 24px; }
.feature-strip article { min-height: 112px; padding: 27px; display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--border); background: rgba(12,12,12,.96); }
.feature-strip b { color: var(--yellow); text-transform: uppercase; }
.feature-strip span { color: #aaa; margin-top: 7px; }
.content-section { max-width: 1320px; margin: 0 auto; min-height: 70vh; padding: 130px 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.content-section h2,
.faq h2 { font-size: clamp(42px,5vw,76px); }
.content-section p { color: var(--muted); font-size: 20px; line-height: 1.65; }
.video-placeholder { min-height: 370px; display: grid; place-content: center; text-align: center; border: 1px solid var(--border); border-radius: 18px; background: radial-gradient(circle at center, #28200b, #0c0c0c 65%); }
.video-placeholder span { font-size: 26px; font-weight: 900; }
.video-placeholder small { margin-top: 8px; color: #aaa; }
.content-section.dark { max-width: none; min-height: 50vh; padding-left: max(36px, calc((100vw - 1250px)/2)); padding-right: max(36px, calc((100vw - 1250px)/2)); background: #101010; }


/* Kickstarter-Preiskarten mit animiertem Bier-Rahmen. */
.pricing-section {
  position: relative;
  z-index: 12;
  overflow: visible;
  padding: 145px max(24px, calc((100vw - 1380px) / 2)) 135px;
  background: #010100;
}
.pricing-intro {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto 70px;
  text-align: center;
}
.pricing-intro h2 {
  margin-bottom: 22px;
  font-size: clamp(45px, 5.2vw, 78px);
}
.pricing-intro p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.65;
}
.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  /* Alle drei Preiskarten haben dieselbe Breite wie zuvor die Ultimate Edition. */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 34px);
  align-items: end;
}
.pricing-card-shell {
  position: relative;
  z-index: 1;
  min-width: 0;
  aspect-ratio: 9 / 16;
  overflow: visible;
  isolation: isolate;
  transition: transform .28s ease;
}
.pricing-card-shell.is-frame-active {
  z-index: 20;
}
.pricing-card {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 11% / 6.2%;
  background: #0b0b0b;
  box-shadow: 0 32px 75px rgba(0, 0, 0, .52);
  cursor: pointer;
  transition: border-color .18s ease;
}
.pricing-card.is-frame-active {
  border-color: transparent;
}
.pricing-card:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 5px;
}
.pricing-card-shell:hover {
  transform: translateY(-8px);
}
.pricing-card-shell.pricing-card-featured {
  transform: none;
}
.pricing-card-shell.pricing-card-featured:hover {
  transform: translateY(-8px);
}
.pricing-frame-layer {
  position: absolute;
  z-index: 30;
  left: 0;
  top: 0;
  width: var(--frame-width, 0px);
  height: var(--frame-height, 0px);
  overflow: hidden;
  border-radius: 14% / 8%;
  pointer-events: none;
  user-select: none;
  transform: translate3d(var(--frame-x, 0px), var(--frame-y, 0px), 0);
  backface-visibility: hidden;
  contain: layout paint style;
  box-shadow:
    0 0 20px 8px rgba(0, 0, 0, .52),
    inset 0 0 18px 9px rgba(7, 7, 7, .66);
}
.pricing-frame-layer::after {
  content: '';
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    ellipse at center,
    transparent 72%,
    rgba(7, 7, 7, .08) 82%,
    rgba(7, 7, 7, .62) 100%
  );
  pointer-events: none;
}
.pricing-frame {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: fill;
  border-radius: inherit;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.pricing-card-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 15.5% 13.5% 9.5%;
}
.pricing-card-header {
  text-align: left;
}
.pricing-card h3 {
  margin: 0 0 5px;
  color: #fff;
  font-family: Impact, Arial, sans-serif;
  font-size: clamp(25px, 2.25vw, 36px);
  line-height: .98;
  letter-spacing: .015em;
  text-transform: uppercase;
}
.pricing-price {
  display: flex;
  align-items: flex-start;
  margin-top: 12px;
  color: #fff;
  line-height: 1;
}
.pricing-price span {
  margin: .18em 2px 0 0;
  font-size: clamp(24px, 2.2vw, 37px);
  font-weight: 800;
}
.pricing-price strong {
  font-size: clamp(58px, 5.15vw, 90px);
  font-weight: 500;
  letter-spacing: -.045em;
}
.pricing-delivery {
  margin: 7px 0 0;
  color: #d7d7d7;
  font-size: clamp(11px, .9vw, 14px);
  line-height: 1.52;
}
.pricing-delivery b {
  color: #fff;
  font-weight: 800;
}
.pricing-divider {
  height: 1px;
  margin: 6.5% 0 5.2%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25) 10%, rgba(255, 255, 255, .16) 90%, transparent);
}
.pricing-features {
  display: grid;
  gap: clamp(8px, .86vw, 14px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.pricing-features li {
  position: relative;
  padding-left: 24px;
  color: #f2f2f2;
  font-size: clamp(12px, 1.02vw, 16px);
  line-height: 1.36;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -.05em;
  color: var(--yellow);
  font-size: 1.12em;
  font-weight: 900;
  text-shadow: 0 0 12px rgba(255, 213, 31, .38);
}
.pricing-features small {
  color: #aaa;
  font-size: .78em;
  font-weight: 800;
}
.pricing-features-compact {
  gap: clamp(5px, .55vw, 9px);
}
.pricing-features-compact li {
  font-size: clamp(11px, .88vw, 14px);
  line-height: 1.25;
}
.pricing-button {
  width: 100%;
  margin-top: auto;
}
.faq { max-width: 980px; margin: auto; padding: 120px 30px; }
details { border-top: 1px solid var(--border); padding: 24px 0; }
details:last-child { border-bottom: 1px solid var(--border); }
summary { cursor: pointer; font-size: 20px; font-weight: 800; }
details p { color: #bbb; line-height: 1.6; }
footer { padding: 38px clamp(22px,5vw,80px); display: flex; justify-content: space-between; gap: 25px; border-top: 1px solid var(--border); color: #999; }
footer nav { display: flex; gap: 24px; }

@media (max-width: 1200px) {
  .site-header { gap: 16px; }
  .brand img { width: 215px; }
    .desktop-nav { gap: 20px; font-size: 12px; }
  .story-copy { width: min(46vw, 620px); }
  .product-layer { right: 0; width: 43vw; }
  .phone-game-showcase { left: 54%; width: clamp(590px, 48vw, 720px); max-width: 92vw; bottom: -110px; }
  h1,
  h2 { font-size: clamp(46px,4.8vw,68px); }
  .funding-section { grid-template-columns: 1fr; }
}

@media (max-width: 1050px) {
  .pricing-section { padding-top: 120px; padding-bottom: 115px; }
  .pricing-grid { grid-template-columns: repeat(2, minmax(280px, 420px)); justify-content: center; }
  .pricing-card-shell:last-child { grid-column: 1 / -1; width: min(100%, 420px); justify-self: center; }
  .pricing-card-shell.pricing-card-featured { transform: none; }
  .pricing-card-shell.pricing-card-featured:hover { transform: translateY(-8px); }
  .desktop-nav,
  .kickstarter-badge {
    display: none;
  }
  .menu-button {
    display: block;
    margin-left: auto;
    color: white;
    background: #111;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
  }
  .story-copy { width: 52vw; }
  .product-layer { width: 50vw; right: -4vw; opacity: .94; }
  .phone-game-showcase { left: 53%; width: clamp(560px, 58vw, 680px); max-width: 94vw; bottom: -95px; }
  .feature-strip { grid-template-columns: repeat(2,1fr); }
  .story-highlights li { grid-template-columns: 1fr; gap: 5px; }
}

@media (max-width: 720px) {
  .pricing-section { padding: 100px 28px 95px; }
  .pricing-intro { margin-bottom: 50px; padding: 0 10px; }
  .pricing-grid { grid-template-columns: minmax(0, 430px); gap: 24px; }
  .pricing-card-shell:last-child { grid-column: auto; width: 100%; }
  .pricing-card-content { padding: 15.5% 13.5% 9.5%; }

  /* Mobil ist ausschließlich der Kickstarter-Button interaktiv.
     So entstehen auf Touch-Geräten keine dauerhaften Hover-/Tap-Zustände
     auf der gesamten Preiskarte. */
  .pricing-card {
    cursor: default;
    pointer-events: none;
  }
  .pricing-card .pricing-button {
    pointer-events: auto;
  }
  .pricing-card-shell:hover,
  .pricing-card-shell.pricing-card-featured:hover {
    transform: none;
  }

  .pricing-card h3 { font-size: clamp(27px, 7.7vw, 32px); }
  .pricing-price span { font-size: clamp(25px, 8vw, 36px); }
  .pricing-price strong { font-size: clamp(64px, 20vw, 86px); }
  .pricing-delivery { font-size: clamp(11px, 3.7vw, 14px); }
  .pricing-features { gap: clamp(8px, 2.9vw, 13px); }
  .pricing-features li { font-size: clamp(12px, 4vw, 16px); }
  .pricing-features-compact { gap: clamp(5px, 2vw, 9px); }
  .pricing-features-compact li { font-size: clamp(11px, 3.55vw, 14px); }
  .site-header { height: 76px; padding: 8px 16px; }
  .brand img { width: 185px; }
  .sticky-stage { min-height: 100svh; background: #000; }

  /* Das 16:9-Hintergrundvideo füllt mobil nicht mehr die komplette hohe
     Bühne. Dadurch wird links und rechts deutlich weniger abgeschnitten und
     ein wesentlich breiterer Ausschnitt der Szene bleibt sichtbar. */
  .scene {
    inset: 0 0 auto;
    height: min(62svh, 118vw);
    object-position: center center;
    transform: none !important;
    filter: none !important;
    will-change: opacity;
  }
  .pricing-frame-layer {
    box-shadow:
      0 0 14px 5px rgba(0, 0, 0, .48),
      inset 0 0 12px 6px rgba(7, 7, 7, .62);
  }

  .vignette { background: linear-gradient(0deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.88) 54%, rgba(0,0,0,.2) 84%); }
  .story-copy { width: auto; margin-left: 18px; margin-right: 18px; }
  .copy-panel,
  .copy-panel:first-child { min-height: 132svh; padding: 53svh 0 18svh; }
  .hero-panel { padding-top: 49svh; }
  .hero-panel h1 { font-size: clamp(39px,11vw,58px); }
  h1,
  h2 { font-size: clamp(38px,11vw,58px); }
  .copy-panel p { font-size: 15px; max-width: 100%; }
  .copy-panel .copy-lead { font-size: 17px; }
  .story-highlights { gap: 7px; }
  .story-highlights li { padding: 10px 12px; background: rgba(0,0,0,.66); }
  .hero-actions { gap: 8px; margin-top: 22px; }
  .button { min-height: 46px; padding: 0 14px; font-size: 11px; }
  .hero-stats { gap: 0; margin-top: 26px; }
  .hero-stat { min-width: 0; padding-right: 16px; gap: 10px; }
  .hero-stat + .hero-stat { margin-left: 16px; padding-left: 16px; }
  .hero-stat-icon { width: 48px; height: 48px; flex-basis: 48px; }
  .hero-stat-icon svg { width: 29px; height: 29px; }
  .hero-stat strong { font-size: 17px; }
  .hero-stat small { font-size: 9px; }
  .product-layer { width: 86vw; height: 51vh; right: -10vw; top: 82px; bottom: auto; }

  /* Auf kleinen Displays wird das Smartphone per JavaScript direkt unter
     <body> verschoben. So liegt es vor Story-Text, Header und allen anderen
     Ebenen und bleibt vollständig bedienbar. */
  .phone-game-showcase,
  body > .phone-game-showcase.is-mobile-overlay {
    position: fixed;
    z-index: 1000;
    left: 52%;
    width: 96vw;
    max-width: 680px;
    bottom: -7vh;
    pointer-events: auto;
    touch-action: pan-y;
  }
  body > .phone-game-showcase.is-mobile-overlay.is-outside-story {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate(-50%, 120%) rotate(-4deg) scale(var(--phone-zoom)) !important;
  }
  .phone-control-stack {
    right: 26.2%;
    top: 8.5%;
    gap: 5px;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }
  .phone-game-showcase.is-folded .phone-control-stack {
    opacity: 0;
    pointer-events: none;
  }
  .instruction-video-nav {
    width: 14px;
    height: 23px;
    border-radius: 4px;
    font-size: 9px;
    opacity: .72;
    pointer-events: auto;
  }
  .instruction-video-prev { left: 3px; }
  .instruction-video-next { right: 3px; }
  .phone-game-showcase.is-folded,
  body > .phone-game-showcase.is-mobile-overlay.is-folded {
    transform: translate(-50%, 90%) rotate(-5deg) scale(var(--phone-zoom));
  }
  .phone-control-button { width: 28px; height: 28px; font-size: 16px; }
  .phone-reopen-button { min-height: 34px; padding: 0 13px; font-size: 10px; }
  .scene-dots { right: 10px; }
  .funding-section { padding: 76px 24px; gap: 36px; }
  .funding-overview { padding: 23px; }
  .funding-numbers { grid-template-columns: repeat(2,1fr); row-gap: 25px; }
  .feature-strip { margin: 0; grid-template-columns: 1fr; padding: 0; }
  .content-section { grid-template-columns: 1fr; padding: 90px 24px; }
  .content-section.dark { padding: 80px 24px; }
  footer { flex-direction: column; }
}


@media (hover: none), (pointer: coarse) {
  .phone-control-stack {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }
  .phone-game-showcase.is-folded .phone-control-stack {
    opacity: 0;
    pointer-events: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* === Erweiterte Landingpage 2026 === */
.section-intro{max-width:880px}.section-intro.centered{margin:0 auto 62px;text-align:center}.section-intro h2{margin-bottom:22px;font-size:clamp(44px,5.2vw,78px)}.section-intro p{margin:0;color:var(--muted);font-size:clamp(16px,1.25vw,20px);line-height:1.7}.section-intro strong{color:var(--yellow)}
.example-label{display:inline-flex;align-items:center;width:fit-content;padding:6px 9px;border:1px solid rgba(255,213,31,.34);border-radius:999px;color:#d8bf55;background:rgba(255,213,31,.06);font-size:10px;font-weight:900;letter-spacing:.08em;line-height:1;text-transform:uppercase}
.how-section{position:relative;z-index:12;max-width:1380px;margin:0 auto;padding:132px 34px 145px}.steps-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.step-card{position:relative;min-height:178px;overflow:hidden;padding:20px 20px 18px;border:1px solid var(--border);border-radius:16px;background:linear-gradient(145deg,rgba(23,23,23,.98),rgba(6,6,6,.98))}.step-card:after{content:'';position:absolute;width:130px;height:130px;right:-68px;bottom:-74px;border-radius:50%;background:rgba(255,213,31,.075);filter:blur(8px)}.step-heading{position:relative;z-index:1;display:flex;align-items:baseline;gap:11px;margin-bottom:14px}.step-number{flex:0 0 auto;color:#fff;font-size:18px;font-weight:900;letter-spacing:0;line-height:1.18}.step-card h3{margin:0;color:#fff;font-size:18px;line-height:1.18;text-transform:uppercase}.step-card p{position:relative;z-index:1;margin:0;color:#aaa;font-size:14px;line-height:1.5}
.games-section{position:relative;z-index:12;padding:135px max(28px,calc((100vw - 1380px)/2));background:linear-gradient(180deg,#0a0a0a,#050505)}.games-intro{margin-bottom:56px}.games-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}.game-card{min-width:0;overflow:hidden;border:1px solid var(--border);border-radius:18px;background:#0e0e0e;transition:transform .25s ease,border-color .25s ease}.game-card:hover{transform:translateY(-5px);border-color:rgba(255,213,31,.48)}.game-card img{width:100%;height:auto;display:block;object-fit:contain;object-position:center center;filter:saturate(.9) contrast(1.04)}.game-card>div{padding:23px 24px 26px}.game-card>div>span{color:var(--yellow);font-size:11px;font-weight:900;letter-spacing:.12em;text-transform:uppercase}.game-card h3{margin:7px 0 8px;font-size:22px;text-transform:uppercase}.game-card p{margin:0;color:#aaa;font-size:14px;line-height:1.55}.games-demo-callout{margin-top:24px;padding:24px 28px;display:flex;align-items:center;justify-content:space-between;gap:24px;border:1px solid rgba(255,213,31,.28);border-radius:16px;background:rgba(255,213,31,.045)}.games-demo-callout div{display:flex;flex-direction:column;gap:6px}.games-demo-callout strong{font-size:18px;text-transform:uppercase}.games-demo-callout span{color:#aaa;font-size:14px;line-height:1.5}
.story-section{max-width:1380px;margin:0 auto;padding:145px 36px;display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(55px,7vw,110px);align-items:center}.story-visual{position:relative;min-height:640px;display:grid;place-items:center;overflow:hidden;border:1px solid var(--border);border-radius:28px;background:radial-gradient(circle at 50% 42%,rgba(255,213,31,.2),transparent 34%),linear-gradient(145deg,#191919,#070707)}.story-visual:before{content:'WHY';position:absolute;left:-7%;bottom:-10%;color:rgba(255,255,255,.028);font:900 230px/1 Impact,sans-serif;letter-spacing:-.06em}.story-visual img{position:relative;z-index:2;width:74%;max-height:560px;object-fit:contain;filter:drop-shadow(0 32px 38px rgba(0,0,0,.55))}.story-quote{position:absolute;z-index:3;right:24px;bottom:24px;max-width:270px;padding:14px 16px;border-left:3px solid var(--yellow);color:#fff;background:rgba(0,0,0,.72);backdrop-filter:blur(8px);font-size:18px;font-weight:900;line-height:1.35}.story-text h2{font-size:clamp(46px,4.9vw,76px)}.story-text p{color:#bcbcbc;font-size:18px;line-height:1.68}.story-text .story-lead{color:#fff;font-size:22px;font-weight:800}.founder-signature{margin-top:30px;padding:20px 0 0;display:flex;flex-direction:column;border-top:1px solid var(--border)}.founder-signature span,.founder-signature small{color:#8d8d8d;font-size:12px;text-transform:uppercase;letter-spacing:.08em}.founder-signature strong{margin:5px 0 4px;color:var(--yellow);font-size:20px}
.proof-section{padding:145px max(28px,calc((100vw - 1380px)/2));background:#101010}.proof-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}.proof-card{overflow:hidden;border:1px solid var(--border);border-radius:22px;background:#090909}.proof-art{position:relative;min-height:360px;padding:28px;display:flex;flex-direction:column;justify-content:space-between;isolation:isolate;overflow:hidden}.proof-art img{position:absolute;z-index:-2;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 42%}.proof-art:before{content:'';position:absolute;z-index:-1;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.2) 0%,rgba(0,0,0,.08) 42%,rgba(0,0,0,.78) 100%)}.proof-art:after{content:'';position:absolute;z-index:-1;inset:0;box-shadow:inset 0 0 90px rgba(0,0,0,.28)}.proof-art span{width:fit-content;padding:8px 10px;border-radius:7px;background:rgba(0,0,0,.64);backdrop-filter:blur(7px);color:#fff;font-size:16px;font-weight:900;text-transform:uppercase;letter-spacing:.12em}.proof-art b{color:var(--yellow);font:900 clamp(42px,5vw,74px)/.9 Impact,sans-serif;letter-spacing:.02em;text-shadow:0 3px 20px rgba(0,0,0,.65)}.proof-isar .proof-art b{color:var(--yellow)}.proof-copy{padding:30px}.proof-meta{color:var(--yellow);font-size:11px;font-weight:900;letter-spacing:.11em;text-transform:uppercase}.proof-isar .proof-meta{color:var(--yellow)}.proof-copy h3{margin:8px 0 12px;font-size:24px;text-transform:uppercase}.proof-copy p{margin:0;color:#aaa;line-height:1.62}.proof-copy ul{margin:22px 0 0;padding:0;display:flex;flex-wrap:wrap;gap:8px;list-style:none}.proof-copy li{padding:8px 10px;border:1px solid rgba(255,255,255,.13);border-radius:999px;color:#d6d6d6;font-size:11px;font-weight:800}
.community-section{max-width:1380px;margin:0 auto;padding:145px 36px;display:grid;grid-template-columns:1.1fr .9fr;gap:clamp(55px,8vw,120px);align-items:center}.community-copy h2{font-size:clamp(46px,5vw,78px)}.community-copy>p{max-width:720px;color:#bdbdbd;font-size:18px;line-height:1.7}.community-flow{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin:30px 0}.community-flow>div{min-width:0;padding:16px;display:flex;gap:12px;border:1px solid var(--border);border-radius:12px;background:#0c0c0c}.community-flow b{width:30px;height:30px;flex:0 0 30px;display:grid;place-items:center;border-radius:50%;color:#0a0a0a;background:var(--yellow);font-size:12px}.community-flow span{min-width:0;display:flex;flex-direction:column;gap:4px}.community-flow strong{font-size:13px;text-transform:uppercase}.community-flow small{color:#888;font-size:11px;line-height:1.35}.community-actions{display:flex;gap:12px;flex-wrap:wrap}.ranking-card{padding:30px;border:1px solid rgba(255,213,31,.36);border-radius:22px;background:linear-gradient(145deg,#181818,#080808);box-shadow:0 28px 65px rgba(0,0,0,.38)}.ranking-card h3{margin:14px 0 18px;font-size:28px;text-transform:uppercase}.ranking-card ol{margin:0;padding:0;list-style:none}.ranking-card li{padding:14px 0;display:flex;gap:15px;align-items:center;border-top:1px solid var(--border)}.ranking-card li>b{color:#676767;font-size:12px}.ranking-card li>span{flex:1;display:flex;align-items:center;justify-content:space-between;gap:12px;font-weight:800}.ranking-card li small{color:var(--yellow);font-size:12px}.ranking-card>p{margin:18px 0 0;color:#777;font-size:11px;line-height:1.45}
.trust-section{padding:145px max(28px,calc((100vw - 1380px)/2));background:linear-gradient(180deg,#0d0d0d,#060606)}.trust-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.trust-grid article{min-height:250px;padding:28px;display:flex;flex-direction:column;align-items:flex-start;border:1px solid var(--border);border-radius:18px;background:#0c0c0c}.trust-kicker{color:var(--yellow);font-size:11px;font-weight:900;letter-spacing:.1em;text-transform:uppercase}.trust-grid h3{margin:24px 0 10px;font-size:25px;text-transform:uppercase}.trust-grid p{margin:0 0 18px;color:#999;line-height:1.58}.trust-grid .example-label{margin-top:auto}.faq a{color:var(--yellow);text-decoration:underline;text-underline-offset:3px}.faq details p strong{color:#ddd}.funding-final{border-top:1px solid rgba(255,255,255,.08)}.funding-final .funding-overview>.example-label{margin-bottom:22px}.support-social{margin-top:22px;display:flex;flex-direction:column;gap:5px}.support-social span{color:#777;font-size:11px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.support-social a{width:fit-content;color:var(--yellow);font-weight:900}.kickstarter-note{margin:13px 0 0;color:#666;font-size:11px;line-height:1.45}footer a:hover{color:var(--yellow)}
@media(max-width:1050px){.steps-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.games-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.story-section,.community-section{grid-template-columns:1fr}.story-visual{min-height:520px}.community-section{gap:45px}.trust-grid{grid-template-columns:1fr}.trust-grid article{min-height:0}}
@media(max-width:720px){.section-intro.centered{margin-bottom:42px;text-align:left}.how-section,.games-section,.story-section,.proof-section,.community-section,.trust-section{padding-top:90px;padding-bottom:90px}.how-section,.story-section,.community-section{padding-left:24px;padding-right:24px}.steps-grid,.games-grid,.proof-grid{grid-template-columns:1fr}.step-card{min-height:0;padding:18px}.step-heading{margin-bottom:10px}.step-card h3,.step-number{font-size:17px}.game-card img{height:auto}.games-demo-callout{align-items:flex-start;flex-direction:column}.story-visual{min-height:430px}.story-visual img{width:78%}.story-quote{left:18px;right:18px;bottom:18px;max-width:none;font-size:15px}.story-text .story-lead{font-size:19px}.proof-art{min-height:210px}.proof-copy{padding:24px}.community-flow{grid-template-columns:1fr}.ranking-card{padding:22px}.ranking-card li>span{align-items:flex-start;flex-direction:column;gap:3px}.trust-grid{gap:12px}.funding-final{padding-top:90px;padding-bottom:90px}footer nav{flex-wrap:wrap}}


/* Transparenzhinweis zu KI-unterstuetzten Website-Inhalten */
.ai-disclosure {
  padding: 68px clamp(22px,5vw,80px);
  border-top: 1px solid var(--border);
  background: #090909;
}
.ai-disclosure-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.ai-disclosure h2 {
  margin: 14px 0 16px;
  font-size: clamp(30px,4vw,48px);
}
.ai-disclosure p {
  margin: 0 auto;
  max-width: 850px;
  color: #a5a5a5;
  line-height: 1.7;
}
.ai-disclosure p strong { color: #fff; }
@media (max-width: 720px) {
  .ai-disclosure { padding: 58px 24px; }
  .ai-disclosure-inner { text-align: left; }
}

/* Mobile layout fixes: Story + Live-Test cards */
@media (max-width: 720px) {
  .story-section {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
    overflow: hidden;
  }

  .story-visual,
  .story-text {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .story-visual {
    min-height: 390px;
  }

  .story-visual img {
    width: auto;
    height: auto;
    max-width: 68%;
    max-height: 320px;
  }

  .story-quote {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  .story-text h2 {
    max-width: 100%;
    font-size: clamp(31px, 9.4vw, 40px);
    line-height: 1.02;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .story-text p,
  .story-text .story-lead {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .proof-card,
  .proof-art,
  .proof-copy {
    min-width: 0;
    max-width: 100%;
  }

  .proof-art {
    min-height: 285px;
    padding: 16px;
    display: block;
  }

  .proof-art span {
    position: absolute;
    left: 16px;
    right: auto;
    top: auto;
    bottom: 62px;
    padding: 6px 8px;
    max-width: calc(100% - 32px);
    font-size: 11px;
    line-height: 1.1;
    letter-spacing: .08em;
  }

  .proof-art b {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    font-size: clamp(30px, 10vw, 40px);
    line-height: .9;
    white-space: nowrap;
  }

  .proof-demo-night .proof-art img {
    object-position: center 38%;
  }
}

@media (max-width: 390px) {
  .story-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .story-visual {
    min-height: 365px;
    border-radius: 20px;
  }

  .story-visual img {
    max-width: 64%;
    max-height: 292px;
  }

  .story-text h2 {
    font-size: clamp(29px, 9.2vw, 36px);
  }

  .proof-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .proof-art {
    min-height: 265px;
  }
}


/* ==========================================================
   Targeted visual update: Beerbattls design system / Games / Live tests
   ========================================================== */

/* Beerbattls uses one chromatic accent across the page: beer-gold. */
.proof-isar .proof-art b,
.proof-isar .proof-meta { color: var(--yellow); }

/* Game Library: horizontal store-style browsing instead of a static grid. */
.games-section {
  padding-top: 140px;
  padding-bottom: 132px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(255,213,31,.09), transparent 25%),
    linear-gradient(180deg, #090909 0%, #050505 100%);
}
.games-store-wrap { max-width: 1540px; margin: 0 auto; }
.games-intro { max-width: 920px; margin-bottom: 52px; }
.games-intro h2 { max-width: 880px; }
.games-intro p { max-width: 720px; color: #b8b8b8; font-size: 18px; line-height: 1.65; }
.game-store-bar {
  min-height: 66px;
  margin-bottom: 18px;
  padding: 12px 16px 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  background: rgba(15,15,15,.9);
  box-shadow: 0 20px 45px rgba(0,0,0,.22);
}
.game-store-title { display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.game-store-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 18px rgba(255,213,31,.58); }
.game-store-categories { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.game-store-categories span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  color: #9b9b9b;
  background: #0a0a0a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.game-store-categories span:first-child { color: #111; border-color: var(--yellow); background: var(--yellow); }
.game-store-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 365px);
  gap: 18px;
  padding: 3px 2px 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,213,31,.72) rgba(255,255,255,.06);
}
.game-store-rail::-webkit-scrollbar { height: 7px; }
.game-store-rail::-webkit-scrollbar-track { background: rgba(255,255,255,.055); border-radius: 999px; }
.game-store-rail::-webkit-scrollbar-thumb { background: rgba(255,213,31,.72); border-radius: 999px; }
.game-store-card {
  min-width: 0;
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: linear-gradient(180deg,#121212,#090909);
  box-shadow: 0 18px 38px rgba(0,0,0,.22);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.game-store-card:hover { transform: translateY(-5px); border-color: rgba(255,213,31,.46); box-shadow: 0 24px 55px rgba(0,0,0,.35); }
.game-store-preview {
  position: relative;
  height: 385px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(circle at 50% 48%, rgba(255,213,31,.14), transparent 36%),
    linear-gradient(145deg,#171717,#070707);
}
.game-store-preview::after {
  content: '';
  position: absolute;
  inset: auto 14% -11% 14%;
  height: 26%;
  border-radius: 50%;
  background: rgba(255,213,31,.08);
  filter: blur(24px);
}
.game-store-preview img {
  position: relative;
  z-index: 2;
  width: auto;
  height: 91%;
  max-width: 76%;
  object-fit: contain;
  filter: drop-shadow(0 20px 26px rgba(0,0,0,.56)) saturate(.94) contrast(1.04);
}
.game-index {
  position: absolute;
  z-index: 3;
  top: 15px;
  right: 16px;
  color: rgba(255,255,255,.34);
  font: 900 22px/1 Impact, sans-serif;
  letter-spacing: .05em;
}
.game-store-copy { padding: 22px 22px 21px; }
.game-category { color: var(--yellow); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.game-store-copy h3 { margin: 7px 0 9px; color: #fff; font-size: 22px; line-height: 1.08; text-transform: uppercase; }
.game-store-copy p { min-height: 66px; margin: 0; color: #a7a7a7; font-size: 13px; line-height: 1.55; }
.game-tags { margin-top: 18px; display: flex; gap: 7px; flex-wrap: wrap; }
.game-tags span { padding: 6px 8px; border: 1px solid rgba(255,255,255,.11); border-radius: 7px; color: #c9c9c9; background: #0b0b0b; font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.game-store-hint { margin-top: 12px; display: flex; align-items: center; justify-content: flex-end; gap: 8px; color: #6f6f6f; font-size: 10px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.game-store-hint span { color: var(--yellow); font-size: 16px; }

/* Live-test section: one dominant Isar story plus a compact supporting gallery. */
.proof-section {
  padding-top: 145px;
  padding-bottom: 150px;
  background:
    radial-gradient(circle at 18% 8%, rgba(255,213,31,.06), transparent 22%),
    #0d0d0d;
}
.proof-intro { max-width: 930px; margin-left: auto; margin-right: auto; }
.proof-intro p { max-width: 760px; margin-left: auto; margin-right: auto; }
.proof-feature {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, .55fr);
  min-height: 720px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 28px;
  background: #080808;
  box-shadow: 0 34px 80px rgba(0,0,0,.32);
}
.proof-feature-media {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #0b0b0b;
}
.proof-feature-media::before {
  content: '';
  position: absolute;
  z-index: -2;
  inset: -34px;
  background-image: linear-gradient(rgba(0,0,0,.16),rgba(0,0,0,.16)), url('../images/muenchen-isar.jpg');
  background-size: cover;
  background-position: center 42%;
  filter: blur(26px) saturate(.72);
  transform: scale(1.08);
  opacity: .72;
}
.proof-feature-media::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.05) 55%,rgba(0,0,0,.65));
  box-shadow: inset 0 0 120px rgba(0,0,0,.34);
}
.proof-feature-media > img { width: 100%; height: 100%; max-height: 820px; object-fit: contain; object-position: center; }
.proof-feature-overlay { position: absolute; left: 24px; right: 24px; bottom: 22px; display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; }
.proof-feature-overlay span { padding: 8px 10px; border: 1px solid rgba(255,213,31,.55); border-radius: 7px; color: #111; background: var(--yellow); font-size: 10px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.proof-feature-overlay strong { color: #fff; font-size: 15px; text-transform: uppercase; text-shadow: 0 2px 14px rgba(0,0,0,.8); }
.proof-feature-copy { padding: clamp(36px,4vw,62px); display: flex; flex-direction: column; justify-content: center; }
.proof-feature-copy h3 { margin: 10px 0 18px; color: #fff; font: 900 clamp(34px,3.2vw,54px)/.98 Impact, sans-serif; letter-spacing: .015em; text-transform: uppercase; }
.proof-feature-copy p { margin: 0; color: #b7b7b7; font-size: 17px; line-height: 1.68; }
.proof-meta { color: var(--yellow); }
.proof-points { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.proof-points span { padding: 8px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: #d7d7d7; font-size: 10px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.proof-gallery-head { max-width: 1480px; margin: 54px auto 18px; display: grid; grid-template-columns: auto minmax(0, 620px); align-items: end; justify-content: space-between; gap: 28px; }
.proof-gallery-head > span { color: #fff; font: 900 clamp(30px,3vw,44px)/1 Impact, sans-serif; text-transform: uppercase; }
.proof-gallery-head p { margin: 0; color: #929292; font-size: 14px; line-height: 1.55; text-align: right; }
.proof-gallery { max-width: 1480px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.proof-live-card { min-width: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: #080808; }
.proof-live-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #111; }
.proof-live-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 50%,rgba(0,0,0,.7)); }
.proof-live-media img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .45s ease; }
.proof-live-card:hover .proof-live-media img { transform: scale(1.025); }
.proof-live-media > span { position: absolute; z-index: 2; left: 15px; bottom: 14px; padding: 6px 8px; border-radius: 6px; color: #111; background: var(--yellow); font-size: 9px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.proof-live-copy { padding: 22px 22px 24px; }
.proof-live-copy h3 { margin: 7px 0 9px; color: #fff; font-size: 21px; line-height: 1.1; text-transform: uppercase; }
.proof-live-copy p { margin: 0; color: #9f9f9f; font-size: 13px; line-height: 1.58; }
.proof-live-card:nth-child(5) { grid-column: span 2; display: grid; grid-template-columns: minmax(230px,.72fr) 1fr; }
.proof-live-card:nth-child(5) .proof-live-media { aspect-ratio: auto; min-height: 330px; }
.proof-live-card:nth-child(5) .proof-live-media img { object-position: center 38%; }
.proof-live-card:nth-child(5) .proof-live-copy { display: flex; flex-direction: column; justify-content: center; padding: 30px; }

@media (max-width: 1050px) {
  .game-store-categories { display: none; }
  .proof-feature { grid-template-columns: 1fr; min-height: 0; }
  .proof-feature-media { min-height: 660px; }
  .proof-feature-copy { padding: 42px; }
  .proof-gallery { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .proof-live-card:nth-child(5) { grid-column: span 2; }
}

@media (max-width: 720px) {
  .games-section { padding-left: 24px; padding-right: 0; padding-top: 92px; padding-bottom: 92px; }
  .games-store-wrap { max-width: none; }
  .games-intro { padding-right: 24px; margin-bottom: 34px; }
  .games-intro p { font-size: 16px; }
  .game-store-bar { margin-right: 24px; min-height: 56px; }
  .game-store-rail { grid-auto-columns: minmax(270px, 82vw); padding-right: 24px; }
  .game-store-preview { height: 350px; }
  .game-store-copy p { min-height: 0; }
  .game-store-hint { padding-right: 24px; }

  .proof-section { padding-left: 18px; padding-right: 18px; padding-top: 92px; padding-bottom: 96px; }
  .proof-intro { text-align: left; }
  .proof-intro p { margin-left: 0; margin-right: 0; }
  .proof-feature { border-radius: 21px; }
  .proof-feature-media { min-height: 540px; }
  .proof-feature-overlay { left: 14px; right: 14px; bottom: 14px; align-items: flex-start; flex-direction: column; gap: 8px; }
  .proof-feature-copy { padding: 28px 22px 30px; }
  .proof-feature-copy h3 { font-size: clamp(31px,10vw,42px); }
  .proof-feature-copy p { font-size: 15px; }
  .proof-gallery-head { margin-top: 42px; grid-template-columns: 1fr; gap: 10px; }
  .proof-gallery-head p { max-width: 560px; text-align: left; }
  .proof-gallery { grid-template-columns: 1fr; gap: 14px; }
  .proof-live-card:nth-child(5) { grid-column: auto; display: block; }
  .proof-live-card:nth-child(5) .proof-live-media { aspect-ratio: 4 / 3; min-height: 0; }
  .proof-live-card:nth-child(5) .proof-live-copy { display: block; padding: 22px 22px 24px; }
}

@media (max-width: 390px) {
  .games-section { padding-left: 18px; }
  .games-intro, .game-store-hint { padding-right: 18px; }
  .game-store-bar { margin-right: 18px; }
  .game-store-rail { grid-auto-columns: minmax(250px, 84vw); padding-right: 18px; }
  .game-store-preview { height: 325px; }
  .proof-feature-media { min-height: 500px; }
}

/* Game Library phone-frame refinement */
.game-store-bar {
  justify-content: flex-start;
}
.game-store-categories {
  display: none !important;
}
.game-store-preview {
  height: 430px;
  padding: 18px 0;
}
.game-phone {
  position: relative;
  z-index: 2;
  height: 100%;
  max-height: 394px;
  aspect-ratio: 954 / 2047;
  flex: 0 0 auto;
  filter: drop-shadow(0 22px 30px rgba(0,0,0,.58));
}
.game-phone-media {
  position: absolute !important;
  z-index: 1 !important;
  top: 2.45% !important;
  left: 3.25% !important;
  width: 93.5% !important;
  height: 95.1% !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 6.8% / 3.2%;
  background: #1f1f1f;
  filter: none !important;
}
.game-phone-frame {
  position: absolute !important;
  z-index: 2 !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: contain !important;
  pointer-events: none;
  filter: none !important;
}
.game-index {
  display: none !important;
}

@media (max-width: 720px) {
  .game-store-preview {
    height: 405px;
    padding: 16px 0;
  }
  .game-phone {
    max-height: 373px;
  }
}


/* Game Library frameless card refinement */
.game-store-card {
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.game-store-card:hover {
  transform: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.game-store-preview {
  height: 448px !important;
  padding: 0 !important;
  border-bottom: 0 !important;
  background: transparent !important;
  overflow: visible !important;
}
.game-store-preview::after {
  display: none !important;
}
.game-phone {
  max-height: 448px !important;
  height: 100% !important;
}
.game-store-copy {
  padding: 16px 4px 10px 2px !important;
}
.game-store-copy p {
  min-height: 0 !important;
  font-size: 12px !important;
  line-height: 1.48 !important;
  color: #989898 !important;
}
.game-tags {
  margin-top: 14px !important;
}
@media (max-width: 720px) {
  .game-store-preview {
    height: 418px !important;
  }
  .game-phone {
    max-height: 418px !important;
  }
  .game-store-copy {
    padding-top: 14px !important;
  }
  .game-store-copy p {
    font-size: 11.5px !important;
  }
}
@media (max-width: 390px) {
  .game-store-preview {
    height: 392px !important;
  }
  .game-phone {
    max-height: 392px !important;
  }
}


/* Game Library alignment fix: center phone above centered text block */
.game-store-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}
.game-store-preview {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
}
.game-store-copy {
  width: min(100%, 286px) !important;
  max-width: 286px !important;
  margin: 0 auto !important;
}
@media (max-width: 720px) {
  .game-store-copy {
    width: min(100%, 272px) !important;
    max-width: 272px !important;
  }
}
@media (max-width: 390px) {
  .game-store-copy {
    width: min(100%, 258px) !important;
    max-width: 258px !important;
  }
}


/* Game Library MP4 media refinement */
.game-phone video.game-phone-media {
  display: block;
  object-fit: contain !important;
  object-position: center !important;
}

/* Product-benefit icon set */
.feature-strip article {
  min-height: 132px;
  padding: 24px 25px;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}
.feature-icon {
  width: 68px;
  height: 68px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 13px rgba(255,213,31,.13));
}
.feature-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  margin: 0 !important;
}
.feature-copy b {
  color: #fff;
  font-size: 15px;
  line-height: 1.12;
  letter-spacing: .02em;
}
.feature-copy > span {
  margin-top: 7px;
  color: #a9a9a9;
  font-size: 13px;
  line-height: 1.42;
}
@media (max-width: 1050px) {
  .feature-strip article {
    min-height: 120px;
  }
}
@media (max-width: 720px) {
  .feature-strip article {
    min-height: 104px;
    grid-template-columns: 58px minmax(0,1fr);
    gap: 16px;
    padding: 18px 22px;
  }
  .feature-icon {
    width: 58px;
    height: 58px;
  }
  .feature-copy b { font-size: 14px; }
  .feature-copy > span { font-size: 12px; }
}

/* Four-step icon cards */
.how-section .steps-grid { gap: 18px; }
.how-section .step-card {
  min-height: 236px;
  padding: 25px 22px 22px;
  border-color: rgba(255,213,31,.58);
  background:
    radial-gradient(circle at 88% 92%, rgba(255,213,31,.085), transparent 27%),
    linear-gradient(145deg,rgba(20,20,20,.98),rgba(6,6,6,.98));
  box-shadow: inset 0 0 0 1px rgba(255,213,31,.035);
}
.how-section .step-card:after { display:none; }
.how-section .step-icon {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
  margin-bottom: 18px;
  color: var(--yellow);
  filter: drop-shadow(0 0 11px rgba(255,213,31,.18));
}
.how-section .step-icon svg {
  width: 100%;
  height: 100%;
  display:block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.how-section .step-heading { margin-bottom: 12px; gap: 10px; }
.how-section .step-number { color:#fff; font-size:18px; }
.how-section .step-card h3 { font-size:18px; }
.how-section .step-card p { max-width: 285px; font-size:14px; line-height:1.55; }

@media(max-width:1050px){
  .how-section .step-card { min-height: 220px; }
}
@media(max-width:720px){
  .how-section .steps-grid { gap:14px; }
  .how-section .step-card { min-height:0; padding:22px 20px 21px; }
  .how-section .step-icon { width:58px; height:58px; margin-bottom:15px; }
  .how-section .step-card p { max-width:none; }
}


/* Exact four-step icons from the approved visual preview */
.how-section .step-icon {
  width: 116px !important;
  height: 82px !important;
  margin-bottom: 15px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  filter: drop-shadow(0 0 10px rgba(255,213,31,.16)) !important;
}
.how-section .step-icon img {
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:left center;
}
@media(max-width:720px){
  .how-section .step-icon {
    width:104px !important;
    height:74px !important;
    margin-bottom:13px !important;
  }
}


/* Mobile Game Library sizing fix */
@media (max-width: 720px) {
  .games-section {
    overflow: hidden !important;
  }
  .games-store-wrap,
  .game-store-rail,
  .game-store-card,
  .game-store-preview {
    min-width: 0 !important;
  }
  .game-store-rail {
    width: 100% !important;
    max-width: 100vw !important;
    grid-auto-columns: min(76vw, 280px) !important;
    gap: 14px !important;
    padding-right: 24px !important;
    box-sizing: border-box !important;
  }
  .game-store-preview {
    height: 320px !important;
  }
  .game-phone {
    height: 320px !important;
    max-height: 320px !important;
    max-width: 150px !important;
  }
  .game-store-copy {
    width: 100% !important;
    max-width: 250px !important;
    padding: 12px 2px 8px !important;
    box-sizing: border-box !important;
  }
  .game-store-copy h3 {
    font-size: 19px !important;
  }
  .game-store-copy p {
    font-size: 11px !important;
    line-height: 1.45 !important;
  }
  .game-tags {
    margin-top: 12px !important;
  }
}

@media (max-width: 390px) {
  .game-store-rail {
    grid-auto-columns: min(74vw, 250px) !important;
    padding-right: 18px !important;
  }
  .game-store-preview {
    height: 286px !important;
  }
  .game-phone {
    height: 286px !important;
    max-height: 286px !important;
    max-width: 134px !important;
  }
  .game-store-copy {
    max-width: 230px !important;
  }
  .game-store-copy h3 {
    font-size: 18px !important;
  }
}

/* Game Library: item width matches the text block below */
.game-store-rail {
  grid-auto-columns: 286px !important;
}
.game-store-card,
.game-store-preview,
.game-store-copy {
  width: 286px !important;
  max-width: 286px !important;
  box-sizing: border-box !important;
}

@media (max-width: 720px) {
  .game-store-rail {
    grid-auto-columns: 250px !important;
  }
  .game-store-card,
  .game-store-preview,
  .game-store-copy {
    width: 250px !important;
    max-width: 250px !important;
  }
}

@media (max-width: 390px) {
  .game-store-rail {
    grid-auto-columns: 230px !important;
  }
  .game-store-card,
  .game-store-preview,
  .game-store-copy {
    width: 230px !important;
    max-width: 230px !important;
  }
}


/* Game Library exact shared width: phone and copy use the same dimension */
:root {
  --game-library-item-width: 224px;
}
.game-store-rail {
  grid-auto-columns: var(--game-library-item-width) !important;
}
.game-store-card,
.game-store-preview,
.game-store-copy,
.game-phone {
  width: var(--game-library-item-width) !important;
  max-width: var(--game-library-item-width) !important;
  box-sizing: border-box !important;
}
.game-store-preview {
  height: auto !important;
  min-height: 0 !important;
}
.game-phone {
  height: auto !important;
  max-height: none !important;
  aspect-ratio: 954 / 2047 !important;
}
.game-store-copy {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (max-width: 720px) {
  :root {
    --game-library-item-width: 170px;
  }
  .game-store-copy h3 {
    font-size: 17px !important;
  }
  .game-store-copy p {
    font-size: 10.5px !important;
    line-height: 1.45 !important;
  }
}
@media (max-width: 390px) {
  :root {
    --game-library-item-width: 156px;
  }
  .game-store-copy h3 {
    font-size: 16px !important;
  }
}

/* Community: real rating videos instead of placeholder ranking */
.community-rating-showcase {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 30px);
  padding: 18px 0;
}
.community-rating-showcase::before {
  content: '';
  position: absolute;
  inset: 18% 8%;
  border-radius: 50%;
  background: rgba(255,213,31,.075);
  filter: blur(52px);
  pointer-events: none;
}
.community-rating-phone {
  position: relative;
  z-index: 1;
  flex: 0 1 260px;
  width: min(46%, 260px);
  aspect-ratio: 954 / 2047;
  filter: drop-shadow(0 24px 34px rgba(0,0,0,.55));
}
.community-rating-video {
  position: absolute;
  z-index: 1;
  top: 2.45%;
  left: 3.25%;
  width: 93.5%;
  height: 95.1%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 6.8% / 3.2%;
  background: #080808;
}
.community-rating-frame {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  pointer-events: none;
}

@media (max-width: 1050px) {
  .community-rating-showcase {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    gap: clamp(18px, 5vw, 38px);
  }
  .community-rating-phone {
    flex-basis: 245px;
    width: min(42vw, 245px);
  }
}

@media (max-width: 720px) {
  .community-rating-showcase {
    padding: 8px 0 0;
    gap: 14px;
  }
  .community-rating-phone {
    flex: 0 1 170px;
    width: min(44vw, 170px);
  }
}

@media (max-width: 390px) {
  .community-rating-showcase {
    gap: 10px;
  }
  .community-rating-phone {
    flex-basis: 150px;
    width: min(43vw, 150px);
  }
}


/* Game Library: static poster first, video loads only after Play. */
.game-preview-trigger {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  overflow: visible;
  outline: none;
}
.game-phone-poster,
.game-phone video.game-phone-media {
  position: absolute !important;
  z-index: 1 !important;
  top: 2.45% !important;
  left: 3.25% !important;
  width: 93.5% !important;
  height: 95.1% !important;
  max-width: none !important;
  border-radius: 6.8% / 3.2%;
  background: #1f1f1f;
  object-fit: contain !important;
  object-position: center !important;
  filter: none !important;
}
.game-phone-poster {
  opacity: 1;
  transition: opacity .18s ease;
}
.game-phone video.game-phone-media {
  opacity: 0;
  transition: opacity .18s ease;
}
.game-preview-trigger.is-playing .game-phone-poster {
  opacity: 0;
}
.game-preview-trigger.is-playing video.game-phone-media {
  opacity: 1;
}
.game-preview-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 7%;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 74px;
  justify-content: center;
  padding: 8px 12px;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: rgba(255,255,255,.96);
  background: rgba(0,0,0,.62);
  box-shadow: 0 8px 18px rgba(0,0,0,.28);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .05em;
  text-transform: uppercase;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, background-color .18s ease, border-color .18s ease;
}
.game-preview-icon {
  color: var(--yellow);
  font-size: 10px;
  line-height: 1;
}
.game-preview-trigger.is-playing .game-preview-cue {
  border-color: rgba(255,213,31,.34);
  background: rgba(16,16,16,.8);
}
.game-preview-trigger.is-loading .game-preview-cue {
  opacity: .82;
}
.game-preview-trigger:focus-visible::after {
  content: '';
  position: absolute;
  z-index: 5;
  inset: 1.1%;
  border: 2px solid var(--yellow);
  border-radius: 8% / 3.7%;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .game-phone-poster,
  .game-phone video.game-phone-media,
  .game-preview-cue {
    transition: none !important;
  }
}

/* Game Library: four independent category rows loaded from category JSON files. */
.game-library-groups {
  display: grid;
  gap: 62px;
  margin-top: 30px;
}
.game-library-group {
  min-width: 0;
}
.game-library-group-head {
  margin: 0 0 20px;
  padding: 0 2px 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.game-library-group-head > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
}
.game-library-group-head h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1;
  letter-spacing: -.015em;
  text-transform: uppercase;
}
.game-library-count {
  flex: 0 0 auto;
  color: #737373;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.game-library-group .game-store-rail {
  padding-top: 4px;
  padding-bottom: 14px;
}
.game-library-error {
  width: min(520px, 90vw);
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  color: #9a9a9a;
  background: rgba(255,255,255,.025);
  font-size: 13px;
}
@media (max-width: 720px) {
  .game-library-groups {
    gap: 46px;
    margin-top: 24px;
  }
  .game-library-group-head {
    margin-bottom: 16px;
    padding-bottom: 11px;
  }
  .game-library-group-head h3 {
    font-size: 20px;
  }
  .game-library-count {
    font-size: 9px;
  }
}

/* Game Library: triple horizontal spacing between phone cards. */
.game-library-group .game-store-rail {
  gap: 54px !important;
}

@media (max-width: 720px) {
  .game-library-group .game-store-rail {
    gap: 42px !important;
  }
}


/* Minigames: wheel-to-horizontal browsing.
   All Library cards use the standard assets/media/phone-frame.png and the shared phone sizing above. */
.game-library-group.is-minigames .game-store-rail {
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  /* Mandatory snap caused the scrollbar to jump between cards while dragging. */
  scroll-snap-type: none !important;
  scroll-behavior: auto !important;
}
.game-library-group.is-minigames .game-store-card {
  scroll-snap-align: none !important;
}

.game-library-group.is-minigames .game-phone-poster,
.game-library-group.is-minigames .game-phone video.game-phone-media {
  background: #262626 !important;
}

/* Mobile UX fix: keep the story visual in normal flow and make Minigames swiping obvious. */
@media (max-width: 720px) {
  .story-section {
    overflow: visible;
  }

  .story-visual {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 28px 18px 18px;
  }

  .story-visual img {
    flex: 0 0 auto;
    width: auto;
    height: auto;
    max-width: 68%;
    max-height: 300px;
    margin: 0 auto;
  }

  .story-quote {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 100%;
    margin: 18px 0 0;
    padding: 11px 12px;
    font-size: 13px;
    line-height: 1.3;
  }

  .game-library-group.is-minigames {
    position: relative;
  }

  .game-library-group.is-minigames.has-more-right::after {
    content: '';
    position: absolute;
    z-index: 4;
    top: 58px;
    right: 0;
    bottom: 20px;
    width: 44px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(5,5,5,0), rgba(5,5,5,.88));
  }

  .minigame-swipe-hint {
    position: absolute;
    z-index: 6;
    top: 66px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border: 1px solid rgba(255,213,31,.62);
    border-radius: 999px;
    color: #fff;
    background: rgba(7,7,7,.9);
    box-shadow: 0 8px 24px rgba(0,0,0,.38);
    backdrop-filter: blur(8px);
    pointer-events: none;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .minigame-swipe-hint span {
    color: var(--yellow);
    font-size: 18px;
    line-height: .7;
  }

  .game-library-group.is-minigames.has-been-scrolled .minigame-swipe-hint,
  .game-library-group.is-minigames:not(.has-more-right) .minigame-swipe-hint {
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
  }
}

@media (max-width: 390px) {
  .story-visual {
    min-height: 0;
    padding: 24px 14px 14px;
  }

  .story-visual img {
    max-width: 66%;
    max-height: 270px;
  }

  .story-quote {
    margin-top: 14px;
  }

  .minigame-swipe-hint {
    right: 10px;
  }
}

/* Mobile: all Game Library previews autoplay, so no Play/Pause cue is shown. */
@media (max-width: 720px) {
  .game-library-group .game-preview-cue {
    display: none !important;
  }

  .game-preview-trigger:disabled {
    cursor: default;
    opacity: 1;
  }
}

/* Game Library: phones and their video previews are 20% larger. */
:root {
  --game-library-phone-width: 268.8px; /* 224px x 1.2 */
}

.games-section .game-library-group .game-store-rail {
  grid-auto-columns: var(--game-library-phone-width) !important;
}
.games-section .game-library-group .game-store-card,
.games-section .game-library-group .game-store-preview,
.games-section .game-library-group .game-phone {
  width: var(--game-library-phone-width) !important;
  max-width: var(--game-library-phone-width) !important;
}
.games-section .game-library-group .game-store-copy {
  width: var(--game-library-item-width) !important;
  max-width: var(--game-library-item-width) !important;
}

@media (max-width: 720px) {
  :root {
    --game-library-phone-width: 204px; /* 170px x 1.2 */
  }
}

@media (max-width: 390px) {
  :root {
    --game-library-phone-width: 187.2px; /* 156px x 1.2 */
  }
}
