
:root {
  --paper: #f4f1ea;
  --ink: #151515;
  --muted: #686761;
  --red: #ef3325;
  --line: #d7d2c8;
  --lime: #d6ff38;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.page-width { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.eyebrow { margin: 0 0 18px; font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.red { color: var(--red); }

.site-header { height: 92px; background: rgba(244,241,234,.96); border-bottom: 1px solid rgba(21,21,21,.12); position: relative; z-index: 10; }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 182px; height: auto; display: block; }
.site-header nav { display: flex; gap: 34px; font-size: .9rem; font-weight: 700; }
.site-header nav a { position: relative; }
.site-header nav a::after { content: ""; height: 2px; width: 0; background: var(--red); position: absolute; left: 0; bottom: -8px; transition: width .2s ease; }
.site-header nav a:hover::after, .site-header nav a:focus-visible::after { width: 100%; }

.hero { min-height: 720px; position: relative; display: grid; align-items: end; overflow: hidden; background: #07130b; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,9,5,.92) 0%, rgba(3,9,5,.56) 47%, rgba(3,9,5,.12) 78%), linear-gradient(0deg, rgba(0,0,0,.42), transparent 50%); }
.hero-content { position: relative; z-index: 2; color: white; padding-block: 150px 88px; }
.hero h1 { max-width: 780px; margin: 0; font-size: clamp(3.7rem, 7.6vw, 7.3rem); line-height: .91; letter-spacing: -.065em; text-wrap: balance; }
.hero-copy { max-width: 560px; margin: 28px 0 34px; font-size: 1.2rem; line-height: 1.6; color: rgba(255,255,255,.86); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 0 24px; border: 1px solid transparent; font-size: .82rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: white; }
.button-primary:hover { background: #c92218; }

.game-section { display: grid; grid-template-columns: 1.12fr .88fr; gap: 70px; align-items: center; min-height: 760px; padding-block: 110px; }
.game-copy h2, .manifesto h2, .section-heading h2, .faq-section h2, .closing-cta h2, .page-hero h1, .legal-page h1 { margin: 0; font-size: clamp(2.7rem, 5vw, 5.2rem); line-height: .98; letter-spacing: -.055em; }
.game-copy .lead { max-width: 650px; margin: 28px 0 20px; font-size: 1.42rem; line-height: 1.45; font-weight: 700; }
.game-copy > p:not(.eyebrow):not(.lead) { max-width: 640px; color: var(--muted); line-height: 1.75; }
.store-links { display: flex; gap: 12px; margin: 32px 0 20px; }
.store-links img { display: block; width: 168px; height: auto; }
.rating { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.rating span { color: var(--red); letter-spacing: .12em; margin-right: 8px; }
.game-art { min-height: 560px; display: grid; place-items: center; position: relative; }
.game-art img { width: min(440px, 90%); height: auto; position: relative; z-index: 1; border-radius: 22%; box-shadow: 0 30px 90px rgba(0,0,0,.28); transform: rotate(2deg); }
.art-halo { position: absolute; inset: 7% 2%; border-radius: 50%; background: var(--lime); transform: rotate(-8deg); }

.manifesto { background: var(--ink); color: white; padding: 120px 0; }
.manifesto-grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: 60px; }
.manifesto h2 { font-size: clamp(4rem, 8vw, 8rem); }
.manifesto-grid > div p { width: min(640px, 100%); margin: 36px 0 0; color: #b8b8b4; font-size: 1.15rem; line-height: 1.75; }

.gallery-section { padding-block: 120px; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 60px; margin-bottom: 54px; }
.section-heading h2 { max-width: 680px; }
.section-heading > p { color: var(--muted); line-height: 1.7; max-width: 380px; justify-self: end; }
.gallery-grid { display: grid; grid-template-columns: .8fr 1.5fr .8fr; grid-template-rows: 480px; gap: 18px; }
.gallery-card { margin: 0; overflow: hidden; position: relative; background: #ddd; }
.gallery-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-card:hover img { transform: scale(1.035); }

.faq-section { background: var(--lime); padding: 120px 0; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.faq-section h2 { max-width: 520px; font-size: clamp(3rem, 5vw, 5.3rem); }
.faq-intro { color: #42423d; line-height: 1.7; max-width: 480px; margin: 30px 0 24px; }
.text-link { font-weight: 800; border-bottom: 2px solid var(--ink); padding-bottom: 5px; }
.faq-list { border-top: 1px solid rgba(0,0,0,.25); }
.faq-list details { border-bottom: 1px solid rgba(0,0,0,.25); padding: 0; }
.faq-list summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; padding: 25px 0; font-size: 1.08rem; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 1.5rem; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 620px; color: #494942; line-height: 1.7; margin: -5px 45px 25px 0; }

.closing-cta { padding: 120px 0; background: var(--paper); text-align: center; }
.closing-cta h2 { font-size: clamp(4rem, 9vw, 8.8rem); }
.closing-actions { display: flex; justify-content: center; gap: 12px; margin-top: 38px; }
.button-dark { background: var(--ink); color: white; }
.button-ghost { border-color: var(--ink); }

.site-footer { background: var(--ink); color: white; padding: 72px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: start; padding-bottom: 70px; }
.footer-top img { width: 190px; height: auto; }
.footer-top p { margin: 8px 0 0; color: #aaa; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; gap: 15px; font-weight: 700; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom { padding-top: 24px; border-top: 1px solid #3b3b3b; display: flex; justify-content: space-between; color: #7f7f7f; font-size: .77rem; }

.page-hero { min-height: 460px; display: grid; align-items: end; padding-block: 100px 70px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(4rem, 9vw, 8.5rem); }
.page-hero p:last-child { max-width: 650px; color: var(--muted); line-height: 1.7; font-size: 1.1rem; margin: 26px 0 0; }
.contact-section { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; padding-block: 110px 130px; }
.contact-card { background: var(--ink); color: white; padding: 54px; }
.contact-card h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); overflow-wrap: anywhere; }
.contact-card > p:not(.eyebrow) { color: #aaa; line-height: 1.7; margin: 22px 0 30px; }
.support-list > div { display: grid; grid-template-columns: 50px 1fr; column-gap: 22px; padding: 8px 0 30px; margin-bottom: 28px; border-bottom: 1px solid var(--line); }
.support-list span { grid-row: 1 / 3; color: var(--red); font-size: .78rem; font-weight: 800; }
.support-list h3 { margin: 0; font-size: 1.35rem; }
.support-list p { margin: 9px 0 0; color: var(--muted); line-height: 1.6; }

.legal-page { max-width: 880px; padding-block: 100px 130px; }
.legal-page h1 { margin-bottom: 12px; }
.legal-updated { color: var(--muted); padding-bottom: 38px; border-bottom: 1px solid var(--line); }
.legal-page h2 { font-size: 1.5rem; margin: 48px 0 14px; }
.legal-page h3 { font-size: 1.05rem; margin: 28px 0 8px; }
.legal-page p { color: #4f4f4b; line-height: 1.8; }
.legal-page a { text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 4px; }

@media (max-width: 850px) {
  .page-width { width: min(100% - 30px, 680px); }
  .site-header { height: 76px; }
  .brand img { width: 146px; }
  .site-header nav { gap: 18px; font-size: .78rem; }
  .site-header nav a:nth-child(2) { display: none; }
  .hero { min-height: 650px; }
  .hero-content { padding-block: 120px 58px; }
  .hero h1 { font-size: clamp(3.2rem, 15vw, 5.5rem); }
  .hero-copy { font-size: 1rem; }
  .game-section { grid-template-columns: 1fr; gap: 32px; padding-block: 80px; }
  .game-art { min-height: 390px; grid-row: 1; }
  .game-art img { width: min(330px, 78%); }
  .manifesto { padding: 82px 0; }
  .manifesto-grid, .section-heading, .faq-grid, .contact-section { grid-template-columns: 1fr; gap: 42px; }
  .manifesto h2 { font-size: clamp(3.7rem, 17vw, 6rem); }
  .gallery-section { padding-block: 82px; }
  .section-heading > p { justify-self: start; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 270px; }
  .gallery-card.wide { grid-column: 1 / 3; grid-row: 1; }
  .faq-section { padding: 82px 0; }
  .faq-section h2 { font-size: clamp(3rem, 14vw, 5rem); }
  .closing-cta { padding: 86px 0; }
  .closing-actions { flex-direction: column; align-items: stretch; }
  .footer-top { grid-template-columns: 1fr; padding-bottom: 44px; }
  .footer-links { align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .page-hero { min-height: 390px; padding-block: 80px 55px; }
  .contact-section { padding-block: 75px 90px; }
  .contact-card { padding: 34px 26px; }
  .legal-page { padding-block: 70px 90px; }
}

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