:root {
  --ink: #000;
  --panel: rgba(16, 16, 16, .92);
  --panel-solid: #101010;
  --line: rgba(255, 255, 255, .13);
  --line-strong: rgba(255, 255, 255, .28);
  --paper: #fff;
  --muted: #aaa;
  --lime: #fff;
  --lime-soft: rgba(255, 255, 255, .1);
  --orange: #fff;
  --red: #ff5e67;
  --green: #73ef9a;
  --radius: 22px;
  --shadow: 0 30px 90px rgba(0, 0, 0, .48);
}

* { box-sizing: border-box; }
html { background: var(--ink); color-scheme: dark; scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background: #000;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .13;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(ellipse at 12% 8%, transparent 0 23px, rgba(255,255,255,.45) 24px 25px, transparent 26px 49px),
    repeating-radial-gradient(ellipse at 91% 72%, transparent 0 31px, rgba(255,255,255,.3) 32px 33px, transparent 34px 64px),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: auto, auto, 76px 76px, 76px 76px;
  mask-image: radial-gradient(circle at center, #000, transparent 86%);
}

a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
img { max-width: 100%; }
[hidden] { display: none !important; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 100; padding: 12px 16px; color: #000; background: var(--lime); border-radius: 10px; }
.skip-link:focus { top: 12px; }
.particle-field { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .7; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 68px);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, .84);
  backdrop-filter: blur(22px) saturate(1.3);
}
.brand { display: inline-flex; width: max-content; align-items: center; gap: 11px; color: var(--paper); text-decoration: none; }
.brand img { width: clamp(132px, 13vw, 190px); height: 52px; object-fit: contain; object-position: left center; }
.brand span { display: grid; line-height: 1; letter-spacing: -.02em; }
.brand b { font-size: 18px; }
.brand small { margin-top: 5px; color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 6px; padding: 5px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.025); }
.main-nav a { padding: 9px 14px; border-radius: 999px; color: var(--muted); font-size: 13px; font-weight: 750; text-decoration: none; transition: .2s ease; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--ink); background: var(--paper); }
.account-slot { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.account-chip { display: flex; align-items: center; gap: 10px; min-width: 0; }
.avatar { width: 34px; height: 34px; display: grid; place-items: center; overflow: hidden; flex: 0 0 auto; border: 1px solid var(--line-strong); border-radius: 50%; color: #000; background: var(--lime); font-size: 12px; font-weight: 900; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.account-chip span { display: grid; font-size: 12px; line-height: 1.2; }
.account-chip small { color: var(--muted); }

main { min-height: 72vh; }
.shell { width: min(1380px, calc(100% - 36px)); margin: 0 auto; }
.section { padding: clamp(64px, 9vw, 128px) 0; }
.section.compact { padding-block: 42px; }
.eyebrow { margin: 0 0 13px; color: var(--lime); font-size: 11px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.display { margin: 0; max-width: 980px; font-size: clamp(48px, 8.5vw, 124px); line-height: .88; letter-spacing: -.07em; text-wrap: balance; }
.display em { color: var(--paper); font-family: inherit; font-weight: 800; }
.lede { max-width: 700px; margin: 26px 0 0; color: #c8c7bf; font-size: clamp(17px, 2vw, 23px); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.section-head h2 { margin: 0; font-size: clamp(34px, 5vw, 66px); line-height: 1; letter-spacing: -.05em; }
.muted { color: var(--muted); }
.meta { color: var(--muted); font-size: 12px; }
.tag { display: inline-flex; align-items: center; gap: 7px; padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; color: #d3d2ca; background: rgba(255,255,255,.04); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.tag.lime { border-color: rgba(255,255,255,.36); color: var(--paper); background: var(--lime-soft); }

.hero { position: relative; isolation: isolate; min-height: 760px; display: grid; align-items: end; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,9,8,.98) 0%, rgba(8,9,8,.78) 42%, rgba(8,9,8,.25) 75%), linear-gradient(0deg, var(--ink) 0%, transparent 42%); }
.hero-media img, .hero-media video, .hero-media iframe { width: 100%; height: 100%; border: 0; object-fit: cover; filter: saturate(.8) contrast(1.1); }
.hero-media iframe { position: absolute; inset: 50% auto auto 50%; width: 120vw; height: 67.5vw; min-width: 177.78vh; min-height: 100vh; transform: translate(-50%, -50%); pointer-events: none; }

.coming-soon { position: relative; min-height: calc(100vh - 78px); display: grid; place-items: center; overflow: hidden; padding: 80px 24px; text-align: center; isolation: isolate; }
.coming-soon__content { position: relative; z-index: 2; width: min(720px, 100%); }
.coming-soon__content > img { width: min(440px, 82vw); max-height: 220px; margin-bottom: 34px; object-fit: contain; }
.coming-soon h1 { margin: 0; font-size: clamp(68px, 13vw, 164px); line-height: .82; letter-spacing: -.075em; }
.coming-soon p:not(.eyebrow) { max-width: 600px; margin: 30px auto 0; color: #bbb; font-size: clamp(16px, 2vw, 21px); }
.coming-soon .hero-actions { justify-content: center; }
.coming-soon__rings { position: absolute; inset: -30%; z-index: 0; opacity: .24; background: repeating-radial-gradient(circle at 50% 50%, transparent 0 55px, rgba(255,255,255,.42) 56px 57px, transparent 58px 112px); animation: rings-drift 26s linear infinite; }
@keyframes rings-drift { to { transform: rotate(12deg) scale(1.05); } }
.hero-content { position: relative; z-index: 1; padding-block: 130px 74px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 32px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 48px; }
.hero-stats div { display: grid; gap: 3px; min-width: 120px; }
.hero-stats strong { font-size: 18px; }
.hero-stats span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }

.game-announcement { position: relative; z-index: 8; border-bottom: 1px solid rgba(255,255,255,.2); background: #f2eee3; color: #0a0a0a; }
.game-announcement__inner { min-height: 54px; display: flex; align-items: center; gap: 18px; padding-block: 10px; }
.game-announcement__label { flex: 0 0 auto; font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.game-announcement p { flex: 1; margin: 0; font-weight: 680; }
.game-announcement a { display: inline-flex; align-items: center; gap: 7px; flex: 0 0 auto; font-size: 12px; font-weight: 850; text-underline-offset: 4px; }
.game-announcement .button-svg { width: 16px; height: 16px; }

.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

.store-featured { position: relative; min-height: min(850px, calc(100vh - 78px)); overflow: hidden; border-bottom: 1px solid var(--line); background: #000; }
.store-featured__viewport { position: absolute; inset: 0; }
.store-featured__slide { position: absolute; inset: 0; display: grid; align-items: end; visibility: hidden; opacity: 0; transform: scale(1.012); transition: opacity .7s ease, transform 1.2s ease, visibility 0s linear .7s; }
.store-featured__slide.is-active { visibility: visible; opacity: 1; transform: scale(1); transition-delay: 0s; }
.store-featured__background { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; background: #000; filter: grayscale(.08) contrast(1.08); }
.store-featured__slide.is-active video.store-featured__background { animation: editorial-drift 18s ease-in-out infinite alternate; }
.store-featured__background--embed { position: absolute; inset: 50% auto auto 50%; width: 120vw; height: 67.5vw; min-width: 177.78vh; min-height: 100vh; transform: translate(-50%, -50%); pointer-events: none; }
.store-featured__shade { position: absolute; inset: 0; background: linear-gradient(90deg, #000 0%, rgba(0,0,0,.87) 38%, rgba(0,0,0,.18) 78%), linear-gradient(0deg, #000 0%, transparent 48%); }
.store-featured__content { position: relative; z-index: 2; padding-block: clamp(118px, 18vh, 180px) 92px; }
.store-featured__layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 520px); align-items: end; gap: clamp(34px, 6vw, 92px); }
.store-featured__copy { min-width: 0; animation: editorial-rise .7s cubic-bezier(.2,.75,.25,1) both; }
.store-featured__logo { width: min(520px, 70vw); max-height: 260px; object-fit: contain; object-position: left center; filter: drop-shadow(0 14px 34px #000); }
.store-featured__content .lede { max-width: 620px; color: #e3e3e3; }
.store-featured__trailer { overflow: hidden; border: 1px solid rgba(255,255,255,.32); border-radius: 18px; background: rgba(0,0,0,.82); box-shadow: 0 28px 70px rgba(0,0,0,.45); animation: editorial-rise .7s .12s cubic-bezier(.2,.75,.25,1) both; }
.store-featured__trailer-head { min-height: 48px; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 11px 14px; border-bottom: 1px solid rgba(255,255,255,.16); }
.store-featured__trailer-head span { font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.store-featured__trailer-head a { display: inline-flex; align-items: center; gap: 6px; color: #bbb; font-size: 11px; font-weight: 760; text-decoration: none; }
.store-featured__trailer-head a:hover { color: #fff; }
.store-featured__trailer-head .button-svg { width: 14px; height: 14px; }
.store-featured__trailer-media { aspect-ratio: 16 / 9; background: #050505; }
.store-featured__trailer-media video, .store-featured__trailer-media iframe { width: 100%; height: 100%; display: block; border: 0; object-fit: cover; }
.featured-arrow { position: absolute; z-index: 5; top: 50%; width: 52px; height: 72px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.48); color: #fff; background: rgba(0,0,0,.52); font-size: 45px; line-height: 1; backdrop-filter: blur(12px); transition: color .2s ease, background .2s ease, transform .2s ease; }
.featured-arrow:hover, .featured-arrow:focus-visible { color: #000; background: #fff; transform: translateY(-2px); }
.featured-arrow--previous { left: clamp(12px, 3vw, 42px); }
.featured-arrow--next { right: clamp(12px, 3vw, 42px); }
.featured-dots { position: absolute; z-index: 5; right: clamp(18px, 5vw, 72px); bottom: 34px; display: flex; gap: 9px; }
.featured-dots button { width: 38px; height: 5px; min-height: 0; padding: 0; border: 1px solid rgba(255,255,255,.72); border-radius: 0; background: transparent; transition: background .2s ease, width .2s ease; }
.featured-dots button.is-active { width: 64px; background: #fff; }
.store-catalogue { position: relative; background: rgba(0,0,0,.72); }
.home-trailers { position: relative; border-bottom: 1px solid var(--line); background: #070707; }
.home-trailer-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.home-trailer-card { overflow: hidden; border: 1px solid rgba(255,255,255,.22); border-radius: 18px; background: #000; box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.home-trailer-card__head { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.14); }
.home-trailer-card__head h3 { margin: 0; font-size: clamp(18px, 2vw, 25px); }
.home-trailer-card__head a { display: inline-flex; align-items: center; gap: 7px; color: #bbb; font-size: 12px; font-weight: 800; text-decoration: none; }
.home-trailer-card__head a:hover { color: #fff; }
.home-trailer-card__head .button-svg { width: 15px; height: 15px; }
.home-trailer-card .store-featured__trailer-media { aspect-ratio: 16 / 9; }
.direct-link-expiry { width: min(220px, 100%); margin: 0; }
.direct-link-expiry > span { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 19px;
  border: 1px solid var(--paper);
  border-radius: 12px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { border-color: #fff; color: #000; background: #fff; }
.button.secondary { color: #fff; border-color: rgba(255,255,255,.52); background: #000; }
.button.primary:hover, .button.primary:focus-visible { color: #fff; background: #000; }
.button.secondary:hover, .button.secondary:focus-visible { color: #000; background: #fff; }
.button.danger { color: #fff; border-color: rgba(255,94,103,.5); background: rgba(255,94,103,.12); }
.button.small { min-height: 36px; padding: 8px 11px; border-radius: 9px; font-size: 12px; }
.button:disabled { opacity: .42; cursor: not-allowed; transform: none; }

.game-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.game-card { position: relative; grid-column: span 12; min-height: 520px; display: flex; align-items: end; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: var(--panel-solid); box-shadow: var(--shadow); }
.game-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.game-card:hover > img { transform: scale(1.025); }
.game-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,9,8,.98), rgba(8,9,8,.12) 80%); }
.game-card-content { position: relative; z-index: 1; width: 100%; padding: clamp(24px, 5vw, 58px); }
.game-card-logo { width: min(320px, 60%); max-height: 110px; object-fit: contain; object-position: left center; filter: drop-shadow(0 8px 22px #000); }
.game-card h2 { margin: 18px 0 5px; font-size: clamp(34px, 5vw, 74px); line-height: 1; letter-spacing: -.05em; }

.purchase-controls { position: sticky; top: 92px; z-index: 12; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: rgba(15,17,15,.88); backdrop-filter: blur(20px); }
.control { display: grid; gap: 5px; flex: 1 1 180px; }
.control label { color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
select, input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 11px; color: var(--paper); background: #0e100e; outline: none; }
select, input { min-height: 44px; padding: 9px 12px; }
textarea { min-height: 120px; padding: 12px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.1); }

.edition-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr)); gap: 20px; }
.edition-card { position: relative; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.018)); box-shadow: 0 24px 60px rgba(0,0,0,.24); }
.edition-card.featured { border-color: rgba(255,255,255,.48); box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 30px 90px rgba(0,0,0,.4); }
.edition-banner { height: 190px; position: relative; overflow: hidden; background: #101210; }
.edition-banner > img { width: 100%; height: 100%; object-fit: cover; }
.edition-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, var(--panel-solid), transparent 80%); }
.edition-badge { position: absolute; right: 14px; top: 14px; z-index: 2; padding: 7px 10px; border-radius: 999px; color: #000; background: var(--lime); font-size: 10px; font-weight: 950; letter-spacing: .1em; }
.edition-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.edition-body h3 { margin: 0; font-size: 28px; letter-spacing: -.035em; }
.price { margin: 18px 0; font-size: 34px; font-weight: 900; letter-spacing: -.04em; }
.feature-list { display: grid; gap: 10px; margin: 0 0 28px; padding: 0; list-style: none; color: #d6d5cc; }
.feature-list li { display: grid; grid-template-columns: 18px 1fr; gap: 8px; }
.feature-list li::before { content: "✓"; color: var(--lime); font-weight: 900; }
.edition-body .button { margin-top: auto; }

.button-svg { width: 19px; height: 19px; fill: currentColor; flex: 0 0 auto; }
.platform-svg { width: 34px; height: 34px; fill: currentColor; flex: 0 0 auto; }
.game-detail-hero { min-height: min(920px, 94vh); }
.game-detail-hero .hero-content { max-width: 850px; }
.store-channel-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 22px; }
.store-channel-badges a { display: block; transition: transform .2s ease, opacity .2s ease; }
.store-channel-badges a:hover { transform: translateY(-2px); opacity: .9; }
.store-channel-badges img { display: block; width: auto; height: 46px; max-width: 190px; object-fit: contain; border-radius: 8px; }
.release-countdown { display: inline-flex; flex-direction: column; gap: 4px; margin-top: 20px; padding: 14px 18px; border: 1px solid rgba(255,255,255,.24); border-radius: 14px; background: rgba(0,0,0,.48); backdrop-filter: blur(14px); }
.release-countdown span { color: rgba(255,255,255,.64); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.release-countdown strong { color: #fff; font-variant-numeric: tabular-nums; font-size: clamp(18px, 2.2vw, 28px); }
.platform-stage { position: relative; overflow: hidden; background: linear-gradient(180deg, #050505, #0b0b0b); }
.platform-stage::before { content: ""; position: absolute; width: 620px; height: 620px; right: -260px; top: -300px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.018), 0 0 0 160px rgba(255,255,255,.012); pointer-events: none; }
.platform-stage__head { position: relative; display: flex; align-items: end; justify-content: space-between; gap: 28px; }
.platform-stage__head h2 { margin: 0; font-size: clamp(42px, 7vw, 82px); line-height: .95; letter-spacing: -.06em; }
.platform-choice-grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-top: 42px; }
.platform-choice-grid[hidden] { display: none; }
.platform-choice { min-height: 155px; display: grid; place-items: center; align-content: center; gap: 10px; padding: 20px; border: 1px solid rgba(255,255,255,.22); border-radius: 18px; color: #fff; background: rgba(255,255,255,.025); opacity: 0; transform: translateY(20px) scale(.97); animation: platform-in .48s cubic-bezier(.2,.8,.2,1) forwards; animation-delay: var(--platform-delay); }
.platform-choice:hover, .platform-choice:focus-visible, .platform-choice.is-selected { color: #000; border-color: #fff; background: #fff; transform: translateY(-3px); }
.platform-choice span { font-size: 16px; font-weight: 900; }
.platform-choice small { color: currentColor; opacity: .65; text-transform: uppercase; font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.edition-stage { background: #000; }
.currency-control { min-width: 170px; display: grid; gap: 6px; }
.currency-control label { color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.edition-placeholder { min-height: 360px; display: grid; place-items: center; align-content: center; gap: 10px; border: 1px dashed rgba(255,255,255,.24); border-radius: 28px; text-align: center; background: radial-gradient(circle, rgba(255,255,255,.06), transparent 62%); }
.edition-placeholder .platform-svg { width: 68px; height: 68px; }
.edition-placeholder h2 { margin: 0 0 14px; font-size: clamp(38px, 6vw, 70px); letter-spacing: -.055em; }
.requirements-section { background: linear-gradient(180deg, #080808, #020202); }
.requirements-section .section-head > .platform-svg { width: 72px; height: 72px; }
.requirements-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.requirements-grid article { min-height: 220px; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.03); }
.requirements-grid span { color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.requirements-grid p { color: #e8e8e8; line-height: 1.65; white-space: pre-line; }
.game-story { overflow: hidden; }
.story-row { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); align-items: center; gap: clamp(32px, 7vw, 110px); }
.story-row.image-right .story-media { order: 2; }
.story-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid rgba(255,255,255,.22); border-radius: 26px; background: #111; box-shadow: 0 35px 90px rgba(0,0,0,.45); }
.story-media::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.12); border-radius: inherit; pointer-events: none; }
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-copy h2 { margin: 0 0 22px; font-size: clamp(40px, 6vw, 74px); line-height: .98; letter-spacing: -.055em; }
.custom-html { color: #d6d6d6; line-height: 1.72; }
.custom-html h2, .custom-html h3, .custom-html h4 { color: #fff; letter-spacing: -.035em; }
.custom-html a { color: #fff; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.custom-html img { max-width: 100%; height: auto; border-radius: 18px; }
.currency-section { background: radial-gradient(circle at 90% 10%, rgba(255,255,255,.08), transparent 35%), #030303; }
.currency-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 18px; }
.currency-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.035); }
.currency-banner { position: relative; aspect-ratio: 16 / 9; background: #111; }
.currency-banner > img:first-child { width: 100%; height: 100%; object-fit: cover; filter: brightness(.7); }
.currency-icon { position: absolute; left: 20px; bottom: -34px; width: 76px; height: 76px; padding: 8px; object-fit: contain; border: 1px solid #fff; border-radius: 18px; background: #000; }
.currency-body { display: flex; min-height: 310px; flex-direction: column; align-items: flex-start; padding: 54px 22px 22px; }
.currency-body h3 { margin: 12px 0 0; font-size: 28px; }
.currency-body .button { width: 100%; margin-top: auto; }
.faq-section { background: #050505; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: grid; grid-template-columns: 52px 1fr 30px; gap: 18px; align-items: center; padding: 26px 4px; cursor: pointer; list-style: none; font-size: clamp(18px, 2.4vw, 27px); font-weight: 850; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { color: var(--muted); font-size: 11px; letter-spacing: .15em; }
.faq-item summary b { font-size: 30px; font-weight: 300; transition: transform .25s ease; }
.faq-item[open] summary b { transform: rotate(45deg); }
.faq-item > .custom-html { max-width: 820px; padding: 0 4px 28px 74px; }
.reveal-block { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal-block.is-visible { opacity: 1; transform: none; }
.code-editor { min-height: 190px; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 12px; line-height: 1.55; }
.admin-divider { margin: 34px 0; border: 0; border-top: 1px solid var(--line); }
body[data-background-style="circles"] .particle-field { opacity: .35; filter: blur(2px); }
body[data-background-style="none"] .particle-field { display: none; }

@keyframes platform-in { to { opacity: 1; transform: none; } }

.notice-card { display: flex; align-items: flex-start; gap: 15px; padding: 20px; border: 1px solid rgba(255,255,255,.25); border-radius: 17px; background: var(--lime-soft); }
.notice-card strong { display: block; margin-bottom: 3px; }
.notice-card p { margin: 0; color: #c8c7bd; }
.platform-icons { display: flex; flex-wrap: wrap; gap: 9px; }
.platform-chip { display: inline-flex; align-items: center; gap: 7px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 10px; color: #d9d8cf; background: rgba(255,255,255,.035); font-size: 12px; font-weight: 750; }
.platform-chip b { color: var(--lime); font-size: 16px; }

.library-grid { display: grid; gap: 22px; }
.library-item { display: grid; grid-template-columns: minmax(180px, 300px) 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 25px; background: var(--panel); }
.library-cover { min-height: 310px; object-fit: cover; width: 100%; height: 100%; }
.library-body { padding: clamp(24px, 4vw, 44px); }
.library-body h2 { margin: 4px 0 6px; font-size: clamp(30px, 4vw, 50px); letter-spacing: -.04em; }
.build-list, .key-list { display: grid; gap: 9px; margin-top: 18px; }
.build-row, .key-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 13px; padding: 13px; border: 1px solid var(--line); border-radius: 12px; background: rgba(0,0,0,.2); }
.code { padding: 6px 9px; border: 1px dashed var(--line-strong); border-radius: 8px; color: var(--lime); background: #080908; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; overflow-wrap: anywhere; }

.purchase-dialog { width: min(720px, calc(100% - 24px)); max-height: calc(100vh - 30px); padding: 0; overflow: auto; border: 1px solid var(--line-strong); border-radius: 26px; color: var(--paper); background: #111311; box-shadow: var(--shadow); }
.purchase-dialog::backdrop { background: rgba(0,0,0,.78); backdrop-filter: blur(8px); }
.dialog-close { position: sticky; z-index: 5; left: calc(100% - 54px); top: 14px; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; color: #fff; background: rgba(0,0,0,.7); font-size: 24px; }
.dialog-content { padding: 0 clamp(22px, 5vw, 42px) 38px; }
.dialog-content h2 { margin: -18px 0 5px; padding-right: 40px; font-size: 38px; letter-spacing: -.04em; }
.provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 24px 0; }
.provider-card { display: flex; flex-direction: column; justify-content: space-between; min-height: 190px; padding: 15px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.03); }
.provider-card img { width: 100%; border-radius: 10px; }
.dlc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 18px; }
.dlc-card { overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.035); }
.dlc-card > img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.dlc-card > div { display: grid; gap: 12px; padding: 20px; }
.dlc-card h3, .dlc-card p { margin: 0; }
.dlc-card p { color: var(--muted); line-height: 1.65; }
.dlc-card .button { justify-self: start; margin-top: 4px; }
.consent-list { display: grid; gap: 10px; margin: 18px 0; }
.check-row { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; color: #d1d0c7; font-size: 13px; }
.check-row input { width: 18px; min-height: 18px; margin-top: 2px; }

.admin-shell { width: min(1560px, calc(100% - 28px)); margin: 28px auto 90px; display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 18px; }
.admin-sidebar { position: sticky; top: 96px; align-self: start; padding: 16px; border: 1px solid var(--line); border-radius: 20px; background: var(--panel); }
.admin-sidebar h1 { margin: 3px 8px 18px; font-size: 22px; }
.admin-tabs { display: grid; gap: 5px; }
.admin-tabs button { padding: 11px 12px; border: 0; border-radius: 9px; color: var(--muted); background: transparent; text-align: left; font-weight: 750; }
.admin-tabs button:hover, .admin-tabs button.active { color: var(--ink); background: var(--lime); }
.admin-content { min-width: 0; }
.admin-panel { margin-bottom: 18px; padding: clamp(18px, 3vw, 30px); border: 1px solid var(--line); border-radius: 20px; background: var(--panel); }
.admin-panel h2 { margin: 0 0 16px; font-size: 28px; letter-spacing: -.03em; }
.admin-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 13px; }
.field { grid-column: span 6; display: grid; align-content: start; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field.third { grid-column: span 4; }
.field label { color: var(--muted); font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.toggle-field { display: flex; align-items: center; gap: 10px; min-height: 44px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 11px; }
.toggle-field input { width: 18px; min-height: 18px; }
.form-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.metric-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 10px; }
.metric { padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.03); }
.metric strong { display: block; font-size: 30px; line-height: 1; letter-spacing: -.04em; }
.metric span { display: block; margin-top: 7px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.data-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.table-scroll { overflow: auto; }
.data-table th, .data-table td { padding: 11px 9px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.data-table th { color: var(--muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.status { font-weight: 850; }
.status.completed, .status.published, .status.available { color: var(--green); }
.status.refunded, .status.revoked, .status.failed { color: var(--red); }
.status.pending, .status.draft, .status.checkout_open { color: #ffd36e; }
.progress { height: 8px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.08); }
.progress span { display: block; height: 100%; width: 0; background: var(--lime); transition: width .2s; }
.guide { counter-reset: guide; display: grid; gap: 14px; }
.guide article { position: relative; padding: 20px 20px 20px 68px; border: 1px solid var(--line); border-radius: 14px; }
.guide article::before { counter-increment: guide; content: counter(guide); position: absolute; left: 18px; top: 18px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #000; background: var(--lime); font-weight: 900; }
.guide h3 { margin: 0 0 5px; }
.guide p { margin: 0; color: var(--muted); }

.legal-shell { width: min(900px, calc(100% - 36px)); margin: 0 auto; padding: 88px 0 120px; }
.legal-shell h1 { margin: 0 0 12px; font-size: clamp(48px, 8vw, 88px); letter-spacing: -.06em; line-height: .95; }
.legal-shell h2 { margin-top: 42px; font-size: 26px; }
.legal-shell p, .legal-shell li { color: #cac9c0; }
.legal-shell a { color: var(--lime); }

.loading-screen { min-height: 72vh; display: grid; place-content: center; justify-items: center; gap: 18px; color: var(--muted); }
.loader-mark { display: flex; gap: 6px; }
.loader-mark span { width: 9px; height: 36px; border-radius: 9px; background: var(--lime); animation: load 1s ease-in-out infinite alternate; }
.loader-mark span:nth-child(2) { animation-delay: .15s; }
.loader-mark span:nth-child(3) { animation-delay: .3s; }
.skeleton { display: inline-block; width: 120px; height: 34px; border-radius: 10px; background: linear-gradient(90deg,#171917,#252825,#171917); background-size: 200% 100%; animation: shimmer 1.3s infinite; }
.skeleton.short { width: 105px; }
.empty-state { padding: 70px 20px; border: 1px dashed var(--line-strong); border-radius: 20px; text-align: center; }
.empty-state h2 { margin: 0 0 6px; font-size: 38px; letter-spacing: -.04em; }
.toast-region { position: fixed; right: 18px; bottom: 18px; z-index: 100; display: grid; gap: 10px; width: min(410px, calc(100% - 36px)); }
.toast { padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: 13px; color: var(--paper); background: #1b1e1b; box-shadow: var(--shadow); animation: toast-in .25s ease-out; }
.toast.error { border-color: rgba(255,94,103,.55); }
.site-footer { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: end; padding: 54px clamp(18px, 4vw, 68px); border-top: 1px solid var(--line); background: #060706; }
.site-footer > div img { width: 58px; filter: grayscale(1) brightness(1.8); }
.site-footer > div p { color: var(--muted); }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px; }
.site-footer nav a { color: var(--muted); font-size: 12px; text-decoration: none; }
.site-footer nav a:hover { color: var(--lime); }
.copyright { grid-column: 1 / -1; margin: 0; color: #73746e; font-size: 11px; }

@keyframes load { to { height: 16px; opacity: .45; } }
@keyframes shimmer { to { background-position: -200% 0; } }
@keyframes toast-in { from { opacity: 0; transform: translateY(10px); } }
@keyframes editorial-rise { from { opacity: 0; transform: translateY(18px); } }
@keyframes editorial-drift { from { transform: scale(1.01); } to { transform: scale(1.035); } }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav { position: fixed; z-index: 50; left: 50%; bottom: 12px; transform: translateX(-50%); background: rgba(12,14,12,.94); box-shadow: 0 10px 35px #000; }
  .account-slot { grid-column: 2; grid-row: 1; }
  .library-item { grid-template-columns: 1fr; }
  .library-cover { max-height: 280px; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; }
  .admin-tabs { grid-template-columns: repeat(4, 1fr); }
  .admin-tabs button { text-align: center; font-size: 11px; }
  .metric-grid { grid-template-columns: repeat(3, 1fr); }
  .requirements-grid { grid-template-columns: 1fr; }
  .store-featured__layout { grid-template-columns: 1fr; }
  .store-featured__trailer { width: min(620px, 100%); }
  .story-row { grid-template-columns: 1fr; }
  .story-row.image-right .story-media { order: 0; }
  .home-trailer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .site-header { min-height: 68px; padding-inline: 14px; }
  .brand span { display: none; }
  .brand img { width: 118px; height: 42px; }
  .account-chip span { display: none; }
  .main-nav { width: calc(100% - 20px); justify-content: space-around; }
  .main-nav a { padding-inline: 10px; }
  .hero { min-height: 660px; }
  .store-featured { min-height: 690px; }
  .store-featured__shade { background: linear-gradient(0deg, #000 0%, rgba(0,0,0,.7) 68%, rgba(0,0,0,.2)); }
  .store-featured__content { padding: 120px 0 96px; }
  .store-featured__logo { width: min(420px, 82vw); max-height: 210px; }
  .store-featured__layout { gap: 26px; }
  .store-featured__trailer { display: none; }
  .game-announcement__inner { align-items: flex-start; flex-direction: column; gap: 4px; padding-block: 12px; }
  .featured-arrow { top: auto; bottom: 28px; width: 42px; height: 42px; font-size: 32px; }
  .featured-arrow--previous { left: 16px; }
  .featured-arrow--next { right: 16px; }
  .featured-dots { right: 50%; bottom: 46px; transform: translateX(50%); }
  .hero-media::after { background: linear-gradient(0deg, rgba(8,9,8,.98) 0%, rgba(8,9,8,.62) 72%, rgba(8,9,8,.15)); }
  .provider-grid { grid-template-columns: 1fr; }
  .field, .field.third { grid-column: 1 / -1; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-tabs { grid-template-columns: repeat(2, 1fr); }
  .platform-stage__head { align-items: stretch; flex-direction: column; }
  .platform-choice-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-choice { min-height: 128px; }
  .faq-item summary { grid-template-columns: 34px 1fr 24px; gap: 10px; }
  .faq-item > .custom-html { padding-left: 44px; }
  .site-footer { grid-template-columns: 1fr; padding-bottom: 100px; }
  .site-footer nav { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .particle-field { display: none; }
}

/* Minimal game pages */
.game-detail-hero { min-height: min(760px, calc(100vh - 78px)); }
.game-detail-hero .hero-content { width: min(1180px, calc(100% - 36px)); max-width: none; padding-block: 120px 64px; }
.game-detail-hero .hero-content > * { max-width: 640px; }
.game-detail-hero .game-card-logo { width: min(270px, 58vw); max-height: 92px; filter: drop-shadow(0 6px 18px rgba(0,0,0,.72)); }
.game-detail-hero .lede { margin-top: 22px; color: rgba(255,255,255,.78); font-size: clamp(16px, 1.6vw, 19px); line-height: 1.62; }
.game-detail-hero .hero-media::after { background: linear-gradient(90deg, rgba(0,0,0,.93), rgba(0,0,0,.58) 48%, rgba(0,0,0,.12) 78%), linear-gradient(0deg, #000, transparent 34%); }
.game-detail-hero .hero-actions { gap: 10px; margin-top: 28px; }
.hero-text-link { display: inline-flex; align-items: center; gap: 6px; min-height: 48px; padding: 0 8px; color: rgba(255,255,255,.7); font-size: 13px; font-weight: 750; text-decoration: none; }
.hero-text-link:hover { color: #fff; }
.hero-text-link .button-svg { width: 15px; height: 15px; }
.game-meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 26px; }
.game-meta-row .release-countdown, .game-meta-row .store-channel-badges { margin-top: 0; }
.release-countdown { padding: 0; border: 0; border-radius: 0; background: transparent; backdrop-filter: none; }
.release-countdown span { color: rgba(255,255,255,.52); font-size: 9px; }
.release-countdown strong { font-size: 18px; letter-spacing: -.01em; }
.store-channel-badges img { height: 36px; max-width: 150px; border-radius: 6px; }
.game-announcement__inner { width: min(1180px, calc(100% - 36px)); min-height: 46px; }
.game-announcement p { font-size: 13px; font-weight: 620; }
.platform-stage, .edition-stage, .requirements-section, .game-story-gallery, .faq-section { background: #050505; }
.platform-stage { padding-block: 72px; border-bottom: 1px solid var(--line); }
.platform-stage::before { display: none; }
.platform-stage > .shell, .edition-stage > .shell, .requirements-section > .shell, .game-story-gallery > .shell, .faq-section > .shell { width: min(1100px, calc(100% - 36px)); }
.platform-stage__head h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1; letter-spacing: -.045em; }
.platform-stage__head p { margin: 10px 0 0; font-size: 14px; }
.platform-choice-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 190px)); gap: 10px; margin-top: 28px; }
.platform-choice { min-height: 104px; grid-template-columns: 30px 1fr; grid-template-rows: auto auto; place-items: start; align-content: center; column-gap: 12px; row-gap: 2px; padding: 18px; border-color: var(--line); border-radius: 12px; text-align: left; }
.platform-choice .platform-svg { grid-row: 1 / 3; width: 27px; height: 27px; }
.platform-choice span { font-size: 14px; }
.platform-choice small { font-size: 8px; }
.notice-card--quiet { max-width: 600px; margin-top: 24px !important; padding: 16px 0 0; border: 0; border-top: 1px solid var(--line); border-radius: 0; background: transparent; }
.notice-card--quiet strong { font-size: 13px; }
.notice-card--quiet p { color: var(--muted); font-size: 12px; }
.edition-stage { padding-block: 72px; border-bottom: 1px solid var(--line); }
.edition-stage .section-head { align-items: center; margin-bottom: 24px; }
.edition-stage .section-head h2, .requirements-section .section-head h2, .faq-section .section-head h2 { font-size: clamp(30px, 4vw, 46px); }
.edition-grid { grid-template-columns: minmax(0, 760px); }
.edition-card { display: grid; grid-template-columns: minmax(220px, 300px) 1fr; border-radius: 16px; background: #090909; box-shadow: none; }
.edition-banner { height: 100%; min-height: 300px; }
.edition-body { padding: 28px; }
.edition-body h3 { font-size: 25px; }
.price { margin: 12px 0; font-size: 28px; }
.feature-list { gap: 7px; margin-bottom: 22px; font-size: 13px; }
.requirements-section { padding-block: 64px; border-bottom: 1px solid var(--line); }
.requirements-section .section-head > .platform-svg { width: 42px; height: 42px; }
.requirements-grid { gap: 0; border-top: 1px solid var(--line); }
.requirements-grid article { min-height: 0; padding: 22px 24px 8px 0; border: 0; border-radius: 0; background: transparent; }
.requirements-grid article + article { padding-left: 24px; border-left: 1px solid var(--line); }
.requirements-grid p { color: #c7c7c7; font-size: 13px; line-height: 1.6; }
.game-story-gallery { padding-block: 72px; border-bottom: 1px solid var(--line); }
.story-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.story-card { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #090909; }
.story-card__media { aspect-ratio: 16 / 8.5; overflow: hidden; background: #111; }
.story-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.story-card:hover .story-card__media img { transform: scale(1.02); }
.story-card__copy { padding: 22px; }
.story-card__copy h2 { margin: 0 0 10px; font-size: clamp(23px, 3vw, 31px); line-height: 1.05; letter-spacing: -.035em; }
.story-card__copy .custom-html { color: #aaa; font-size: 13px; }
.story-card__copy .custom-html p { margin: 0; }
.faq-section { padding-block: 72px; }
.faq-list { max-width: 840px; }
.faq-item summary { grid-template-columns: 1fr 24px; gap: 16px; padding: 20px 0; font-size: clamp(16px, 2vw, 20px); font-weight: 720; }
.faq-item summary b { justify-self: end; font-size: 24px; }
.faq-item > .custom-html { max-width: 720px; padding: 0 36px 20px 0; color: #aaa; font-size: 13px; }

@media (max-width: 680px) {
  .game-detail-hero { min-height: 650px; }
  .game-detail-hero .hero-content { padding-block: 96px 48px; }
  .game-detail-hero .hero-media::after { background: linear-gradient(0deg, #000 0%, rgba(0,0,0,.7) 64%, rgba(0,0,0,.2)); }
  .game-meta-row { align-items: flex-start; flex-direction: column; }
  .platform-stage { padding-block: 52px; }
  .platform-choice-grid { grid-template-columns: 1fr 1fr; }
  .platform-choice { min-height: 90px; }
  .edition-card { grid-template-columns: 1fr; }
  .edition-banner { min-height: 190px; }
  .story-gallery { grid-template-columns: 1fr; }
  .requirements-grid article + article { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
}
