:root {
  --ink: #050505;
  --ink-soft: #101010;
  --panel: #151515;
  --panel-strong: #202020;
  --line: #3a3638;
  --line-bright: #71686b;
  --text: #f6f0e6;
  --muted: #b9b1ac;
  --muted-dark: #8b8380;
  --red: #ef1839;
  --red-dark: #a60e28;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --radius: 22px;
  color-scheme: dark;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(239, 24, 57, 0.14), transparent 30rem),
    radial-gradient(circle at 92% 22%, rgba(246, 240, 230, 0.05), transparent 28rem),
    linear-gradient(145deg, #050505 0%, #0a090a 48%, #12090c 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.3;
  background:
    radial-gradient(circle at 22% 18%, rgba(239, 24, 57, 0.12), transparent 14rem),
    radial-gradient(circle at 76% 32%, rgba(246, 240, 230, 0.06), transparent 17rem);
}

::selection { color: var(--text); background: var(--red); }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(246, 240, 230, 0.16);
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(18px);
}

.nav-wrap, .container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.nav-wrap {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(239, 24, 57, 0.62);
  border-radius: 50%;
  object-fit: cover;
  background: var(--ink);
  box-shadow: 0 0 22px rgba(239, 24, 57, 0.14);
}

.brand-name span { color: var(--red); }

.site-nav { display: flex; align-items: center; gap: 7px; }

.site-nav a {
  padding: 9px 13px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a:hover, .site-nav a[aria-current="page"] {
  border-color: rgba(239, 24, 57, 0.48);
  color: var(--text);
  background: rgba(239, 24, 57, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: var(--panel);
  cursor: pointer;
}

.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block;
  width: 17px;
  height: 2px;
  margin: auto;
  border-radius: 4px;
  background: currentColor;
  content: "";
}

.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(4px); }

.hero, .page-hero { padding: 94px 0 78px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(300px, 0.87fr);
  align-items: center;
  gap: 74px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before { width: 28px; height: 1px; background: var(--red); content: ""; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.04em; }
h1 { max-width: 700px; margin-bottom: 24px; font-size: clamp(3.1rem, 7vw, 6rem); font-weight: 900; }
h2 { margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 850; }
h3 { margin-bottom: 10px; font-size: 1.25rem; font-weight: 800; }

.gradient-text {
  color: var(--red);
  background: none;
  -webkit-text-fill-color: var(--red);
}

.lead { max-width: 600px; margin-bottom: 30px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.28rem); }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }

.button {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid var(--red);
  border-radius: 5px;
  color: var(--ink);
  background: var(--red);
  box-shadow: 0 9px 25px rgba(239, 24, 57, 0.14);
  font-size: 0.92rem;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); box-shadow: 0 13px 32px rgba(239, 24, 57, 0.28); }

.button.secondary {
  border-color: var(--line-bright);
  color: var(--text);
  background: rgba(20, 20, 20, 0.76);
  box-shadow: none;
}

.button.secondary:hover { border-color: var(--red); background: rgba(239, 24, 57, 0.08); }

.button-disabled {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  padding: 0 17px;
  border: 1px dashed var(--line-bright);
  border-radius: 5px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.micro-note { margin: 14px 0 0; color: var(--muted-dark); font-size: 0.83rem; }

.visual-shell {
  position: relative;
  width: min(100%, 410px);
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.visual-frame { position: relative; overflow: hidden; aspect-ratio: 2 / 3; border: 0; border-radius: 0; background: var(--ink); }

.game-screen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section { padding: 78px 0; }
.section-kicker { margin-bottom: 12px; color: var(--red); font-size: 0.74rem; font-weight: 850; letter-spacing: 0.16em; text-transform: uppercase; }

.content-panel, .contact-card, .status-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(28, 28, 28, 0.9), rgba(12, 12, 12, 0.92));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
}

.content-panel p, .contact-card p, .status-card p { color: var(--muted); }
.content-panel p:last-child, .contact-card p:last-child, .status-card p:last-child { margin-bottom: 0; }

.game-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 42px;
  padding: 34px;
  border: 1px solid rgba(239, 24, 57, 0.48);
  border-radius: 6px;
  background: radial-gradient(circle at 92% 20%, rgba(239, 24, 57, 0.14), transparent 13rem), linear-gradient(135deg, rgba(35, 13, 17, 0.9), rgba(14, 14, 14, 0.94));
}

.game-strip-logo { width: min(100%, 330px); margin-bottom: 18px; }
.game-strip p { max-width: 610px; margin-bottom: 22px; color: var(--muted); }
.data-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.data-point { padding: 17px 16px; border-left: 2px solid var(--red); background: rgba(5, 5, 5, 0.46); }
.data-point:nth-child(2) { border-color: var(--line-bright); }
.data-point:nth-child(3) { border-color: var(--red); }
.data-point strong { display: block; margin-bottom: 4px; font-size: 1.1rem; }
.data-point span { color: var(--muted-dark); font-size: 0.77rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }

