:root {
  color-scheme: light;
  --page: #fff9d7;
  --panel: #fffef7;
  --panel-soft: #fff3a8;
  --ink: #171305;
  --muted: #51462a;
  --quiet: #8d7418;
  --gold: #ffda1a;
  --gold-deep: #c79400;
  --ruby: #ffbd00;
  --ruby-strong: #ffe04a;
  --ruby-deep: #b87300;
  --emerald: #3bd483;
  --line: rgba(205, 156, 0, 0.34);
  --shadow: 0 22px 60px rgba(130, 91, 0, 0.18);
  --max-width: 1540px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, #fffef8 0%, #fff2a5 46%, #ffd91a 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.is-nav-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  max-width: 1160px;
  font-size: 52px;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 22px;
}

p {
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--gold);
  color: #060606;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-height);
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.98);
}

.header-inner {
  width: min(100% - 16px, var(--max-width));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 116px;
  height: 62px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #fff7c7;
  font-size: 14px;
}

.primary-nav a {
  position: relative;
  padding: 26px 0;
  transition: color 180ms ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active {
  color: #ffffff;
}

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

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 800;
  line-height: 1;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button::after {
  position: absolute;
  inset: -45% auto -45% -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  content: "";
  transform: skewX(-18deg);
  animation: button-shine 3.2s ease-in-out infinite;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.solid {
  border-color: #fff2a0;
  background: linear-gradient(180deg, #fff36d 0%, var(--gold) 45%, #d99c00 100%);
  color: #141006;
  box-shadow: 0 10px 24px rgba(255, 198, 0, 0.28);
}

.button.ghost {
  border-color: rgba(205, 156, 0, 0.58);
  background: linear-gradient(180deg, #fffef8 0%, #fff1a0 100%);
  color: #171305;
}

.button.large {
  min-height: 50px;
  padding: 14px 22px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(7px);
}

body.is-nav-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

body.is-nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.is-nav-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 36px 0 42px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 218, 26, 0.34), transparent 28%),
    linear-gradient(135deg, #fffef7 0%, #fff4b8 44%, #ffd91a 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(205, 156, 0, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(205, 156, 0, 0.14) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 78%);
}

.hero-inner,
.section-inner,
.footer-inner,
.footer-bottom {
  width: min(100% - 16px, var(--max-width));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  order: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 18px;
  text-align: center;
}

.hero-copy {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.eyebrow {
  color: #8f6900;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy p:not(.eyebrow) {
  max-width: 1180px;
  font-size: 18px;
}

.hero h1 {
  max-width: 1240px;
  color: #171305;
  font-size: 34px;
}

.hero-logo {
  display: none;
  align-items: center;
  justify-content: center;
}

.hero-logo img {
  width: min(280px, 100%);
  filter: drop-shadow(0 18px 32px rgba(255, 218, 26, 0.2));
}

.banner-carousel {
  position: relative;
  z-index: 2;
  order: 1;
  width: min(100% - 16px, var(--max-width));
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid var(--gold-deep);
  border-radius: 8px;
  aspect-ratio: 740 / 350;
  background: #fffef7;
  box-shadow: var(--shadow);
  animation: golden-glow 3.4s ease-in-out infinite;
}

.banner-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 400ms ease, transform 600ms ease;
}

.banner-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.carousel-control {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 218, 26, 0.66);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.62);
  color: var(--gold);
  font-size: 26px;
  transform: translateY(-50%);
  transition: background 180ms ease, color 180ms ease;
}

.carousel-control:hover,
.carousel-control:focus-visible {
  background: var(--gold);
  color: #060606;
}

.carousel-control.previous {
  left: 14px;
}

.carousel-control.next {
  right: 14px;
}

.carousel-dots {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.54);
  padding: 0;
}

.carousel-dot.is-active {
  border-color: var(--gold);
  background: var(--gold);
}

