*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --shell-fill: #181E2F;
  --surface-primary: #161625;
  --primary-tint: linear-gradient(135deg, #16F081 0%, #00F0FF 100%);
  --surface-alt: #2A1B44;
  --display-color: #FFFFFF;
  --copy-color: #FFFFFF;
  --border-soft: #2B324C;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--surface-primary);
  color: var(--copy-color);
  min-height: 100vh;
  line-height: 1.55;
}

main h1,
main h2,
main h3,
main h4 {
  color: var(--display-color);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.band-wrap {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* ==================== Masthead ==================== */

.global-header {
  background: var(--shell-fill);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 20;
}

.page-top-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.site-brand img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.account-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.session-btn {
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.session-btn:active {
  transform: translateY(1px);
}

.auth-btn--outline {
  background: transparent;
  color: var(--display-color);
  border: 1px solid var(--border-soft);
}

.session-btn--solid {
  background: var(--primary-tint);
  color: var(--display-color);
  border: none;
}

.hamburger-btn {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.hamburger-btn span,
.hamburger-btn span::before,
.hamburger-btn span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--display-color);
  position: relative;
}

.hamburger-btn span::before,
.hamburger-btn span::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger-btn span::before { top: -6px; }
.hamburger-btn span::after  { top:  6px; }

.site-nav {
  border-top: 1px solid var(--border-soft);
}

.header-nav-items {
  list-style: none;
  display: flex;
  gap: 32px;
  justify-content: center;
  padding: 14px 0;
  flex-wrap: wrap;
}

.header-nav-items a {
  color: var(--display-color);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}

.header-nav-items a:hover {
  border-bottom-color: var(--display-color);
}

[data-out] {
  cursor: pointer;
}

/* ==================== Stage (hero canvas + inline games + lede) ==================== */

.hero-block {
  background: var(--surface-primary);
}

.banner-frame {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: min(64vh, 560px);
  padding: 64px 0 72px;
  overflow: hidden;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 13, 11, 0.75) 0%, rgba(15, 13, 11, 0.55) 55%, rgba(15, 13, 11, 0.85) 100%);
  pointer-events: none;
}

.banner-frame > .band-wrap {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 640px;
  margin: 0 auto 0 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: calc(min(64vh, 560px) - 136px);
}

.lead-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 22px;
  color: var(--display-color);
}

.hero-offer {
  margin: 4px 0 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.opener-offer-tag {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 236, 216, 0.65);
}

.banner-promo-value {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--display-color);
}

.showcase-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  margin-top: auto;
}

.showcase-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--display-color);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.3;
  padding: 0;
  background: transparent;
  border: none;
}

.showcase-highlights li::before {
  content: "⭐";
  font-size: 1.25rem;
  line-height: 1;
  flex: 0 0 auto;
}

.showcase-highlights li:nth-child(1)::before { content: "🎁"; }
.showcase-highlights li:nth-child(2)::before { content: "🎰"; }
.showcase-highlights li:nth-child(3)::before { content: "🏆"; }
.showcase-highlights li:nth-child(4)::before { content: "💎"; }

.showcase-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.showcase-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 2px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.showcase-btn:hover {
  transform: translateY(-1px);
}

.showcase-btn--filled {
  background: var(--primary-tint);
  color: var(--display-color);
  border: none;
}

.banner-btn--secondary {
  background: transparent;
  color: var(--display-color);
  border: 1px solid var(--display-color);
}

/* ---------- Games rail inside stage ---------- */

.game-rail-block {
  padding: 48px 0 24px;
  background: var(--surface-primary);
}

.titles-strip-header {
  margin-bottom: 22px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.game-rail-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--display-color);
  border-bottom: 2px solid var(--display-color);
  padding-bottom: 6px;
}

.casino-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-soft) transparent;
}

.casino-carousel::-webkit-scrollbar {
  height: 8px;
}

.casino-carousel::-webkit-scrollbar-track {
  background: transparent;
}

.casino-carousel::-webkit-scrollbar-thumb {
  background: var(--border-soft);
  border-radius: 4px;
}

/* Shared class from build.py — styled inside .casino-carousel */
.casino-carousel .slot-tile {
  flex: 0 0 180px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  padding: 0;
  background: transparent;
  border: none;
}

.casino-carousel .casino-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}

