@font-face{font-family:'Oswald';font-style:normal;font-weight:400 700;font-display:optional;src:url(fonts/oswald.woff2) format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:400 600;font-display:optional;src:url(fonts/inter.woff2) format('woff2');}
:root {
  --bg: #0c0e12;
  --bg-deep: #0f131a;
  --panel: #141922;
  --panel-soft: rgba(22, 28, 38, 0.92);
  --text: #fffbf0;
  --muted: #c3ccd6;
  --soft: #8593a3;
  --fire: #c9962f;
  --ember: #9c7526;
  --amber: #e6c477;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.4);
  --fire-grad: linear-gradient(90deg, #e6c477, #c9962f 42%, #9c7526 100%);
  --max: 1180px;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(201, 150, 47, 0.16), transparent 28%),
    linear-gradient(180deg, #0c0e12 0%, #0e121a 44%, #0f131a 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.25;
  z-index: -1;
}

.site-shell::before {
  top: -80px;
  left: -110px;
  background: rgba(156, 117, 38, 0.38);
}

.site-shell::after {
  right: -120px;
  bottom: 10%;
  background: rgba(201, 150, 47, 0.26);
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 64px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(230, 196, 119, 0.28);
  background: rgba(230, 196, 119, 0.08);
  color: var(--amber);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.title,
.section-title,
.nav-link,
.brand-text,
.fire-button,
.outline-button,
.modal-title,
.footer-nav a,
.stat-value,
.tiny-label {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
}

.brand-mark-sm {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(201, 150, 47, 0.35);
}

.brand-mark-sm--center {
  display: block;
  margin: 0 auto 16px;
}

.brand-mark-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(18px);
  background: rgba(12, 12, 12, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.compliance-banner {
  width: 100%;
  text-align: center;
  padding: 8px 16px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: #e6c477;
  background: rgba(201, 150, 47, 0.18);
  border-bottom: 1px solid rgba(201, 150, 47, 0.32);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 26px rgba(201, 150, 47, 0.38);
}

.brand-text {
  font-size: 1.15rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand-tag {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-link {
  position: relative;
  font-size: 1.15rem;
  text-transform: uppercase;
  padding: 8px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--fire-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber);
}

.header-actions,
.auth-guest,
.auth-user {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.outline-button,
.fire-button,
.auth-pill {
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.outline-button {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px 18px;
  font-size: 1.02rem;
}

.outline-button:hover {
  color: var(--amber);
  border-color: rgba(230, 196, 119, 0.46);
}

.fire-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--fire-grad);
  color: #fff;
  padding: 14px 26px;
  min-height: 52px;
  font-size: 1.15rem;
  box-shadow: 0 12px 26px rgba(201, 150, 47, 0.3);
  animation: flicker 2.8s ease-in-out infinite;
}

.fire-button:hover,
.outline-button:hover,
.auth-pill:hover {
  transform: translateY(-2px);
}

.fire-button:hover {
  box-shadow: 0 16px 34px rgba(201, 150, 47, 0.42);
}

.auth-pill {
  padding: 10px 16px;
  background: rgba(230, 196, 119, 0.08);
  border: 1px solid rgba(230, 196, 119, 0.2);
  color: var(--amber);
  font-size: 1rem;
}

.auth-pill.ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero {
  position: relative;
  padding: 110px 0 92px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

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

.flame-halo {
  position: absolute;
  left: -40px;
  top: -20px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(230, 196, 119, 0.28) 0%, rgba(201, 150, 47, 0.26) 24%, rgba(156, 117, 38, 0.14) 46%, rgba(15, 15, 15, 0) 72%);
  filter: blur(8px);
  animation: forgePulse 4.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.title {
  position: relative;
  margin: 18px 0 12px;
  font-size: clamp(4rem, 11vw, 8.6rem);
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 6px 30px rgba(201, 150, 47, 0.28);
}

.hero-subtitle {
  position: relative;
  margin: 0 0 18px;
  color: var(--amber);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.hero-text {
  position: relative;
  margin: 0 0 28px;
  max-width: 640px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-meta {
  margin-top: 16px;
  color: var(--soft);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.hero-panel,
.content-card,
.feature-card,
.review-card,
.game-card,
.legal-card,
.contact-card,
.faq-item,
.modal-card,
.demo-card,
.promo-block {
  background: linear-gradient(180deg, rgba(22, 28, 38, 0.96), rgba(15, 19, 26, 0.96));
  border: 1px solid rgba(201, 150, 47, 0.45);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -10% -32% 20%;
  height: 220px;
  background: radial-gradient(circle, rgba(201, 150, 47, 0.24), transparent 70%);
}

.shot-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.shot-stack img,
.slider-stage img,
.thumb-strip img,
.game-media img,
.demo-media img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

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

.section-title {
  margin: 12px 0 8px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  text-transform: uppercase;
}

.section-lead {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.8;
}

.content-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 26px;
}

.content-card {
  padding: 28px;
}

.content-card p,
.legal-card p,
.contact-card p,
.review-card p,
.game-card p,
.faq-copy {
  color: var(--muted);
  line-height: 1.8;
}

.checklist {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.check-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
}

.check-icon {
  font-size: 1.35rem;
}

.stats-list {
  display: grid;
  gap: 14px;
}

.stat-box {
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-value {
  display: block;
  font-size: 2rem;
  color: var(--amber);
}

.stat-label {
  color: var(--soft);
  text-transform: uppercase;
  font-size: 0.88rem;
}

.slider-shell {
  position: relative;
}

.slider-stage {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 0 1px rgba(230, 196, 119, 0.08), 0 0 26px rgba(201, 150, 47, 0.16);
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(12, 12, 12, 0.82);
  color: var(--amber);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 0 0 1px rgba(201, 150, 47, 0.3), 0 0 20px rgba(201, 150, 47, 0.22);
}

.slider-arrow.prev {
  left: 18px;
}

.slider-arrow.next {
  right: 18px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

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

.slider-dot.active {
  background: var(--amber);
  box-shadow: 0 0 14px rgba(230, 196, 119, 0.6);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 22px;
}

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

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

.feature-card,
.review-card,
.game-card,
.legal-card,
.contact-card,
.demo-card,
.promo-block {
  padding: 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-card:hover,
.review-card:hover,
.game-card:hover,
.legal-card:hover,
.contact-card:hover,
.demo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.46), 0 0 28px rgba(201, 150, 47, 0.16);
}

.card-icon,
.tiny-label {
  color: var(--amber);
}

.card-icon {
  font-size: 1.7rem;
}

.card-title,
.game-title,
.review-name,
.faq-question,
.subpage-title {
  font-family: "Oswald", sans-serif;
}

.card-title,
.game-title,
.review-name {
  margin: 14px 0 10px;
  font-size: 1.75rem;
}

.review-stars {
  color: var(--amber);
  font-size: 0.95rem;
}

.review-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.game-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.game-media {
  overflow: hidden;
  border-radius: 16px;
}

.thumb-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.demo-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.promo-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.promo-block img {
  height: 72px;
  width: auto;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 22px 24px;
}

.faq-question {
  font-size: 1.4rem;
  text-align: left;
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
}

.faq-item.open .faq-answer {
  display: block;
}

.subpage-hero {
  padding: 92px 0 48px;
}

.subpage-title {
  margin: 16px 0 12px;
  font-size: clamp(3.4rem, 7vw, 6rem);
  text-transform: uppercase;
}

.subpage-copy {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.8;
}

.legal-stack,
.contact-stack {
  display: grid;
  gap: 18px;
}

.legal-card h3,
.contact-card h3,
.modal-title {
  margin: 0 0 12px;
  font-size: 1.85rem;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 0.9rem;
  color: var(--soft);
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 15px 16px;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.iframe-shell {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 42px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 8, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-nav a {
  font-size: 1.12rem;
  text-transform: uppercase;
}

.footer-meta {
  margin-top: 14px;
  color: var(--soft);
  line-height: 1.7;
  font-size: 0.92rem;
}

.footer-play {
  margin-top: 18px;
}

.overlay-root {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
}

#ck-banner,
#age-gate,
.auth-modal,
.toast {
  pointer-events: auto;
}

.auth-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 8, 8, 0.72);
  backdrop-filter: blur(12px);
  z-index: 99996;
}

.auth-modal.open {
  display: flex;
}

.modal-card {
  width: min(520px, 100%);
  padding: 28px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.modal-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.modal-tab {
  flex: 1;
}

.modal-desc {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.modal-message {
  min-height: 24px;
  margin-top: 12px;
  color: var(--amber);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 90px;
  max-width: min(420px, calc(100% - 40px));
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(22, 15, 8, 0.96);
  border-top: 3px solid var(--fire);
  color: var(--text);
  box-shadow: var(--shadow);
  display: none;
  z-index: 99997;
}

.toast.show {
  display: block;
}

.spark-field {
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  overflow: hidden;
  pointer-events: none;
}

.spark {
  position: absolute;
  bottom: -10px;
  width: 12px;
  height: 12px;
  background: #e6c477;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  filter: drop-shadow(0 0 3px rgba(230, 196, 119, 0.85));
  opacity: 0.65;
  animation: floatSpark linear infinite;
}

.page-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.page-badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.9rem;
}

@keyframes forgePulse {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes flicker {
  0%,
  100% {
    opacity: 1;
  }
  35% {
    opacity: 0.9;
  }
  55% {
    opacity: 0.98;
  }
  70% {
    opacity: 0.86;
  }
}

@keyframes floatSpark {
  0% {
    transform: translate3d(0, 0, 0) scale(0.8) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.85;
  }
  100% {
    transform: translate3d(var(--drift, 0px), -230px, 0) scale(1.2) rotate(200deg);
    opacity: 0;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .content-grid,
  .demo-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: center;
  }

  .header-row {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

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

  .promo-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .title {
    font-size: clamp(3.4rem, 14vw, 6rem);
  }
}

@media (max-width: 640px) {
  .section,
  .hero,
  .subpage-hero {
    padding: 72px 0 42px;
  }

  .grid-3,
  .grid-2,
  .thumb-strip,
  .shot-stack {
    grid-template-columns: 1fr;
  }

  .slider-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }

  .fire-button,
  .outline-button,
  .auth-pill {
    width: 100%;
    justify-content: center;
  }

  .auth-guest,
  .auth-user,
  .page-badges,
  .header-actions {
    width: 100%;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .modal-tabs {
    flex-direction: column;
  }
}