.quick-links {
  position: relative;
  z-index: 2;
  order: 2;
  width: min(100% - 16px, var(--max-width));
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.quick-links a {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffef8, #fff0a8);
  box-shadow: 0 10px 22px rgba(205, 156, 0, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.quick-links a:hover,
.quick-links a:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 16px 30px rgba(205, 156, 0, 0.24);
  transform: translateY(-4px) scale(1.02);
}

.quick-links img {
  width: 100%;
  height: 122px;
  object-fit: cover;
  background: #fff6bf;
}

.quick-links span {
  display: block;
  padding: 12px 10px 14px;
  color: #171305;
  font-weight: 850;
  text-align: center;
}

section:not(.hero) {
  padding: 76px 0;
}

.intro-section,
.games-section,
.faq-section,
.seo-section,
.play-now-section {
  background: #fffef8;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 48px;
  align-items: center;
}

.about-copy {
  display: grid;
  gap: 16px;
}

.about-copy h2 {
  color: #171305;
}

.about-copy p {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.52;
}

.about-copy .eyebrow {
  color: #8f6900;
}

.about-note {
  margin-top: 6px;
}

.feature-list.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 2px;
}

.feature-list.about-pills a {
  min-width: 138px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 218, 26, 0.58);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffef8, #ffe66a);
  color: #171305;
  font-weight: 850;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  transition: background 180ms ease, transform 180ms ease;
}

.feature-list.about-pills a:hover,
.feature-list.about-pills a:focus-visible {
  background: linear-gradient(180deg, #fff36d, #d99c00);
  color: #141006;
  transform: translateY(-1px);
}

.feature-list.about-pills span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
}

.about-visual {
  margin: 0;
}

.about-visual img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 740 / 350;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.44);
}

.promo-section,
.overview-section,
.cta-section,
.jackpot-section {
  background: linear-gradient(180deg, #fff3a8, #fffef8);
}

.live-section {
  background: #fff8cd;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 34px;
  align-items: start;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 30px;
  display: grid;
  gap: 12px;
}

.games-section .section-heading {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered,
.seo-copy.centered {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.seo-copy {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.section-inner > div:first-child,
.live-layout > div:first-child {
  display: grid;
  gap: 16px;
}

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

.feature-list div,
.game-info-card,
.mini-cards article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 18px;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  color: #7d5c00;
  font-size: 20px;
  line-height: 1.2;
}

.feature-list span {
  margin-top: 6px;
  color: var(--muted);
}

.game-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.game-info-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 250px;
  text-align: center;
}

.content-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 218, 26, 0.5);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff36d, #d99c00);
  color: #171305;
  font-weight: 950;
  line-height: 1;
}

.game-info-card h3 {
  color: #7d5c00;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.promo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 40px rgba(130, 91, 0, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.promo-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.46) 42%, transparent 62%);
  content: "";
  opacity: 0;
  transform: translateX(-120%);
}

.promo-card:hover,
.promo-card:focus-within {
  border-color: var(--gold);
  box-shadow: 0 22px 46px rgba(205, 156, 0, 0.24);
  transform: translateY(-4px);
}

.promo-card:hover::after,
.promo-card:focus-within::after {
  animation: card-shine 900ms ease;
}

.promo-card img {
  width: 100%;
  aspect-ratio: 740 / 350;
  object-fit: cover;
}

.promo-card div {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.promo-card h3,
.mini-cards h3,
.footer-links h2,
.footer-cta h2 {
  color: #7d5c00;
}

.promo-card a {
  color: #8f6900;
  font-weight: 850;
}

.offer-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.offer-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050505;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.offer-card:hover,
.offer-card:focus-within {
  border-color: var(--gold);
  box-shadow: 0 18px 38px rgba(205, 156, 0, 0.22);
  transform: translateY(-4px);
}

.offer-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.72));
  content: "";
}

.offer-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-card div {
  position: relative;
  z-index: 1;
  min-height: 300px;
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 10px;
  padding: 22px;
  text-align: center;
}

.offer-card h3 {
  color: #fffef8;
}

.offer-card p {
  color: #fff8d8;
}

.category-tabs {
  display: grid;
  gap: 18px;
}

.tab-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tab-button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted);
  padding: 10px 16px;
  font-weight: 850;
}

.tab-button.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: #060606;
}

.tab-panel {
  display: none;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 18px;
}

.tab-panel.is-active {
  display: grid;
}

.tab-panel img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 740 / 350;
  object-fit: cover;
}

.tab-panel div {
  display: grid;
  gap: 12px;
}

.game-marquee {
  overflow: hidden;
  margin-top: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: marquee 26s linear infinite;
}

.marquee-track img {
  width: 260px;
  height: 123px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(205, 156, 0, 0.16);
}

@keyframes button-shine {
  0%,
  55% {
    left: -55%;
  }

  80% {
    left: 118%;
  }

  100% {
    left: 118%;
  }
}