.casino-carousel .casino-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.casino-carousel .slot-tile:hover .casino-card-image img {
  transform: scale(1.04);
}

.casino-carousel .casino-card-veil {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 13, 11, 0.7);
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
}

.casino-carousel .casino-card-veil .slot-tile-play {
  padding: 8px 22px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--display-color);
  background: var(--primary-tint);
  border: none;
}

@media (hover: hover) {
  .casino-carousel .slot-tile:hover .casino-card-veil {
    opacity: 1;
  }
}

.casino-carousel .lobby-tile-label {
  font-size: 0.78rem;
  color: var(--copy-color);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.35;
  word-break: break-word;
}

/* ---------- Lede (hero-intro) — placed after games, outside image area ---------- */

.intro-band {
  padding: 24px 0 60px;
  background: var(--surface-primary);
}

.kickoff-body {
  max-width: 820px;
}

.kickoff-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--copy-color);
  margin-bottom: 16px;
}

.kickoff-body p:last-child {
  margin-bottom: 0;
}

/* ==================== Column (long-form content) ==================== */

.content-band {
  padding: 40px 0 80px;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.02rem;
}

.article-body h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin: 44px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-soft);
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  margin: 32px 0 10px;
}

.article-body p {
  margin-bottom: 18px;
  line-height: 1.75;
}

.article-body ul,
.article-body ol {
  margin: 0 0 20px 22px;
  display: grid;
  gap: 8px;
  line-height: 1.65;
}

.article-body ul {
  list-style: square;
}

.article-body img {
  width: 100%;
  max-width: 100%;
  margin: 20px 0;
  display: block;
}

/* Shared classes from build.py */
.table-wrapper {
  overflow-x: auto;
  margin: 0 0 24px;
  border: 1px solid var(--border-soft);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--display-color);
  font-size: 0.94rem;
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-soft);
}

.data-table thead th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: rgba(244, 236, 216, 0.04);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

/* ==================== Register (FAQ) ==================== */

.answers-block {
  padding: 0 0 80px;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

/* Shared class from build.py */
.faq-list .faq-item {
  padding: 20px 0;
  border-top: 1px solid var(--border-soft);
}

.faq-list .faq-item:first-child {
  border-top: 2px solid var(--display-color);
}

.faq-list .faq-item:last-child {
  border-bottom: 1px solid var(--border-soft);
}

.faq-list .faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--display-color);
}

.faq-list .faq-item p {
  color: var(--copy-color);
  line-height: 1.7;
}

/* ==================== Colophon (footer) ==================== */

.page-foot {
  background: var(--shell-fill);
  border-top: 1px solid var(--border-soft);
  padding: 44px 0;
}

.footer-block-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.endnote-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.bottom-shell-logo img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.page-foot-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border: 1px solid var(--display-color);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--display-color);
  letter-spacing: 0.06em;
}

.footer-block-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-block-links a {
  color: var(--display-color);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.footer-block-links a:hover {
  text-decoration: underline;
}

.bottom-shell-line {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer-disclaimer,
.endnote-copyright {
  font-size: 0.76rem;
  color: var(--copy-color);
  line-height: 1.6;
}

/* ==================== Responsive ==================== */

@media (max-width: 900px) {
  .footer-block-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 720px) {
  .page-top-flex {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hamburger-btn {
    display: inline-flex;
    order: 2;
    margin-left: auto;
  }

  .account-actions {
    width: 100%;
    order: 3;
    justify-content: space-between;
  }

  .session-btn {
    flex: 1;
    padding: 12px;
  }

  .site-nav {
    display: none;
  }

  .global-header.opened .site-nav {
    display: block;
  }

  .header-nav-items {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .banner-frame {
    min-height: 480px;
    padding: 48px 0 56px;
  }

  .showcase-highlights {
    gap: 12px 20px;
    margin-bottom: 22px;
  }

  .showcase-highlights li {
    font-size: 0.88rem;
  }

  .showcase-highlights li::before {
    font-size: 1.1rem;
  }

  .game-rail-block {
    padding: 36px 0 20px;
  }

  .casino-carousel .slot-tile {
    flex: 0 0 140px;
  }

  .intro-band {
    padding: 20px 0 40px;
  }

  .content-band {
    padding: 32px 0 60px;
  }

  .article-body {
    font-size: 0.98rem;
  }
}