.page-hero { padding-bottom: 40px; }
.page-hero h1 { max-width: 820px; font-size: clamp(2.8rem, 6vw, 5.1rem); }
.page-hero .lead { max-width: 700px; }

.breadcrumb { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 23px; color: var(--muted-dark); font-size: 0.85rem; font-weight: 750; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--line-bright); }

.game-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr); align-items: start; gap: 54px; }
.game-copy { padding-top: 6px; }
.game-copy .game-logo { width: min(100%, 370px); margin-bottom: 24px; }
.game-copy h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.feature-list { display: grid; gap: 12px; margin: 30px 0; padding: 0; list-style: none; }
.feature-list li { display: flex; align-items: start; gap: 12px; color: var(--muted); }
.feature-list li::before { flex: 0 0 auto; width: 9px; height: 9px; margin-top: 8px; border-radius: 2px; background: var(--red); box-shadow: 0 0 12px rgba(239, 24, 57, 0.48); content: ""; transform: rotate(45deg); }
.game-visual { width: min(100%, 360px); margin: 0 auto; }
.game-visual .visual-shell { width: 100%; }

.availability { margin-top: 24px; padding: 17px 18px; border: 1px dashed var(--line-bright); border-radius: 6px; color: var(--muted); background: rgba(7, 7, 7, 0.48); font-size: 0.9rem; }
.availability strong { display: block; margin-bottom: 4px; color: var(--text); }
.availability strong::before { display: inline-block; width: 8px; height: 8px; margin: 0 8px 1px 0; border-radius: 50%; background: var(--red); content: ""; }

.support-grid, .privacy-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: start; gap: 18px; }
.contact-card, .status-card, .content-panel { padding: 28px; }
.contact-card { position: sticky; top: 105px; }
.contact-card h2 { font-size: 2rem; }
.contact-detail { display: block; margin: 23px 0; padding: 16px; border: 1px solid rgba(239, 24, 57, 0.34); border-radius: 6px; color: var(--red); background: rgba(239, 24, 57, 0.07); font-weight: 800; overflow-wrap: anywhere; }
.contact-detail:hover { border-color: var(--red); background: rgba(239, 24, 57, 0.12); }
.faq-list { display: grid; gap: 12px; }
.faq-item { padding: 21px 22px; border: 1px solid var(--line); border-radius: 6px; background: rgba(20, 20, 20, 0.72); }
.faq-item h3 { margin-bottom: 8px; font-size: 1.05rem; letter-spacing: -0.02em; }
.faq-item p { margin-bottom: 0; color: var(--muted); }

.prose h2 { margin-top: 32px; font-size: 1.55rem; letter-spacing: -0.025em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 24px; font-size: 1.05rem; letter-spacing: -0.015em; }
.prose ul { padding-left: 22px; color: var(--muted); }
.prose li + li { margin-top: 7px; }
.prose strong { color: var(--text); }
.notice { margin-bottom: 22px; padding: 15px 17px; border-left: 3px solid var(--red); color: var(--muted); background: rgba(239, 24, 57, 0.07); }

.site-footer { margin-top: 78px; padding: 35px 0 42px; border-top: 1px solid rgba(246, 240, 230, 0.16); }
.footer-grid { display: flex; align-items: start; justify-content: space-between; gap: 30px; }
.footer-grid p { max-width: 420px; margin: 11px 0 0; color: var(--muted-dark); font-size: 0.88rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: end; gap: 16px; color: var(--muted); font-size: 0.86rem; font-weight: 750; }
.footer-links a:hover { color: var(--red); }
.copyright { margin: 26px 0 0; color: var(--muted-dark); font-size: 0.78rem; }
.reveal { animation: reveal 650ms ease both; }
@keyframes reveal { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 860px) {
  .nav-wrap, .container { width: min(100% - 30px, 680px); }
  .nav-wrap { min-height: 68px; }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: 68px; right: 15px; left: 15px; display: none; padding: 9px; border: 1px solid var(--line); border-radius: 6px; background: rgba(8, 8, 8, 0.98); box-shadow: var(--shadow); }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 12px 14px; border-radius: 4px; }
  .hero, .game-layout, .support-grid, .privacy-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero, .page-hero { padding-top: 66px; }
  .visual-shell, .game-visual { width: min(100%, 370px); margin: 0 auto; }
  .game-strip { grid-template-columns: 1fr; gap: 26px; padding: 26px; }
  .contact-card { position: static; }
  .footer-grid { display: grid; }
  .footer-links { justify-content: start; }
}

@media (max-width: 520px) {
  .nav-wrap, .container { width: min(100% - 24px, 680px); }
  h1 { font-size: clamp(2.75rem, 15vw, 4.2rem); }
  .hero, .page-hero { padding-top: 52px; padding-bottom: 45px; }
  .section { padding: 50px 0; }
  .data-row { grid-template-columns: 1fr; }
  .contact-card, .status-card, .content-panel { padding: 22px; }
}

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