body {
  background-color: #0d0e12;
}
.casino-gradient {
  background: linear-gradient(135deg, #161922 0%, #0f1118 100%);
}
.hero-gradient {
  background: linear-gradient(90deg, #1e1b4b 0%, #311042 50%, #111827 100%);
}
.gold-glow {
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.15);
}
.game-card-overlay {
  background: rgba(13, 14, 18, 0.9);
}
.neon-border {
  border-color: rgba(99, 102, 241, 0.2);
}
.neon-border:hover {
  border-color: rgba(99, 102, 241, 0.6);
}

/* Seamless live-wins marquee */
.wins-marquee {
  position: relative;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 4%,
    #000 96%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 4%,
    #000 96%,
    transparent
  );
}
.wins-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: wins-marquee-scroll 34s linear infinite;
}
.wins-marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 2rem;
  padding-right: 2rem;
}
.wins-marquee:hover .wins-marquee-track {
  animation-play-state: paused;
}
@keyframes wins-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@media (max-width: 640px) {
  .wins-marquee-track {
    animation-duration: 42s;
  }
  .wins-marquee-group {
    gap: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wins-marquee-track {
    animation: none;
    transform: none;
  }
  .wins-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .wins-marquee-group[aria-hidden="true"] {
    display: none;
  }
}

.logo img {
  display: block;
  max-height: 58px;
  width: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 10px;
  background: #f59e0b;
  color: #111827;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.button:hover {
  background: #d97706;
}

body > header,
body > section.section,
body > footer {
  width: min(1280px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}
body > section.section {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 24px;
  border-radius: 18px;
  background: #12151e;
  border: 1px solid #1f2937;
}
body > section.section[data-layout~="topbar"] {
  text-align: center;
  color: #ef4444;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
body > section.section[data-layout~="mobile-sticky"] {
  display: none;
}
body > section.section[data-layout~="hero"] {
  background: linear-gradient(90deg, #1e1b4b 0%, #311042 50%, #111827 100%);
}
@media (max-width: 768px) {
  body > section.section {
    padding: 18px;
  }
}
