:root {
  --bg: #100706;
  --bg-soft: #1a0c09;
  --panel: rgba(42, 17, 11, .86);
  --panel-solid: #28100b;
  --text: #fff8f3;
  --muted: #d9b9aa;
  --line: rgba(255, 143, 77, .2);
  --orange: #ff7a18;
  --orange-2: #ff9b33;
  --red: #ef2b23;
  --red-dark: #a91412;
  --gold: #ffd36a;
  --green: #52d28c;
  --shadow: 0 22px 70px rgba(0, 0, 0, .35);
  --radius: 22px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 88, 22, .18), transparent 26rem),
    radial-gradient(circle at 90% 12%, rgba(239, 43, 35, .15), transparent 30rem),
    linear-gradient(180deg, #0e0605, #160807 50%, #0c0504);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input { font: inherit; }
.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 999; padding: 10px 14px; background: white; color: black; border-radius: 10px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(12, 5, 4, .82);
  backdrop-filter: blur(16px);
}
.header-row { min-height: 76px; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 178px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 7px; margin-left: auto; }
.main-nav > a { padding: 10px 12px; color: var(--muted); font-size: 14px; font-weight: 700; border-radius: 10px; }
.main-nav > a:hover, .main-nav > a[aria-current="page"] { color: white; background: rgba(255, 122, 24, .1); }
.header-actions { display: flex; gap: 8px; }
.menu-button { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--panel); color: white; border-radius: 12px; cursor: pointer; }

