:root {
  --bg-main: #0f0f0f;
  --bg-deep: #1a0a00;
  --panel: #1a0f00;
  --panel-soft: rgba(38, 18, 5, 0.88);
  --line: rgba(251, 191, 36, 0.18);
  --fire-orange: #ea580c;
  --ember-red: #dc2626;
  --amber: #fbbf24;
  --cream: #fffbf0;
  --muted: #d8c9b0;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --content-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  background:
    radial-gradient(circle at top, rgba(234, 88, 12, 0.18), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(220, 38, 38, 0.18), transparent 18%),
    linear-gradient(180deg, var(--bg-main) 0%, var(--bg-deep) 100%);
  color: var(--cream);
  min-width: 320px;
}

img {
  max-width: 100%;
  display: block;
  object-fit: contain;
}

a {
  color: inherit;
}

.page-shell {
  overflow: hidden;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 950;
  background: rgba(10, 5, 0, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234, 88, 12, 0.25);
}

.nav-inner {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 0 14px rgba(234, 88, 12, 0.55));
}

.brand-mark {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 2px;
  color: var(--cream);
}

.brand-mark span {
  color: var(--amber);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(234, 88, 12, 0.4);
  background: rgba(255, 255, 255, 0.02);
  color: var(--cream);
  padding: 10px 14px;
  border-radius: 999px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1.7px;
  font-size: 1.05rem;
  color: var(--cream);
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--ember-red), var(--fire-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.free-games-banner {
  background: linear-gradient(90deg, #ea580c, #dc2626);
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 2px;
  position: sticky;
  top: 76px;
  z-index: 900;
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.2);
}

.hero {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 34px;
  padding: 56px;
  background:
    radial-gradient(circle at center, rgba(251, 191, 36, 0.2), transparent 24%),
    radial-gradient(circle at 50% 42%, rgba(234, 88, 12, 0.4), transparent 32%),
    linear-gradient(135deg, rgba(26, 15, 0, 0.98), rgba(38, 10, 0, 0.92));
  border: 1px solid rgba(251, 191, 36, 0.16);
  border-radius: 36px;
  box-shadow: var(--shadow);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(125deg, rgba(220, 38, 38, 0.45), rgba(251, 191, 36, 0.1), rgba(234, 88, 12, 0.55));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(251, 191, 36, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--amber);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1.7px;
  font-size: 1rem;
}

.hero h1,
.page-title h1,
.section-title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(3.6rem, 7vw, 6.5rem);
  text-shadow: 0 0 24px rgba(234, 88, 12, 0.35);
}

.hero p {
  margin: 18px 0 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.primary-button,
.secondary-button,
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.primary-button {
  background: linear-gradient(90deg, var(--ember-red), var(--fire-orange));
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1.8px;
  font-size: 1.15rem;
  box-shadow: 0 14px 32px rgba(220, 38, 38, 0.28);
  animation: emberPulse 3.2s infinite;
}

.secondary-button {
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  border: 1px solid rgba(251, 191, 36, 0.24);
}

.store-button {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.primary-button:hover,
.secondary-button:hover,
.store-button:hover,
.flicker-hover:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.flicker-hover:hover {
  animation: flicker 0.5s linear 2;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
}

.hero-glow {
  position: absolute;
  width: min(520px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(251, 191, 36, 0.4) 0%, rgba(234, 88, 12, 0.24) 28%, rgba(220, 38, 38, 0.12) 48%, transparent 70%);
  filter: blur(18px);
  animation: heroGlow 5s ease-in-out infinite;
}

.hero-device {
  position: relative;
  width: min(440px, 100%);
  padding: 18px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(34, 14, 0, 0.95), rgba(16, 8, 0, 0.96));
  border: 1px solid rgba(251, 191, 36, 0.14);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42);
}

.hero-device img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  border-radius: 22px;
}

.hero-stats {
  position: absolute;
  inset: auto auto 18px 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.stat-chip {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.84);
  border: 1px solid rgba(251, 191, 36, 0.14);
  color: var(--cream);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1.3px;
}

.main-content {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  padding: 34px 0 72px;
}

.section-card,
.content-section,
.feature-card,
.review-card,
.game-card,
.info-card,
.policy-card,
.demo-card {
  background: linear-gradient(180deg, rgba(26, 15, 0, 0.92), rgba(17, 8, 0, 0.96));
  border: 1px solid rgba(251, 191, 36, 0.1);
  box-shadow: var(--shadow);
}

.section-card,
.content-section,
.policy-card,
.demo-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 28px;
  position: relative;
}

.fire-top::before,
.feature-card::before,
.review-card::before,
.game-card::before,
.demo-card::before,
.info-card::before,
.policy-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--ember-red), var(--fire-orange), var(--amber));
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-kicker {
  color: var(--amber);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1.6px;
  font-size: 1rem;
}

.section-copy,
.content-section p,
.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.gallery-shell {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(234, 88, 12, 0.18), rgba(17, 8, 0, 0.94));
  border: 1px solid rgba(251, 191, 36, 0.16);
  padding: 18px;
}

.gallery-stage {
  position: relative;
  min-height: 480px;
}

.gallery-slide {
  display: none;
  width: 100%;
  height: 100%;
}

.gallery-slide.active {
  display: block;
  animation: fadeUp 0.45s ease;
}

.gallery-slide img {
  width: 100%;
  max-height: 560px;
  margin: 0 auto;
}

