:root {
  --cyan: #19e8f2;
  --cyan-2: #6af6ff;
  --cyan-deep: #00b8c4;
  --gold: #f5c84c;
  --ink: #04101c;
  --ink-2: #07182a;
  --ink-3: #0b2238;
  --panel: rgba(8, 28, 48, 0.88);
  --text: #e8f6fb;
  --muted: #8fb4c6;
  --line: rgba(25, 232, 242, 0.18);
  --ok: #19e8f2;
  --radius: 16px;
  --shadow: 0 22px 50px rgba(0, 10, 24, 0.55);
  --font-display: "Orbitron", "Segoe UI", sans-serif;
  --font-body: "Outfit", "Segoe UI", system-ui, sans-serif;
  --max: 1140px;
  --header-h: 64px;
  --download-bar-h: 74px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.68;
  color: var(--text);
  background:
    radial-gradient(780px 420px at 90% -8%, rgba(25, 232, 242, 0.16), transparent 58%),
    radial-gradient(640px 360px at 0% 18%, rgba(245, 200, 76, 0.07), transparent 55%),
    linear-gradient(180deg, #03111e 0%, var(--ink) 42%, #020b14 100%);
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
  padding-bottom: calc(var(--download-bar-h) + env(safe-area-inset-bottom, 0px));
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(25, 232, 242, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 232, 242, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

body.nav-open {
  overflow: hidden;
  height: 100%;
  touch-action: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--cyan-2);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #fff;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f4fdff;
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(1.5rem, 6vw, 2.7rem);
  margin: 0 0 0.75rem;
}

h2 {
  font-size: clamp(1.2rem, 4.3vw, 1.75rem);
  margin: 1.8rem 0 0.75rem;
}

h3 {
  font-size: 1.02rem;
  margin: 1.3rem 0 0.5rem;
  color: var(--cyan-2);
}

p {
  margin: 0 0 1rem;
  color: #d7eef4;
  overflow-wrap: break-word;
}

ul,
ol {
  margin: 0 0 1.2rem;
  padding-left: 1.15rem;
  color: #d7eef4;
}

li {
  margin-bottom: 0.45rem;
}

code {
  font-size: 0.88em;
  color: var(--gold);
  background: rgba(245, 200, 76, 0.08);
  padding: 0.08rem 0.35rem;
  border-radius: 6px;
}

.container {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(4, 16, 28, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  min-width: 0;
  flex: 1;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(25, 232, 242, 0.45), 0 0 18px rgba(25, 232, 242, 0.25);
}

.brand span {
  display: inline;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--ink-3);
  color: var(--cyan);
  cursor: pointer;
  padding: 0;
  z-index: 220;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2.5px 0;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: calc(100dvh - var(--header-h));
  height: calc(100vh - var(--header-h));
  z-index: 250;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
  padding: 1rem 1rem 1.25rem;
  background: #03111e;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  color: #eaf8fc;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(11, 34, 56, 0.7);
  text-align: center;
}

.site-nav a:hover,
.site-nav a.active {
  color: #04101c;
  background: var(--cyan);
  border-color: var(--cyan);
}

.site-nav .nav-cta {
  margin-top: 0.35rem;
  border: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: translateY(1px);
}

.btn-download {
  color: #031018 !important;
  background: linear-gradient(135deg, var(--cyan-2), var(--cyan-deep));
  box-shadow: 0 10px 28px rgba(25, 232, 242, 0.32);
}

.btn-download:hover {
  background: linear-gradient(135deg, #9cffff, var(--cyan));
  color: #031018 !important;
}

.btn-gold {
  color: #1a1404 !important;
  background: linear-gradient(135deg, #ffe08a, var(--gold));
  box-shadow: 0 10px 28px rgba(245, 200, 76, 0.24);
}

.btn-outline {
  color: var(--cyan) !important;
  background: transparent;
  border: 1px solid var(--line);
}

.btn-outline:hover {
  background: rgba(25, 232, 242, 0.08);
  color: #fff !important;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1.1rem 0 0.5rem;
}

.cta-row .btn {
  width: 100%;
}

.download-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 300;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, #04101c, #03111e);
  border-top: 1px solid var(--line);
  display: block;
  box-sizing: border-box;
}

.download-bar .btn {
  width: 100%;
  min-height: 50px;
  font-size: 0.95rem;
}

body.nav-open .download-bar {
  display: none;
}

.hero {
  position: relative;
  padding: 1.45rem 0 1.7rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 16, 28, 0.88) 0%, rgba(4, 16, 28, 0.82) 55%, rgba(4, 16, 28, 0.96) 100%),
    url("../img/s1.jpg") center/cover no-repeat;
  z-index: -1;
}

.hero-grid {
  display: grid;
  gap: 1.15rem;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  margin-bottom: 0.75rem;
  background: rgba(25, 232, 242, 0.08);
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 9.4vw, 3.5rem);
  color: var(--cyan);
  margin: 0 0 0.45rem;
  text-shadow: 0 0 28px rgba(25, 232, 242, 0.35);
  animation: rise 0.8s ease both;
  line-height: 1.08;
}

.hero-sub {
  font-size: 0.98rem;
  max-width: 38rem;
  color: #d7eef4;
  margin-inline: auto;
  animation: rise 0.9s ease 0.08s both;
}

.hero-visual {
  order: -1;
  width: min(168px, 46vw);
  animation: floatIn 1s ease 0.1s both;
}