.btn { display: inline-flex; justify-content: center; align-items: center; gap: 8px; min-height: 46px; padding: 11px 18px; border: 1px solid transparent; border-radius: 13px; font-weight: 850; letter-spacing: .01em; transition: .2s ease; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #1b0704; background: linear-gradient(135deg, var(--gold), var(--orange)); box-shadow: 0 12px 34px rgba(255, 122, 24, .24); }
.btn-secondary { color: white; background: linear-gradient(135deg, var(--orange), var(--red)); box-shadow: 0 12px 34px rgba(239, 43, 35, .2); }
.btn-ghost { border-color: var(--line); color: white; background: rgba(255,255,255,.025); }
.btn-small { min-height: 40px; padding: 8px 14px; font-size: 13px; }

.hero { padding: 72px 0 48px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--gold); text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: linear-gradient(90deg, var(--orange), var(--red)); }
h1 { margin: 18px 0 20px; font-size: clamp(42px, 6vw, 76px); line-height: 1.03; letter-spacing: -.05em; }
h1 .gradient, .gradient-text { background: linear-gradient(90deg, var(--gold), var(--orange), #ff5145); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy { max-width: 650px; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 32px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 20px; color: #f2caba; font-size: 13px; font-weight: 700; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row span::before { content: "✓"; color: var(--green); }
.hero-visual { position: relative; }
.hero-visual::before { content:""; position:absolute; inset: 10% 5%; border-radius: 50%; background: rgba(255, 89, 26, .24); filter: blur(65px); }
.hero-visual img { position: relative; width: min(100%, 560px); margin-inline: auto; filter: drop-shadow(0 30px 45px rgba(0,0,0,.45)); }

.stats { padding: 10px 0 62px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: rgba(35, 13, 9, .65); box-shadow: var(--shadow); }
.stat { padding: 24px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: 28px; line-height: 1.2; }
.stat span { color: var(--muted); font-size: 13px; }

.section { padding: 84px 0; }
.section-alt { border-block: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,122,24,.035), rgba(239,43,35,.025)); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 30px; }
.section-head > div { max-width: 720px; }
.kicker { color: var(--orange-2); text-transform: uppercase; letter-spacing: .14em; font-weight: 900; font-size: 12px; }
h2 { margin: 8px 0 10px; font-size: clamp(30px, 4vw, 48px); line-height: 1.15; letter-spacing: -.035em; }
h3 { margin: 0 0 8px; line-height: 1.35; }
.section-head p, .lead, .muted { color: var(--muted); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(49,18,12,.92), rgba(24,9,7,.92)); box-shadow: 0 16px 45px rgba(0,0,0,.18); }
.card-number { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 13px; color: #1d0704; background: linear-gradient(135deg, var(--gold), var(--orange)); font-weight: 950; }
.card p { margin: 0; color: var(--muted); }

.catalog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.game-card { position: relative; min-height: 230px; overflow: hidden; padding: 22px; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid var(--line); border-radius: 20px; background: #24100b; }
.game-card::before { content:""; position: absolute; inset: 0; background:
  radial-gradient(circle at 25% 22%, rgba(255,210,90,.72) 0 4%, transparent 5%),
  radial-gradient(circle at 68% 28%, rgba(255,90,42,.7) 0 7%, transparent 8%),
  radial-gradient(circle at 42% 55%, rgba(255,145,32,.4), transparent 28%),
  linear-gradient(145deg, rgba(255,125,25,.22), rgba(160,17,20,.45));
  transition: transform .35s ease;
}
.game-card:nth-child(2n)::before { background: radial-gradient(circle at 70% 30%, rgba(255,210,90,.6), transparent 22%), linear-gradient(145deg, rgba(255,83,28,.44), rgba(96,9,10,.7)); }
.game-card:nth-child(3n)::before { background: radial-gradient(circle at 35% 25%, rgba(255,164,52,.62), transparent 25%), linear-gradient(145deg, rgba(245,47,30,.46), rgba(26,8,6,.85)); }
.game-card:hover::before { transform: scale(1.08); }
.game-card > * { position: relative; z-index: 1; }
.game-card .tag { align-self: flex-start; margin-bottom: auto; padding: 6px 9px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(0,0,0,.25); font-size: 11px; font-weight: 850; }
.game-card h3 { font-size: 20px; }
.game-meta { display: flex; justify-content: space-between; gap: 8px; color: #ffd8c4; font-size: 12px; }

.screenshot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.screenshot { padding: 18px; border: 1px solid var(--line); border-radius: 26px; background: rgba(39,14,10,.75); }
.screenshot img { border-radius: 18px; }
.screenshot p { margin: 14px 2px 2px; color: var(--muted); font-size: 14px; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(40,15,10,.75); }
.review::before { content: "“"; position: absolute; top: 10px; right: 20px; color: rgba(255,128,38,.25); font-size: 74px; font-family: Georgia, serif; }
.review p { color: var(--muted); }
.review footer { margin-top: 20px; color: #ffd5c1; font-size: 13px; font-weight: 800; }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.info-box { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(37,13,9,.72); }
.detail-list { display: grid; gap: 0; margin: 0; }
.detail-list div { display: grid; grid-template-columns: 180px 1fr; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.detail-list div:last-child { border-bottom: 0; }
.detail-list dt { color: var(--muted); }
.detail-list dd { margin: 0; font-weight: 800; }
.hash-box { display: flex; gap: 10px; align-items: center; margin-top: 18px; padding: 12px; border: 1px dashed rgba(255,151,77,.35); border-radius: 14px; background: rgba(0,0,0,.18); }
.hash-box code { overflow-wrap: anywhere; color: #ffd7b4; font-size: 12px; }

.release { display: grid; grid-template-columns: 120px 1fr auto; gap: 22px; align-items: start; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(42,15,10,.7); }
.release + .release { margin-top: 14px; }
.release-version { padding: 16px; text-align: center; border-radius: 15px; background: linear-gradient(135deg, rgba(255,151,49,.17), rgba(239,43,35,.18)); }
.release-version strong { display: block; font-size: 24px; }
.release ul { margin: 12px 0 0; padding-left: 20px; color: var(--muted); }

.cta { padding: 76px 0; }
.cta-box { padding: 52px; text-align: center; border: 1px solid rgba(255,160,72,.3); border-radius: 30px; background:
  radial-gradient(circle at 50% 0%, rgba(255,190,90,.18), transparent 35%),
  linear-gradient(145deg, rgba(122,29,13,.65), rgba(40,10,8,.9)); box-shadow: var(--shadow); }
.cta-box p { max-width: 720px; margin: 0 auto 24px; color: #f2c5b2; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

.page-hero { padding: 68px 0 44px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(38px, 5vw, 62px); }
.breadcrumb { color: var(--muted); font-size: 13px; }
.breadcrumb a { color: #ffc890; }
.content { max-width: 850px; }
.content h2 { margin-top: 44px; font-size: 30px; }
.content h3 { margin-top: 28px; }
.content p, .content li { color: var(--muted); }
.notice { padding: 18px 20px; border-left: 4px solid var(--orange); border-radius: 0 14px 14px 0; background: rgba(255,122,24,.09); color: #ffd7c3; }
.steps { counter-reset: item; display: grid; gap: 16px; }
.step { position: relative; padding: 24px 24px 24px 82px; border: 1px solid var(--line); border-radius: 18px; background: rgba(40,14,10,.72); }
.step::before { counter-increment: item; content: counter(item); position: absolute; left: 22px; top: 22px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: #1b0704; background: linear-gradient(135deg, var(--gold), var(--orange)); font-weight: 950; }

.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: rgba(38,13,9,.72); overflow: hidden; }
.faq-question { width: 100%; padding: 20px 22px; display: flex; justify-content: space-between; gap: 18px; color: white; border: 0; background: transparent; text-align: left; font-weight: 850; cursor: pointer; }
.faq-question::after { content: "+"; color: var(--orange-2); font-size: 22px; }
.faq-item.is-open .faq-question::after { content: "−"; }
.faq-answer { display: none; padding: 0 22px 20px; color: var(--muted); }
.faq-item.is-open .faq-answer { display: block; }

.site-footer { padding: 46px 0 22px; border-top: 1px solid var(--line); background: rgba(8,3,3,.7); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.footer-brand img { width: 190px; }
.footer-brand p { max-width: 500px; color: var(--muted); }
.footer-links h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .12em; color: var(--orange-2); }
.footer-links a { display: block; margin: 9px 0; color: var(--muted); font-size: 14px; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line); color: #ad8f83; font-size: 12px; }
.age-badge { display: inline-grid; place-items: center; width: 34px; height: 34px; border: 2px solid #ff7047; border-radius: 50%; color: #ff9e7c; font-weight: 950; }

@media (max-width: 980px) {
  .menu-button { display: grid; place-items: center; }
  .main-nav { position: fixed; left: 16px; right: 16px; top: 84px; display: none; padding: 12px; flex-direction: column; align-items: stretch; border: 1px solid var(--line); border-radius: 16px; background: #1b0a08; box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .header-actions { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 520px; margin-inline: auto; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .card-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .screenshot-grid { gap: 14px; }
  .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .brand img { width: 150px; }
  .hero { padding-top: 42px; }
  .hero-grid { gap: 28px; }
  .hero-copy { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .section { padding: 62px 0; }
  .section-head { align-items: start; flex-direction: column; }
  .card-grid, .review-grid, .catalog-grid, .screenshot-grid { grid-template-columns: 1fr; }
  .release { grid-template-columns: 1fr; }
  .release-version { text-align: left; }
  .detail-list div { grid-template-columns: 1fr; gap: 4px; }
  .cta-box { padding: 34px 20px; }
  .cta-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; }
}
