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

:root {
  --chrome-tint: #1f2675;
  --sheet-color: #1f2675;
  --primary-tint: linear-gradient(90deg, #F7CD01, #babc25);
  --surface-alt: #1f2675;
  --headline-color: #ffffff;
  --reader-color: #ffffff;
  --hairline: #F7CD01;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--sheet-color);
  color: #ffffff;
  min-height: 100vh;
}

main {
  color: var(--reader-color);
}

main h1,
main h2,
main h3 {
  color: var(--headline-color);
}

.frame {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.chrome-band {
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
  background: var(--chrome-tint);
  position: sticky;
  top: 0;
  z-index: 10;
}

.chrome-band-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-anchor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 65px;
  border-radius: 12px;
  text-decoration: none;
  padding: 6px 10px;
}

.brand-anchor img {
  width: 100%;
  max-width: 140px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.35));
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--surface-alt);
  background: transparent;
  color: #ffffff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--headline-color);
  border-radius: 2px;
  position: relative;
  transition: all 0.2s ease;
}

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

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

.hamburger span::after {
  top: 6px;
}

.session-controls {
  display: flex;
  gap: 12px;
}

.site-menu {
  margin-top: 18px;
}

.chrome-menu-band {
  padding: 12px 0;
  background: var(--primary-tint);
  border-radius: 14px;
}

.top-menu-list {
  list-style: none;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}

.top-menu-list a {
  color: var(--headline-color);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.breadcrumb {
  padding: 18px 0 0;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.breadcrumb li + li::before {
  content: ">";
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.lead-section {
  padding: 40px 0 60px;
}

.lead-section-row {
  background: var(--surface-alt);
  border-radius: 18px;
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: center;
}

.hero-band-copy h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 16px;
}

.hero-band-copy p {
  color: var(--reader-color);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 20px;
}

.lead-cta {
  align-self: flex-start;
}

.lead-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lead-visual img {
  width: min(380px, 100%);
  height: auto;
  border-radius: 18px;
}

.highlights-section {
  padding: 0 0 40px;
}

.highlights-section .features-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.highlights-section .features-row li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--surface-alt);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  color: var(--headline-color);
  font-size: 0.78rem;
  font-weight: 300;
}

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

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

.casino-shelf {
  padding: 0 0 60px;
}

.reel-collection-head {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.titles-band-label {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: var(--surface-alt);
  border-radius: 18px;
  color: var(--headline-color);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reel-collection-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* Gradient border via background trick (works with both solid colors and gradients) */
.reel-card {
  position: relative;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--surface-alt), var(--surface-alt)) padding-box,
    var(--primary-tint) border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.casino-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
}

.casino-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.title-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.title-card-overlay .title-card-launch {
  padding: 10px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  color: #ffffff;
  background: var(--primary-tint);
  border: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (hover: hover) {
  .reel-card:hover .title-card-overlay {
    opacity: 1;
  }
}

.reel-card .lobby-tile-label {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--reader-color);
  line-height: 1.3;
  word-break: break-word;
}

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

.content-band .frame > div {
  margin-bottom: 40px;
}

.content-band .frame > div:last-child {
  margin-bottom: 0;
}

.editorial-panel {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 32px;
}

.content-band h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  margin-bottom: 12px;
}

.content-band h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin-bottom: 12px;
}

.editorial-panel img {
  width: 100%;
  max-width: 920px;
  border-radius: 18px;
  display: block;
  margin: 0 auto 20px;
}

.content-band p {
  color: var(--reader-color);
  line-height: 1.7;
  margin-bottom: 20px;
}

.content-band ol {
  margin-left: 20px;
  display: grid;
  gap: 8px;
  color: var(--reader-color);
  line-height: 1.6;
}

.editorial-panel h2:not(:first-child),
.editorial-panel h3:not(:first-child) {
  margin-top: 40px;
}

.content-band ul {
  list-style: none;
  padding-left: 0;
  color: var(--reader-color);
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.table-wrapper {
  overflow-x: auto;
  margin-bottom: 20px;
}

.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #ffffff;
  font-size: 0.98rem;
  border-radius: 14px;
  overflow: hidden;
}

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

.data-table thead th {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--headline-color);
  background: var(--hairline);
}


.editorial-panel.queries-panel {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.faq-item {
  padding: 14px 0;
  border-top: 1px solid var(--hairline);
}

.faq-item:first-of-type {
  border-top: none;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.faq-item p {
  color: var(--reader-color);
}

.endnote-band {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--chrome-tint);
}

.footer-strip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-strip-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 230px;
  height: 65px;
  border-radius: 12px;
  text-decoration: none;
}

.footer-strip-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-strip-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-end;
  align-items: flex-start;
}

.footer-strip-links a {
  text-decoration: none;
  color: var(--headline-color);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.site-bottom-disclaimer {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--reader-color);
  max-width: 520px;
  line-height: 1.6;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.site-bottom-copyright {
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--reader-color);
  text-align: center;
  width: 100%;
}

.endnote-age {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid var(--headline-color);
  font-weight: 600;
  font-size: 0.65rem;
  color: var(--reader-color);
  margin-left: auto;
  margin-right: auto;
}

.content-band ul li {
  position: relative;
  padding-left: 20px;
}

.content-band ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-tint);
}


.control-btn {
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  background: none;
  cursor: pointer;
}

.primary-action--ghost {
  border: 1px solid var(--headline-color);
  color: #ffffff;
}

.cta-btn--filled {
  background: var(--primary-tint);
  color: #ffffff;
  border: none;
  box-shadow: none;
}

@media (max-width: 720px) {
  .chrome-band-row {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .brand-anchor {
    width: auto;
    flex: 0 0 auto;
    justify-content: flex-start;
    padding-left: 0;
    margin: 0;
  }

  .hamburger {
    display: inline-flex;
    align-self: center;
    margin-left: auto;
  }

  .session-controls {
    width: 100%;
    justify-content: space-between;
    order: 3;
  }

  .control-btn {
    flex: 1;
  }

  .site-menu {
    display: none;
  }

  .chrome-band.is-open .site-menu {
    display: block;
  }

  .chrome-menu-band {
    padding: 14px 0 18px;
  }

  .top-menu-list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .lead-section-row {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 16px;
  }

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

  .content-band .frame > div {
    margin-bottom: 28px;
  }

  .lead-cta {
    align-self: center;
    width: 80%;
    justify-content: center;
  }

  .lead-visual {
    order: -1;
  }

  .highlights-section .features-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .highlights-section .features-row li {
    justify-content: center;
    text-align: center;
    padding: 12px 10px;
  }

  .reel-collection-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .reel-card {
    padding: 8px;
    gap: 8px;
  }

  .reel-card .lobby-tile-label {
    font-size: 0.7rem;
  }

  .editorial-panel {
    padding: 20px;
  }

  .content-section {
    margin-top: 28px;
  }

  .steps-inner {
    padding: 20px;
  }

  .step-row {
    text-align: left;
  }

  .policy-inner {
    padding: 20px;
  }

  .footer-strip-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-strip-brand {
    align-self: center;
  }

  .footer-strip-links {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .site-bottom-disclaimer {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.7rem;
  }

  .site-bottom-copyright {
    font-size: 0.7rem;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 14px;
  }
}