.phone-frame {
  position: relative;
  padding: 8px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(25, 232, 242, 0.45), rgba(25, 232, 242, 0.08));
  box-shadow: var(--shadow), 0 0 0 1px rgba(25, 232, 242, 0.28);
}

.phone-frame img {
  width: 100%;
  border-radius: 22px;
}

.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.95rem;
  justify-content: center;
  animation: rise 1s ease 0.16s both;
}

.chip {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--cyan-2);
  background: rgba(25, 232, 242, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.32rem 0.65rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0.3rem 0 0;
}

.stat {
  padding: 0.9rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(7, 24, 42, 0.72);
  text-align: center;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  color: var(--cyan);
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.78rem;
}

.section {
  padding: 1.75rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(11, 34, 56, 0.55), transparent);
  border-block: 1px solid var(--line);
}

.lead {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 46rem;
}

.info-table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: block;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
}

.info-table tbody {
  display: table;
  width: 100%;
  min-width: 300px;
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  vertical-align: top;
}

.info-table th {
  width: 38%;
  color: var(--cyan-2);
  font-weight: 700;
  background: rgba(25, 232, 242, 0.05);
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.shots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 1.1rem 0;
}

.shots img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #07182a;
}

.feature-list,
.bonus-list,
.review-grid,
.game-grid {
  display: grid;
  gap: 0.85rem;
  margin: 1.1rem 0;
}

.feature,
.bonus-card,
.review-card,
.game-card {
  padding: 1rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 24, 42, 0.78);
}

.feature h3,
.bonus-card h3,
.game-card h3 {
  margin-top: 0;
}

.bonus-card .amount {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.15rem;
  margin: 0.15rem 0 0.4rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}

.review-card cite {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  font-style: normal;
  font-size: 0.82rem;
}

.article-grid {
  display: grid;
  gap: 0.85rem;
}

.article-card {
  display: block;
  padding: 1.05rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 24, 42, 0.8);
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.article-card:hover {
  border-color: rgba(25, 232, 242, 0.55);
  transform: translateY(-2px);
  color: inherit;
}

.article-card h3 {
  margin: 0 0 0.35rem;
  color: var(--cyan-2);
  font-size: 1.02rem;
}

.article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.prose {
  max-width: 780px;
}

.prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
  overflow-wrap: anywhere;
}

.breadcrumb a {
  color: var(--muted);
}

.page-hero {
  padding: 1.35rem 0 0.35rem;
}

.page-hero h1 {
  color: var(--cyan);
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 24, 42, 0.78);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: #f4fdff;
  font: inherit;
  font-weight: 700;
  padding: 0.95rem 1rem;
  cursor: pointer;
}

.faq-a {
  display: none;
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.faq-item.is-open .faq-a {
  display: block;
}

.site-footer {
  margin-top: 1.5rem;
  padding: 2rem 0 1.5rem;
  border-top: 1px solid var(--line);
  background: #020b14;
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.footer-grid h3 {
  margin: 0 0 0.5rem;
  font-size: 0.98rem;
}

.footer-grid a {
  display: block;
  color: var(--muted);
  padding: 0.28rem 0;
  font-size: 0.9rem;
}

.footer-note {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 720px) {
  :root {
    --header-h: 72px;
  }

  body {
    font-size: 17px;
    padding-bottom: 0;
  }

  .container {
    width: min(100% - 2rem, var(--max));
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex !important;
    position: static;
    top: auto;
    left: auto;
    width: auto;
    max-width: none;
    height: auto;
    flex-direction: row;
    align-items: center;
    gap: 0.2rem;
    padding: 0;
    background: transparent;
    overflow: visible;
    z-index: auto;
  }

  .site-nav a {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 600;
    padding: 0.42rem 0.58rem;
    border-radius: 999px;
    border: none;
    background: transparent;
    text-align: left;
  }

  .site-nav a:hover,
  .site-nav a.active {
    color: #04101c;
    background: var(--cyan);
  }

  .site-nav .nav-cta {
    margin-top: 0;
    padding: 0.68rem 1rem;
  }

  .brand {
    font-size: 1.05rem;
    flex: 0 0 auto;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .download-bar {
    display: none !important;
  }

  .cta-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cta-row .btn {
    width: auto;
  }

  .hero {
    padding: clamp(2rem, 5vw, 3.5rem) 0 2.5rem;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(4, 16, 28, 0.94) 0%, rgba(4, 16, 28, 0.7) 48%, rgba(4, 16, 28, 0.28) 100%),
      url("../img/s1.jpg") center/cover no-repeat;
  }

  .hero-grid {
    grid-template-columns: 1.35fr 0.9fr;
    justify-items: stretch;
    text-align: left;
  }

  .hero-visual {
    order: 0;
    width: min(270px, 72%);
    justify-self: end;
  }

  .hero-sub {
    margin-inline: 0;
  }

  .meta-strip {
    justify-content: flex-start;
  }

  .stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .section {
    padding: 2.5rem 0;
  }

  .shots {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .feature-list,
  .bonus-list,
  .review-grid,
  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }

  .info-table {
    display: table;
    overflow: hidden;
  }

  .info-table tbody {
    display: table-row-group;
    min-width: 0;
  }
}

@media (min-width: 980px) {
  .feature-list.cols-3,
  .review-grid.cols-3,
  .article-grid.cols-3,
  .game-grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shots {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