@keyframes golden-glow {
  0%,
  100% {
    box-shadow: 0 22px 60px rgba(130, 91, 0, 0.18), 0 0 0 rgba(255, 218, 26, 0);
  }

  50% {
    box-shadow: 0 24px 64px rgba(130, 91, 0, 0.2), 0 0 24px rgba(255, 218, 26, 0.46);
  }
}

@keyframes card-shine {
  from {
    opacity: 0;
    transform: translateX(-120%);
  }

  35% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.live-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: center;
}

.live-layout > img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  aspect-ratio: 740 / 350;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.mini-cards article {
  display: grid;
  gap: 10px;
}

.mini-cards h3 {
  font-size: 19px;
}

.table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.feature-table {
  border-color: rgba(255, 218, 26, 0.66);
  background: linear-gradient(180deg, #fff6bf, #fffef8);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 218, 26, 0.18);
  text-align: left;
  vertical-align: top;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

th {
  width: 32%;
  color: var(--gold);
}

td {
  color: var(--muted);
}

.feature-table th,
.feature-table td {
  border-bottom-color: rgba(205, 156, 0, 0.28);
}

.feature-table th {
  color: #7d5c00;
}

.feature-table td {
  color: #171305;
}

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

.faq-list summary {
  color: #171305;
  font-weight: 850;
}

.faq-list p {
  margin-top: 10px;
}

.play-now-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: 42px;
  align-items: center;
}

.play-now-layout > div {
  display: grid;
  gap: 16px;
}

.play-now-layout > img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  aspect-ratio: 740 / 350;
  object-fit: cover;
  box-shadow: 0 16px 42px rgba(255, 198, 0, 0.22);
}

.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 4px 0 8px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 18px;
  color: #171305;
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold);
  content: ">";
  font-weight: 950;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 218, 26, 0.42), rgba(255, 255, 255, 0.82)),
    #fffef8;
  padding: 32px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fffef8, #ffe66a);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.8fr) minmax(220px, 0.8fr);
  gap: 34px;
  padding: 54px 0 34px;
}

.footer-brand img {
  width: 150px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer-links,
.footer-cta {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 218, 26, 0.2);
  padding: 18px 0 24px;
  color: var(--quiet);
  font-size: 14px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1040px) {
  .nav-toggle {
    display: inline-flex;
    position: relative;
    order: 3;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    background: rgba(0, 0, 0, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 8px 20px 18px;
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  body.is-nav-open .primary-nav {
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 14px 0;
  }

  .primary-nav a::after {
    bottom: 10px;
  }

  .account-actions {
    margin-left: auto;
  }

  .hero-inner,
  .two-column,
  .about-layout,
  .live-layout,
  .play-now-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .about-layout {
    gap: 28px;
  }

  .about-visual img {
    aspect-ratio: 16 / 9;
  }

  .hero-logo {
    display: none;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  h1 {
    font-size: 36px;
  }

  .hero h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 29px;
  }

  h3 {
    font-size: 20px;
  }

  .header-inner,
  .hero-inner,
  .section-inner,
  .footer-inner,
  .footer-bottom,
  .banner-carousel,
  .quick-links {
    width: min(100% - 24px, var(--max-width));
  }

  .brand img {
    width: 92px;
    height: 54px;
  }

  .account-actions {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions,
  .cta-actions,
  .cta-inner,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .feature-list.about-pills a {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
  }

  .banner-carousel {
    aspect-ratio: 740 / 350;
  }

  .carousel-control {
    width: 36px;
    height: 46px;
    font-size: 22px;
  }

  .quick-links,
  .mini-cards,
  .game-info-grid,
  .offer-showcase,
  .intro-section .feature-list {
    grid-template-columns: 1fr 1fr;
  }

  section:not(.hero) {
    padding: 56px 0;
  }

  .tab-panel {
    grid-template-columns: 1fr;
  }

  .game-info-card {
    min-height: 220px;
  }

  .offer-card,
  .offer-card div {
    min-height: 260px;
  }

  .marquee-track {
    animation-duration: 20s;
  }

  .marquee-track img {
    width: 210px;
    height: 99px;
  }

  th,
  td {
    display: block;
    width: 100%;
    padding: 13px 14px;
  }

  th {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  td {
    padding-top: 2px;
  }
}

@media (max-width: 460px) {
  .quick-links,
  .game-info-grid,
  .offer-showcase,
  .intro-section .feature-list {
    grid-template-columns: 1fr;
  }

  .quick-links img {
    height: 96px;
  }

  .carousel-control {
    display: none;
  }

  .feature-list.about-pills {
    display: grid;
    grid-template-columns: 1fr;
  }
}
