:root {
  --green: #0b5d45;
  --forest: #12372d;
  --gold: #d39a16;
  --gold-dark: #956508;
  --cream: #fff9f0;
  --paper: #fff;
  --ink: #17231f;
  --muted: #5c6c64;
  --line: #e6e7dc;
  --shadow: 0 8px 26px #543e0e09;
  --radius: 20px;
  --max: 1320px;
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    Roboto,
    Arial,
    sans-serif;
  color: var(--ink);
  background: #fffcf7;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  margin: 0;
  background:
    radial-gradient(ellipse at 95% 12%, #f9e7bb35, transparent 34%), #fffcf7;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: var(--green);
  text-decoration: none;
}
a:hover {
  color: var(--gold-dark);
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
button,
a {
  touch-action: manipulation;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  color: var(--forest);
  line-height: 1.12;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(2.55rem, 4.4vw, 4.2rem);
  font-weight: 780;
}
h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  font-weight: 750;
}
h3 {
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}
p {
  color: var(--muted);
}
:focus-visible {
  outline: 3px solid var(--gold-dark);
  outline-offset: 5px;
}
::selection {
  background: #f6dea2;
  color: var(--forest);
}
[hidden] {
  display: none !important;
}
.container {
  width: min(var(--max), calc(100% - 80px));
  margin-inline: auto;
}
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  vertical-align: middle;
}
.fine {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--muted);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 99;
  background: var(--forest);
  color: white;
  padding: 12px 20px;
  transform: translateY(-160%);
}
.skip:focus {
  transform: none;
}
main:focus {
  outline: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 0 0;
}
.nav-shell {
  width: min(1400px, calc(100% - 56px));
  min-height: 78px;
  margin: auto;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #fffffff5;
  border: 1px solid #f3e9d8;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: var(--forest);
}
.brand img {
  width: 38px;
  height: 48px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.brand strong {
  font-size: 1.75rem;
  letter-spacing: 0.13em;
  font-weight: 740;
  line-height: 1.05;
}
.brand small {
  display: block;
  color: var(--gold-dark);
  font-size: 0.73rem;
  letter-spacing: 0.28em;
  font-weight: 650;
  line-height: 1.5;
}
nav#primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
#primary-nav > a:not(.button) {
  padding: 12px 0;
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}
#primary-nav > a[aria-current="page"] {
  color: var(--green);
}
#primary-nav > a[aria-current="page"]:after {
  content: "";
  height: 2px;
  background: var(--gold);
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 11px 23px;
  color: white;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 11px;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.4;
  transition:
    transform 0.18s,
    background 0.18s,
    box-shadow 0.18s;
}
.button:hover {
  background: var(--forest);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px #0b5d451c;
}
.button.outline {
  background: transparent;
  color: var(--green);
  border-color: #53786a;
}
.button.outline:hover {
  background: #eff5ee;
}
.button.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #213025;
}
.button.gold:hover {
  background: #edb734;
}
.button.light {
  border-color: #93b2a5;
  color: white;
}
.button.light:hover {
  background: #ffffff15;
}
.nav-cta {
  margin-left: 38px;
  min-height: 42px;
}
.menu-toggle {
  display: none;
}
.actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 750;
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  color: var(--green);
  text-transform: uppercase;
}
.eyebrow .icon {
  color: var(--gold);
  width: 18px;
}
.lead {
  font-size: 1.07rem;
  line-height: 1.75;
  max-width: 590px;
}
.home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  min-height: 510px;
  padding: 50px 20px 30px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-copy h1 {
  margin: 20px 0;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
}
.hero-copy h1 span {
  color: var(--gold-dark);
}
.hero-copy .lead {
  max-width: 500px;
}
.hero-copy .actions {
  margin-top: 27px;
}
.hero-footnote {
  margin-top: 24px;
  font-size: 0.8rem;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 600;
}
.status i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c39539;
}
.hero-art {
  height: 435px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-orbit {
  position: absolute;
  width: 98%;
  aspect-ratio: 1.25;
  border-radius: 50%;
  background: radial-gradient(ellipse, #f5df9b66, transparent 72%);
  border-bottom: 1px solid #e7c77a;
  transform: rotate(-14deg);
  z-index: -1;
}
.hero-screen {
  position: absolute;
  overflow: hidden;
  border: 6px solid var(--forest);
  border-radius: 23px;
  background: #193d30;
  box-shadow: 0 18px 30px #12372d26;
  width: 170px;
  aspect-ratio: 9/16;
}
.hero-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.screen-main {
  width: 202px;
  z-index: 3;
  transform: rotate(5deg);
  left: calc(50% - 95px);
  top: 12px;
}
.screen-left {
  transform: rotate(-12deg);
  left: 5%;
  top: 80px;
  width: 148px;
}
.screen-right {
  transform: rotate(14deg);
  right: 2%;
  top: 77px;
  width: 168px;
}
.hero-note {
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 10px 17px;
  border: 1px solid #eee3c8;
  border-radius: 99px;
  background: #fffdf9;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 600;
  z-index: 4;
  box-shadow: var(--shadow);
}
.hero-note .icon {
  width: 16px;
  margin-left: 7px;
  color: var(--gold-dark);
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.section-heading .eyebrow {
  margin-bottom: 0;
}
.section-heading h2 {
  margin-top: 9px;
}
.section-heading p:not(.eyebrow) {
  margin-top: 12px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  font-size: 0.87rem;
  font-weight: 700;
}
.text-link:hover .icon {
  transform: translateX(3px);
}
.text-link .icon {
  transition: transform 0.18s;
}
.featured {
  padding-top: 15px;
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.game-card {
  display: grid;
  grid-template-columns: 45% 55%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 17px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  min-width: 0;
}
.game-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px #183a2811;
}
.game-art {
  position: relative;
  background: #edf4e4;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: center;
}
.game-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 37%;
}
.game-art.logo-art {
  background: radial-gradient(circle, #fff8d6, #e3ecd1);
  padding: 10px;
}
.game-art.logo-art img {
  height: auto;
  object-fit: contain;
}
.art-label {
  position: absolute;
  bottom: 8px;
  left: 7px;
  right: 7px;
  border-radius: 5px;
  background: #10382de6;
  color: white;
  text-align: center;
  font-size: 0.57rem;
  padding: 3px 2px;
  letter-spacing: 0.02em;
}
.game-copy {
  padding: 20px 17px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.tag {
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  color: #825b0b;
  text-transform: uppercase;
  background: #fff0cd;
  padding: 3px 7px;
  border-radius: 5px;
  display: inline-flex;
}
.game-copy h3 {
  font-size: 1.15rem;
  line-height: 1.25;
  margin: 10px 0;
}
.game-copy h3 a {
  color: var(--forest);
}
.game-copy p {
  font-size: 0.82rem;
  line-height: 1.65;
  margin-bottom: 12px;
}
.game-copy .status {
  margin-top: auto;
  white-space: normal;
}
.game-copy .text-link {
  margin-top: 5px;
  font-size: 0.8rem;
}
.studio-preview {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 44px;
  padding: 52px 8px 38px;
  align-items: center;
}
.studio-preview h2 {
  margin: 12px 0 14px;
}
.studio-preview > div > p:not(.eyebrow) {
  font-size: 0.93rem;
}
.preview-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.preview-values article {
  padding: 24px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
}
.icon-disc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f1f2e7;
  color: var(--green);
  margin-bottom: 18px;
}
.icon-disc .icon {
  width: 26px;
  height: 26px;
}
.preview-values h3 {
  font-size: 1rem;
  margin-bottom: 9px;
}
.preview-values p {
  font-size: 0.79rem;
}
.cta-band {
  margin: 36px 0 50px;
  display: flex;
  gap: 25px;
  align-items: center;
  background: linear-gradient(120deg, #0c4938, #0c392d);
  color: white;
  padding: 28px 34px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  color: white;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}
.cta-band p {
  color: #d5e3da;
  font-size: 0.87rem;
  margin-top: 7px;
}
.cta-band .actions {
  margin-left: auto;
  flex-shrink: 0;
  gap: 12px;
}
.cta-mark {
  width: 72px;
  flex-shrink: 0;
  padding: 9px;
  background: white;
  border-radius: 12px;
}
.cta-mark img {
  object-fit: contain;
  height: 58px;
  width: 100%;
}
.site-footer {
  background: #102f26;
  color: #e5eee8;
  padding: 45px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 42px;
}
.site-footer .brand {
  color: white;
}
.site-footer .brand img {
  mix-blend-mode: normal;
  background: white;
  border-radius: 8px;
  padding: 4px;
}
.site-footer .brand small {
  color: #eabb55;
}
.site-footer p,
.site-footer .fine {
  color: #c0d2c7;
}
.footer-brand p {
  font-size: 0.91rem;
  margin: 18px 0 10px;
}
.site-footer h2 {
  color: #ecf2ed;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 13px;
}
.site-footer .contact-heading {
  margin-top: 19px;
  margin-bottom: 7px;
}
.site-footer a:not(.brand) {
  display: block;
  color: #cddbd2;
  font-size: 0.83rem;
  margin: 8px 0;
  padding: 3px 0;
  min-height: 28px;
}
.site-footer a:hover {
  color: #f3c159;
}
.site-footer .email {
  overflow-wrap: anywhere;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  border-top: 1px solid #ffffff17;
  margin-top: 36px;
  padding-block: 19px;
  font-size: 0.72rem;
  color: #c0d2c7;
}
.page-intro {
  padding: 60px 22px 40px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.page-intro h1 {
  margin: 14px 0 17px;
}
.page-intro .lead {
  max-width: 700px;
}
.intro-motif {
  width: 160px;
  height: 160px;
  opacity: 0.18;
  transform: rotate(8deg);
  flex-shrink: 0;
  overflow: hidden;
}
.intro-motif img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 10px 0 16px;
  align-items: center;
}
.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filter {
  background: #fff;
  color: var(--green);
  border: 1px solid #cfdbd1;
  border-radius: 99px;
  padding: 10px 22px;
  min-height: 44px;
  font-size: 0.85rem;
  font-weight: 650;
}
.filter[aria-pressed="true"] {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  padding: 0 16px;
  min-width: 260px;
}
.search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 13px 0;
  outline-offset: 1px;
  font-size: 0.9rem;
}
.catalog-grid {
  margin-top: 20px;
}
.catalog-grid .game-card {
  grid-template-columns: 1fr;
}
.catalog-grid .game-art {
  height: 310px;
  min-height: 0;
}
.catalog-grid .game-art img {
  object-fit: contain;
  background: #e9efdd;
}
.catalog-grid .game-art.logo-art img {
  background: transparent;
  height: 100%;
  padding: 25px;
}
.catalog-grid .game-copy {
  padding: 24px;
}
.catalog-grid .game-copy h3 {
  font-size: 1.4rem;
}
.empty-state {
  text-align: center;
  padding: 60px;
}
.empty-state p {
  margin: 15px 0;
}
.breadcrumbs {
  margin: 28px 0 6px;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  font-size: 0.78rem;
}
.breadcrumbs li {
  display: flex;
  gap: 9px;
  align-items: center;
}
.breadcrumbs li + li:before {
  content: "›";
  color: #7c8a7f;
}
.breadcrumbs [aria-current] {
  color: var(--gold-dark);
}
.detail-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 25px 22px 44px;
}
.detail-copy h1 {
  margin: 17px 0;
  font-size: clamp(2.5rem, 3.8vw, 3.7rem);
}
.detail-copy .tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.detail-copy .lead {
  font-size: 1rem;
}
.detail-copy .actions {
  margin-top: 25px;
}
.availability {
  background: #f0f4e9;
  border: 1px solid #e1e6d5;
  border-radius: 12px;
  margin-top: 23px;
  padding: 13px 17px;
  font-size: 0.85rem;
  color: var(--forest);
}
.detail-visual {
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(ellipse, #f3dfaa, #f9f4e8);
  border-radius: 24px;
  padding: 22px;
  position: relative;
}
.detail-visual.forest {
  background: radial-gradient(ellipse, #d5e9bc, #f0f3e5);
}
.detail-visual.warehouse {
  background: radial-gradient(ellipse, #d4e8e9, #f3efdc);
}
.detail-visual img {
  max-height: 390px;
  width: auto;
  border-radius: 13px;
  box-shadow: 0 12px 25px #103c2926;
}
.detail-visual .media-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 4px 9px;
  border-radius: 6px;
  font-size: 0.67rem;
  background: #fffffff0;
  color: var(--forest);
}
.gallery-shell {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  padding: 22px;
}
.gallery-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
  gap: 10px;
}
.gallery-head h2 {
  font-size: 1.25rem;
}
.gallery-controls {
  display: flex;
  gap: 8px;
}
.icon-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
}
.gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-color: #adbdac #f7f5ef;
}
.gallery-item {
  margin: 0;
  flex: 0 0 170px;
  scroll-snap-align: start;
}
.gallery-item a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4ed;
}
.gallery-item img {
  width: 100%;
  height: 302px;
  object-fit: contain;
}
.gallery-item figcaption {
  font-size: 0.76rem;
  margin-top: 9px;
  font-weight: 600;
  color: var(--forest);
}
.media-note {
  font-size: 0.77rem;
  margin-top: 14px;
  max-width: 960px;
}
.detail-panels {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 22px;
  margin-top: 26px;
}
.panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}
.panel h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.feature-list .icon {
  margin-top: 3px;
  color: var(--green);
  width: 18px;
}
.feature-list strong {
  font-size: 0.9rem;
  color: var(--forest);
}
.feature-list p {
  font-size: 0.85rem;
  margin-top: 3px;
}
dl {
  margin: 0;
}
dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0e8;
  font-size: 0.84rem;
}
dt {
  color: var(--muted);
}
dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}
.related {
  margin-top: 44px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.value-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  padding: 25px;
}
.value-card h3 {
  margin-bottom: 12px;
}
.value-card p {
  font-size: 0.87rem;
}
.about-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 45px;
  align-items: center;
  padding: 60px 22px 45px;
}
.about-hero h1 {
  margin: 18px 0;
}
.about-hero h1 span {
  color: var(--gold-dark);
}
.about-hero p + p {
  margin-top: 15px;
}
.about-hero .actions {
  margin-top: 25px;
}
.about-media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 13px;
  background: #f1eddb;
  padding: 30px;
  border-radius: 24px;
  min-height: 340px;
}
.about-media img {
  border-radius: 12px;
  box-shadow: 0 8px 18px #12372d20;
}
.about-media img:nth-child(2) {
  transform: translateY(-20px);
}
.process {
  margin: 36px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
}
.process span {
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 800;
}
.process h3 {
  margin: 8px 0;
}
.process p {
  font-size: 0.84rem;
}
.support-search {
  margin: 0 0 28px;
  max-width: 850px;
}
.support-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 25px;
}
.support-links {
  padding: 0;
  list-style: none;
  margin: 0;
}
.support-links a {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  min-height: 78px;
}
.support-links li:first-child a {
  border-radius: 16px 16px 0 0;
}
.support-links li:last-child a {
  border-radius: 0 0 16px 16px;
}
.support-links .icon:last-child {
  margin-left: auto;
}
.support-links a:hover {
  background: #f2f5ec;
}
.support-help {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: linear-gradient(125deg, #eff5eb, #fffaf1);
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.support-help h2 {
  margin: 12px 0;
}
.support-help p {
  margin-bottom: 20px;
}
.faq-section {
  margin: 35px 0 45px;
  max-width: 1000px;
}
.faq-section h2 {
  margin-bottom: 18px;
}
.faq-section details {
  border: 1px solid var(--line);
  border-bottom: 0;
  background: #fff;
}
.faq-section details:first-of-type {
  border-radius: 14px 14px 0 0;
}
.faq-section details:last-of-type {
  border-bottom: 1px solid var(--line);
  border-radius: 0 0 14px 14px;
}
.faq-section summary {
  cursor: pointer;
  min-height: 56px;
  padding: 17px 23px;
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 650;
  list-style-position: inside;
}
.faq-section details[open] summary {
  color: var(--green);
  background: #f3f6ee;
}
.faq-section details p {
  padding: 16px 23px 22px;
  font-size: 0.92rem;
}
.game-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0;
}
.game-support-grid h3 {
  margin-bottom: 13px;
}
.game-support-grid p {
  font-size: 0.86rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 25px;
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  gap: 17px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:last-child {
  border: 0;
}
.contact-item h3 {
  margin-bottom: 7px;
}
.contact-item p {
  font-size: 0.88rem;
}
.contact-item a {
  overflow-wrap: anywhere;
  font-weight: 650;
}
.contact-item .icon-disc {
  flex-shrink: 0;
  margin: 0;
}
.contact-form h2 {
  margin-bottom: 8px;
}
.contact-form > p {
  font-size: 0.88rem;
  margin-bottom: 22px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field.full {
  grid-column: 1/-1;
}
.form-field label {
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--forest);
}
.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid #cfd8cc;
  border-radius: 8px;
  padding: 11px 12px;
  width: 100%;
  min-width: 0;
  background: white;
  color: var(--ink);
  font-size: 1rem;
}
.form-field textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-form .button[type="submit"] {
  width: 100%;
  margin: 19px 0 10px;
}
.draft-ready {
  padding: 16px;
  border: 1px solid #c7d9bb;
  background: #eff5e9;
  margin-top: 16px;
  border-radius: 10px;
}
.draft-ready p {
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  margin-bottom: 50px;
  align-items: start;
}
.legal-nav {
  position: sticky;
  top: 120px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 20px;
}
.legal-nav h2 {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
}
.legal-nav a {
  display: block;
  padding: 10px;
  font-size: 0.85rem;
  border-radius: 7px;
  min-height: 44px;
}
.legal-nav a:hover {
  background: #f8efdc;
}
.legal-body {
  max-width: 900px;
}
.legal-body section {
  margin-bottom: 30px;
}
.legal-body h2 {
  font-size: 1.35rem;
  margin-bottom: 15px;
}
.legal-body p,
.legal-body li {
  font-size: 0.94rem;
  line-height: 1.8;
}
.legal-body p + p {
  margin-top: 12px;
}
.legal-body ul,
.legal-body ol {
  padding-left: 24px;
  color: var(--muted);
}
.legal-body a {
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.notice {
  padding: 19px 23px;
  background: #fff2d5;
  border: 1px solid #edce89;
  border-radius: 13px;
  margin-bottom: 28px;
  color: #594219;
  font-size: 0.88rem;
}
.notice strong {
  display: block;
  margin-bottom: 5px;
}
.notice p {
  color: inherit;
  font-size: inherit;
}
.privacy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px 0 36px;
}
.privacy-cards h2 {
  font-size: 1.2rem;
}
.privacy-cards p {
  font-size: 0.86rem;
}
.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}
.legal-grid p {
  font-size: 0.92rem;
}
.legal-grid .icon-disc {
  margin-bottom: 12px;
}
.not-found {
  text-align: center;
  padding: 90px 10px;
}
.not-found .eyebrow,
.not-found .actions {
  justify-content: center;
}
.not-found h1 {
  margin: 20px 0;
}
.not-found p {
  margin-bottom: 27px;
}
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--forest);
  color: white;
  border: 1px solid #9ab0a3;
  box-shadow: var(--shadow);
  border-radius: 10px;
  padding: 14px 22px;
  max-width: calc(100% - 30px);
  font-size: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
  z-index: 100;
}
.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
dialog {
  border: 0;
  border-radius: 18px;
  background: #fffdf7;
  padding: 20px;
  width: min(640px, calc(100% - 24px));
  max-height: 95vh;
  color: var(--forest);
}
dialog::backdrop {
  background: #071f19d9;
}
.dialog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 14px;
}
dialog img {
  margin: auto;
  max-height: 74vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.dialog-top h2 {
  font-size: 1rem;
}
@media (min-width: 1600px) {
  .home-hero {
    min-height: 550px;
  }
  .hero-art {
    transform: scale(1.08);
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 48px);
  }
  .nav-shell {
    padding-inline: 22px;
    gap: 20px;
  }
  nav#primary-nav {
    gap: 23px;
  }
  .nav-cta {
    margin-left: 10px;
  }
  .brand strong {
    font-size: 1.5rem;
  }
  .home-hero {
    padding-inline: 0;
    gap: 10px;
  }
  .hero-art {
    transform: scale(0.88);
    margin-inline: -20px;
  }
  .game-card {
    grid-template-columns: 40% 60%;
  }
  .game-copy {
    padding: 16px 12px;
  }
  .game-copy h3 {
    font-size: 1rem;
  }
  .game-art {
    min-height: 290px;
  }
  .studio-preview {
    grid-template-columns: 1fr 1.5fr;
    gap: 26px;
  }
  .preview-values {
    gap: 10px;
  }
  .preview-values article {
    padding: 20px 13px;
  }
  .cta-mark {
    display: none;
  }
  .cta-band {
    padding: 26px;
    gap: 20px;
  }
  .cta-band .actions {
    gap: 8px;
  }
  .cta-band .button {
    padding-inline: 16px;
  }
  .detail-hero {
    gap: 32px;
  }
  .footer-grid {
    gap: 25px;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 850px) {
  .site-header {
    padding-top: 8px;
  }
  .nav-shell {
    width: calc(100% - 28px);
    min-height: 70px;
    padding: 10px 18px;
    border-radius: 16px;
    position: relative;
  }
  .brand img {
    width: 32px;
    height: 40px;
  }
  .brand strong {
    font-size: 1.4rem;
  }
  .brand small {
    font-size: 0.59rem;
  }
  .menu-toggle {
    display: flex;
    gap: 8px;
    align-items: center;
    min-height: 44px;
    min-width: 44px;
    background: transparent;
    color: var(--green);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 0.8rem;
  }
  nav#primary-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fffdf9;
    border: 1px solid var(--line);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 15px 30px #17362720;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  nav#primary-nav.open {
    display: flex;
  }
  #primary-nav > a:not(.button) {
    padding: 13px 0;
  }
  #primary-nav > a[aria-current="page"]:after {
    right: auto;
    width: 28px;
  }
  .nav-cta {
    margin: 12px 0 0;
  }
  .home-hero {
    grid-template-columns: 1fr 1fr;
    min-height: 430px;
    padding-top: 30px;
  }
  .hero-copy h1 {
    font-size: 2.6rem;
  }
  .hero-copy .lead {
    font-size: 0.98rem;
  }
  .hero-art {
    transform: scale(0.77);
    margin-inline: -40px;
  }
  .screen-left {
    left: 0;
  }
  .screen-right {
    right: -10px;
  }
  .hero-copy .actions {
    gap: 10px;
  }
  .hero-copy .button {
    padding: 11px 14px;
    font-size: 0.8rem;
  }
  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .featured .game-grid .game-card:last-child {
    grid-column: 1/-1;
    grid-template-columns: 30% 70%;
    min-height: 210px;
  }
  .featured .game-grid .game-card:last-child .game-art {
    min-height: 210px;
  }
  .featured .game-grid .game-card:last-child .game-copy {
    padding: 25px;
  }
  .studio-preview {
    grid-template-columns: 1fr;
  }
  .preview-values {
    gap: 16px;
  }
  .cta-band {
    flex-wrap: wrap;
  }
  .cta-band .actions {
    margin-left: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .search-box {
    min-width: 0;
  }
  .page-intro {
    padding: 40px 0 30px;
  }
  .page-intro h1 {
    font-size: 3rem;
  }
  .intro-motif {
    width: 100px;
    height: 130px;
  }
  .detail-hero {
    padding: 20px 0 35px;
    gap: 25px;
  }
  .detail-hero h1 {
    font-size: 2.6rem;
  }
  .detail-visual {
    min-height: 360px;
  }
  .detail-visual img {
    max-height: 330px;
  }
  .detail-panels {
    grid-template-columns: 1.2fr 1fr;
  }
  .about-hero {
    padding: 40px 0;
    gap: 24px;
  }
  .about-media {
    padding: 18px;
    min-height: 270px;
    gap: 8px;
  }
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
  .support-layout {
    grid-template-columns: 1fr 1.3fr;
  }
  .support-help {
    padding: 26px;
  }
  .contact-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 18px;
  }
  .panel {
    padding: 23px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .legal-layout {
    grid-template-columns: 190px 1fr;
    gap: 25px;
  }
  .privacy-cards,
  .game-support-grid {
    grid-template-columns: 1fr;
  }
  .privacy-cards .panel {
    display: block;
  }
  .contact-item {
    gap: 12px;
  }
  .contact-item .icon-disc {
    width: 38px;
    height: 38px;
  }
  .contact-item .icon-disc .icon {
    width: 20px;
  }
}
@media (max-width: 600px) {
  .container {
    width: calc(100% - 32px);
  }
  .home-hero {
    grid-template-columns: 1fr;
    padding: 36px 4px 18px;
    gap: 0;
  }
  .hero-copy h1 {
    font-size: clamp(2.4rem, 9vw, 3.4rem);
    margin: 17px 0;
  }
  .hero-copy .lead {
    font-size: 1rem;
    line-height: 1.7;
  }
  .hero-copy .actions {
    margin-top: 23px;
  }
  .hero-copy .button {
    font-size: 0.85rem;
    padding: 12px 18px;
  }
  .hero-footnote {
    margin-top: 18px;
  }
  .hero-art {
    height: 355px;
    transform: none;
    margin: 20px 0 0;
  }
  .hero-screen {
    border-width: 4px;
    border-radius: 17px;
  }
  .screen-main {
    width: 162px;
    left: calc(50% - 77px);
    top: 4px;
  }
  .screen-left {
    width: 122px;
    left: 4%;
    top: 61px;
  }
  .screen-right {
    width: 127px;
    right: 2%;
    top: 64px;
  }
  .hero-note {
    font-size: 0.67rem;
    bottom: 15px;
    padding: 8px 13px;
  }
  .eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }
  .section-heading {
    gap: 8px;
    margin-bottom: 15px;
  }
  .section-heading .text-link {
    font-size: 0.75rem;
  }
  .section-heading .text-link .icon {
    width: 15px;
  }
  .game-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .game-card,
  .featured .game-grid .game-card:last-child {
    grid-template-columns: 41% 59%;
    grid-column: auto;
  }
  .game-art,
  .featured .game-grid .game-card:last-child .game-art {
    min-height: 252px;
  }
  .game-copy,
  .featured .game-grid .game-card:last-child .game-copy {
    padding: 19px 16px;
  }
  .game-copy h3 {
    font-size: 1.13rem;
  }
  .game-copy p {
    font-size: 0.82rem;
  }
  .studio-preview {
    padding: 36px 0 16px;
    gap: 25px;
  }
  .studio-preview h2 {
    font-size: 2rem;
  }
  .preview-values {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .preview-values article {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 13px;
    padding: 17px;
  }
  .preview-values .icon-disc {
    grid-row: span 2;
    width: 44px;
    height: 44px;
    margin: 0;
  }
  .preview-values h3 {
    align-self: end;
    margin-bottom: 4px;
  }
  .preview-values p {
    font-size: 0.83rem;
  }
  .cta-band {
    margin: 28px 0 32px;
    padding: 25px 22px;
    border-radius: 14px;
  }
  .cta-band h2 {
    font-size: 1.45rem;
  }
  .cta-band p {
    font-size: 0.86rem;
  }
  .cta-band .actions {
    width: 100%;
    flex-wrap: wrap;
  }
  .cta-band .button {
    flex: 1;
    font-size: 0.8rem;
    padding: 11px 12px;
    white-space: nowrap;
  }
  .site-footer {
    padding-top: 33px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 29px 15px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
  .site-footer .email {
    font-size: 0.95rem;
  }
  .site-footer a:not(.brand) {
    min-height: 36px;
    margin: 3px 0;
    padding-block: 6px;
  }
  .footer-bottom {
    margin-top: 26px;
    font-size: 0.68rem;
  }
  .page-intro {
    padding-top: 36px;
    gap: 0;
  }
  .page-intro h1 {
    font-size: 2.6rem;
  }
  .page-intro .lead {
    font-size: 1rem;
  }
  .intro-motif {
    display: none;
  }
  .filter-row {
    gap: 7px;
  }
  .filter {
    padding: 10px 15px;
    font-size: 0.8rem;
  }
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .catalog-grid .game-card {
    grid-template-columns: 1fr;
  }
  .catalog-grid .game-art {
    height: 320px;
  }
  .catalog-grid .game-copy {
    padding: 23px;
  }
  .breadcrumbs {
    margin-top: 21px;
  }
  .breadcrumbs ol {
    font-size: 0.72rem;
  }
  .detail-hero {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .detail-copy h1 {
    font-size: 2.65rem;
    margin-top: 13px;
  }
  .detail-visual {
    min-height: 390px;
  }
  .detail-visual img {
    max-height: 360px;
  }
  .detail-panels {
    grid-template-columns: 1fr;
  }
  .gallery-shell {
    padding: 18px 14px;
  }
  .gallery-item {
    flex-basis: 145px;
  }
  .gallery-item img {
    height: 258px;
  }
  .gallery-controls {
    gap: 5px;
  }
  .gallery-head h2 {
    font-size: 1.15rem;
  }
  .media-note {
    font-size: 0.75rem;
  }
  .related {
    margin-top: 30px;
  }
  .panel {
    padding: 23px 20px;
  }
  .about-hero {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }
  .about-hero h1 {
    font-size: 2.65rem;
  }
  .about-media {
    min-height: 290px;
    padding: 26px 20px;
    margin-top: 10px;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .value-card {
    padding: 19px 15px;
  }
  .value-card h3 {
    font-size: 1rem;
  }
  .value-card p {
    font-size: 0.8rem;
  }
  .value-card .icon-disc {
    width: 43px;
    height: 43px;
    margin-bottom: 15px;
  }
  .process {
    gap: 22px;
    padding: 23px;
    grid-template-columns: 1fr;
  }
  .support-layout {
    grid-template-columns: 1fr;
  }
  .support-help {
    padding: 26px;
  }
  .support-links a {
    padding: 17px;
  }
  .faq-section summary {
    padding: 17px;
    font-size: 0.87rem;
  }
  .faq-section details p {
    padding: 14px 17px 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid .panel:first-child {
    order: 1;
  }
  .contact-grid .contact-form {
    order: 0;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .legal-nav {
    position: static;
    padding: 17px;
  }
  .legal-nav a {
    display: inline-flex;
    padding: 9px;
    font-size: 0.8rem;
    min-height: 44px;
    margin-right: 3px;
  }
  .legal-nav h2 {
    margin-bottom: 9px;
  }
  .legal-body h2 {
    font-size: 1.3rem;
  }
  .legal-body p,
  .legal-body li {
    font-size: 0.93rem;
  }
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .notice {
    padding: 18px;
    font-size: 0.83rem;
  }
  .not-found {
    padding: 65px 0;
  }
  .not-found h1 {
    font-size: 2.6rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
.hero-art {
  overflow: clip;
}
.gallery-item {
  flex: 1 0 160px;
}
.gallery-item img {
  height: 310px;
}
.icon-button:disabled {
  opacity: 0.45;
}
.featured .game-art,
.related .game-art {
  height: 285px;
  min-height: 285px;
}
.game-art.logo-art .art-label {
  font-size: 0.6rem;
}
@media (max-width: 850px) {
  html:not(.js) .nav-shell {
    flex-wrap: wrap;
  }
  html:not(.js) nav#primary-nav {
    display: flex;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    border: 0;
    box-shadow: none;
    gap: 14px;
  }
  html:not(.js) .menu-toggle {
    display: none;
  }
  html:not(.js) .nav-cta {
    margin: 0;
  }
}
@media (max-width: 600px) {
  .featured .game-art,
  .related .game-art {
    height: 255px;
    min-height: 255px;
  }
  .gallery-item {
    flex: 0 0 145px;
  }
  .gallery-item img {
    height: 258px;
  }
}
@media print {
  .site-header,
  .site-footer,
  .cta-band,
  .legal-nav,
  .toast {
    display: none;
  }
  .container {
    width: 100%;
  }
  .legal-layout {
    display: block;
  }
  body {
    background: white;
  }
}