.gallery-controls {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.gallery-dots {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gallery-dot,
.gallery-arrow {
  border: none;
  cursor: pointer;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.gallery-dot.active {
  background: var(--amber);
  box-shadow: 0 0 16px rgba(251, 191, 36, 0.65);
}

.gallery-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--cream);
}

.grid-3,
.grid-2,
.review-grid,
.games-grid,
.info-grid {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.games-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.review-card,
.game-card,
.info-card {
  position: relative;
  border-radius: 24px;
  padding: 26px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  background: linear-gradient(180deg, rgba(220, 38, 38, 0.18), rgba(234, 88, 12, 0.22));
  box-shadow: inset 0 0 0 1px rgba(251, 191, 36, 0.12);
}

.feature-card h3,
.review-card h3,
.game-card h3,
.info-card h3,
.demo-card h3 {
  margin: 0 0 10px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-size: 1.5rem;
}

.feature-card p,
.review-card p,
.game-card p,
.info-card p,
.demo-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.stars {
  color: var(--amber);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.review-card cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  color: var(--cream);
  font-weight: 700;
}

.promo-banner {
  margin-top: 28px;
  padding: 18px 22px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(220, 38, 38, 0.14), rgba(234, 88, 12, 0.18));
  border: 1px solid rgba(251, 191, 36, 0.12);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1.7px;
  color: var(--cream);
  text-align: center;
}

.book-card,
.cta-panel,
.iframe-shell {
  margin-top: 28px;
}

.book-card,
.game-card,
.demo-card {
  overflow: hidden;
}

.book-card img,
.game-gallery img,
.card-cover {
  width: 100%;
  border-radius: 18px;
}

.book-card-content,
.card-content {
  padding: 24px 0 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(34, 14, 0, 0.96), rgba(57, 14, 0, 0.88));
  border: 1px solid rgba(251, 191, 36, 0.12);
  box-shadow: var(--shadow);
}

.cta-panel h2,
.page-title h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.cta-panel p,
.page-title p {
  color: var(--muted);
  line-height: 1.75;
}

.google-play-badge img {
  height: 74px;
}

.page-title {
  margin-top: 26px;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(26, 15, 0, 0.96), rgba(16, 8, 0, 0.96));
  border: 1px solid rgba(251, 191, 36, 0.12);
  box-shadow: var(--shadow);
}

.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.meta-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(251, 191, 36, 0.14);
  color: var(--cream);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1.4px;
}

.game-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.game-gallery img {
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
  border: 1px solid rgba(251, 191, 36, 0.1);
}

.iframe-shell {
  padding: 18px;
  border-radius: 26px;
  background: radial-gradient(circle at top, rgba(251, 191, 36, 0.1), rgba(17, 8, 0, 0.96));
  border: 1px solid rgba(251, 191, 36, 0.14);
}

.iframe-shell iframe {
  border-radius: 18px;
  background: #000;
}

.disclaimer {
  margin-top: 16px;
  padding: 14px 18px;
  border-left: 4px solid var(--fire-orange);
  background: rgba(255, 255, 255, 0.03);
  color: var(--cream);
}

.policy-card h2 {
  margin: 28px 0 12px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.policy-card ul {
  padding-left: 20px;
}

.site-footer {
  background: #0a0500;
  color: #fffbf0;
  padding: 40px 20px 20px;
  text-align: center;
  border-top: 1px solid #ea580c33;
}

.site-footer img.footer-logo {
  height: 48px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.site-footer nav {
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.site-footer nav a {
  color: var(--fire-orange);
  text-decoration: none;
}

.responsible-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 16px;
  background: #1a0f00;
  border-radius: 8px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.responsible-links span {
  color: #aaa;
  font-size: 0.8rem;
  width: 100%;
}

.responsible-links img {
  height: 36px;
  filter: brightness(0.85);
}

.footer-fineprint {
  color: #888;
  font-size: 0.8rem;
  margin: 8px 0;
}

.footer-legal {
  color: #666;
  font-size: 0.75rem;
  margin: 4px 0;
}

#ck-banner a {
  color: var(--amber);
}

@keyframes heroGlow {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.75;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes emberPulse {
  0%,
  100% {
    box-shadow: 0 14px 32px rgba(220, 38, 38, 0.28);
  }

  50% {
    box-shadow: 0 16px 36px rgba(234, 88, 12, 0.42);
  }
}

@keyframes flicker {
  0%,
  100% {
    opacity: 1;
  }

  20% {
    opacity: 0.82;
  }

  40% {
    opacity: 1;
  }

  55% {
    opacity: 0.86;
  }

  70% {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-inner {
    min-height: 70px;
  }

  .free-games-banner {
    top: 70px;
    font-size: 1.05rem;
    padding: 10px 14px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(10, 5, 0, 0.98);
    border: 1px solid rgba(234, 88, 12, 0.28);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 8px;
  }

  .hero,
  .grid-2,
  .games-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 34px 24px;
  }

  .hero-visual {
    min-height: 340px;
  }

  .grid-3,
  .review-grid,
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-stage {
    min-height: 320px;
  }

  .page-title,
  .section-card,
  .content-section,
  .policy-card,
  .demo-card {
    padding: 24px;
  }

  #ck-banner {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  #age-gate > div:last-child {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero,
  .page-title,
  .section-card,
  .content-section,
  .policy-card,
  .demo-card,
  .cta-panel {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .grid-3,
  .review-grid,
  .info-grid,
  .game-gallery {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .google-play-badge img {
    height: 60px;
  }

  #ck-banner > div,
  #age-gate > div:last-child {
    width: 100%;
  }

  #ck-banner > div {
    justify-content: stretch !important;
  }

  #ck-banner button,
  #age-gate > div:last-child button {
    width: 100%;
  }
}
