:root {
  --ink: #f8f7ff;
  --muted: #c8c4db;
  --panel: rgba(28, 22, 50, 0.76);
  --panel-strong: #251b44;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #ffc857;
  --teal: #31d7c6;
  --rose: #ff5c8a;
  --violet: #8d6dff;
  --green: #42e38b;
  --shadow: 0 24px 80px rgba(3, 2, 14, 0.44);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 10%, rgba(49, 215, 198, 0.24), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(255, 92, 138, 0.2), transparent 28rem),
    linear-gradient(135deg, #0a0616 0%, #15112b 46%, #120717 100%);
}

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

button,
.button,
.play-link,
.coin-balance {
  min-height: 44px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 6, 22, 0.78);
  backdrop-filter: blur(18px);
}

.brand,
.coin-balance,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.65rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo,
.brand-mark {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
}

.brand-logo {
  display: block;
  object-fit: contain;
}

.brand-mark {
  place-items: center;
  color: #150f25;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  box-shadow: 0 0 28px rgba(255, 200, 87, 0.28);
}

.nav-links {
  gap: clamp(0.75rem, 4vw, 2rem);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"],
footer a:hover,
footer a:focus-visible {
  color: var(--gold);
}

.coin-balance {
  gap: 0.35rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 200, 87, 0.36);
  border-radius: 999px;
  background: rgba(255, 200, 87, 0.1);
  color: var(--gold);
  font-weight: 900;
}

.coin-balance small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 31rem);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem);
}

.hero-copy {
  max-width: 45rem;
}

.eyebrow,
.game-type,
.label {
  margin: 0 0 0.7rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 13ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3.4rem, 8vw, 7.25rem);
  line-height: 0.91;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.hero-copy > p:not(.eyebrow),
.split-section > div > p {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button,
.play-link,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.8rem;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.button {
  padding: 0.95rem 1.2rem;
}

.primary,
button {
  color: #140d24;
  background: linear-gradient(135deg, var(--gold), #fff0a8);
  box-shadow: 0 18px 44px rgba(255, 200, 87, 0.25);
}

.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.button:hover,
.button:focus-visible,
.play-link:hover,
.play-link:focus-visible,
button:hover,
button:focus-visible,
.game-card:hover {
  transform: translateY(-3px);
}

.showcase-table {
  position: relative;
  display: grid;
  min-height: 34rem;
  place-items: center;
}

.table-glow {
  position: absolute;
  width: min(100%, 28rem);
  aspect-ratio: 1;
  border: 1.1rem solid rgba(49, 215, 198, 0.17);
  border-radius: 50%;
  background:
    conic-gradient(from 20deg, var(--rose), var(--gold), var(--teal), var(--violet), var(--rose));
  filter: drop-shadow(0 0 42px rgba(49, 215, 198, 0.22));
  opacity: 0.75;
}

.jackpot-card,
.slot-machine,
.game-card,
.room,
.reward-list article,
.event-row article,
.stats-strip article {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.jackpot-card {
  position: absolute;
  top: 1.25rem;
  right: 0;
  width: min(14rem, 48%);
  padding: 1rem;
  border-radius: 0.9rem;
}

.jackpot-card strong {
  display: block;
  color: var(--gold);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
}

.slot-machine {
  position: relative;
  width: min(100%, 23rem);
  padding: 1rem;
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
    var(--panel-strong);
}

.slot-top {
  padding: 1rem;
  border-radius: 0.8rem 0.8rem 0 0;
  color: var(--gold);
  background: #140d25;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 900;
}

.reels,
.mini-reels,
.card-row,
.roulette-board {
  display: grid;
  gap: 0.65rem;
}

.reels {
  grid-template-columns: repeat(3, 1fr);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
}

.reels span,
.mini-reels span,
.card-row span,
.roulette-board span {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.65rem;
  background: #fbf8ef;
  color: #171026;
  font-weight: 950;
}

.reels span {
  min-height: 7rem;
  font-size: 3rem;
}

.slot-controls {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem;
}

.slot-controls span {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 18px rgba(255, 92, 138, 0.7);
}

.stats-strip,
.section-shell,
.play-area,
.split-section,
.events {
  padding: clamp(2.5rem, 7vw, 5rem) clamp(1rem, 5vw, 4rem);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stats-strip article {
  min-height: 7.25rem;
  padding: 1.2rem;
  border-radius: 0.9rem;
}

.stats-strip strong {
  display: block;
  color: var(--gold);
  font-size: 2rem;
}

.stats-strip span,
.game-info p,
.room p,
.reward-list p,
.event-row p,
footer {
  color: var(--muted);
  line-height: 1.55;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.game-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 1rem;
}

.game-card {
  display: flex;
  min-height: 25rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 1rem;
}

.featured-game {
  min-height: 31rem;
}

.game-art {
  display: grid;
  min-height: 12rem;
  place-items: center;
  overflow: hidden;
  border-radius: 0.85rem;
  background: #120c25;
}

.slots-art,
.cards-art {
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 1rem;
}

.slots-art span,
.cards-art span {
  display: grid;
  min-height: 7rem;
  place-items: center;
  border-radius: 0.7rem;
  background: linear-gradient(180deg, #fff6d5, #ffca59);
  color: #151020;
  font-size: 2rem;
  font-weight: 950;
}

.roulette-art,
.wheel-art,
.orbit-wheel {
  position: relative;
}

.roulette-art::before,
.wheel-art::before,
.orbit-wheel::before {
  content: "";
  width: 9.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(
    var(--rose) 0 18deg,
    #151020 18deg 36deg,
    var(--green) 36deg 54deg,
    #151020 54deg 72deg,
    var(--gold) 72deg 90deg,
    #151020 90deg 108deg,
    var(--teal) 108deg 126deg,
    #151020 126deg 144deg,
    var(--violet) 144deg 162deg,
    #151020 162deg 180deg,
    var(--rose) 180deg 198deg,
    #151020 198deg 216deg,
    var(--green) 216deg 234deg,
    #151020 234deg 252deg,
    var(--gold) 252deg 270deg,
    #151020 270deg 288deg,
    var(--teal) 288deg 306deg,
    #151020 306deg 324deg,
    var(--violet) 324deg 342deg,
    #151020 342deg 360deg
  );
  box-shadow: inset 0 0 0 1rem rgba(255, 255, 255, 0.08);
}

.roulette-art span,
.wheel-art span,
.orbit-wheel span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border-radius: 50%;
  background: #fbf8ef;
  color: #151020;
  font-weight: 950;
  transform: translate(-50%, -50%);
}

.game-card:hover .roulette-art::before,
.game-card:focus-within .roulette-art::before,
.game-card:hover .wheel-art::before,
.game-card:focus-within .wheel-art::before,
.room:hover .orbit-wheel::before,
.room:focus-within .orbit-wheel::before {
  animation: wheel-spin 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.game-card:hover .slots-art span,
.game-card:focus-within .slots-art span,
.room:hover .mini-reels span,
.room:focus-within .mini-reels span {
  animation: reel-pop 540ms ease both;
}

.cards-art span,
.card-row span {
  transition: transform 220ms ease;
}

.game-card:hover .cards-art span,
.game-card:focus-within .cards-art span,
.room:hover .card-row span,
.room:focus-within .card-row span {
  transform: rotateY(14deg) translateY(-4px);
}

.game-info {
  margin-top: 1rem;
}

.play-link {
  align-self: flex-start;
  padding: 0.78rem 1.05rem;
  background: rgba(49, 215, 198, 0.12);
  color: var(--teal);
  border: 1px solid rgba(49, 215, 198, 0.28);
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.room {
  padding: 1rem;
  border-radius: 1rem;
}

.room-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.room-header span {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 92, 138, 0.14);
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
}

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

.mini-reels span,
.card-row span,
.roulette-board span {
  min-height: 5.5rem;
  font-size: 2rem;
}

.roulette-board {
  grid-template-columns: repeat(4, 1fr);
}

.roulette-board span:nth-child(even) {
  background: #151020;
  color: var(--ink);
}

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

.card-row span {
  background: linear-gradient(180deg, #ffffff, #eae6f6);
}

.orbit-wheel {
  display: grid;
  min-height: 5.5rem;
  place-items: center;
  overflow: hidden;
  border-radius: 0.8rem;
  background: #120c25;
}

.orbit-wheel::before {
  width: 6.4rem;
}

.orbit-wheel span {
  width: 3.1rem;
  height: 3.1rem;
}

.room button {
  width: 100%;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 1fr);
  gap: clamp(1.5rem, 6vw, 4rem);
  align-items: start;
}

.reward-list {
  display: grid;
  gap: 1rem;
}

.reward-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.9rem;
}

.reward-list span {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 950;
}

.event-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.event-row article {
  min-height: 12rem;
  padding: 1rem;
  border-radius: 0.9rem;
}

time {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--teal);
  font-weight: 950;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

footer a {
  color: var(--gold);
  font-weight: 900;
  white-space: nowrap;
}

.page-hero {
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
}

.compact-hero {
  max-width: 58rem;
}

.compact-hero h1 {
  max-width: 11ch;
}

.compact-hero p:not(.eyebrow) {
  max-width: 46rem;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.notice-band {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 clamp(1rem, 5vw, 4rem);
  padding: 1rem;
  border: 1px solid rgba(255, 200, 87, 0.36);
  border-radius: 0.9rem;
  background: rgba(255, 200, 87, 0.1);
  color: var(--muted);
  line-height: 1.55;
}

.notice-band strong {
  color: var(--gold);
  white-space: nowrap;
}

.policy-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem clamp(1rem, 5vw, 4rem) 0;
}

.policy-strip article {
  min-height: 8.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(49, 215, 198, 0.08);
}

.policy-strip strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.policy-strip span {
  color: var(--muted);
  line-height: 1.5;
}

.casino-floor {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(2.5rem, 7vw, 5rem) clamp(1rem, 5vw, 4rem);
}

.play-panel,
.copy-panel {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.play-panel {
  display: flex;
  min-height: 29rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.35rem);
}

.play-panel .room-header {
  align-items: flex-start;
}

.play-panel .room-header h2 {
  font-size: clamp(1.7rem, 4vw, 2.9rem);
}

.play-reels,
.play-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.play-reels span,
.play-cards span {
  display: grid;
  min-height: 8rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.75rem;
  background: #fbf8ef;
  color: #171026;
  font-size: clamp(1.55rem, 5vw, 3.4rem);
  font-weight: 950;
  text-align: center;
}

.play-cards span {
  background: linear-gradient(180deg, #ffffff, #eae6f6);
}

.big-wheel,
.orbit-stage {
  display: grid;
  min-height: 16rem;
  place-items: center;
  border-radius: 1rem;
  color: #151020;
  font-size: clamp(2.6rem, 8vw, 5rem);
  font-weight: 950;
  background:
    radial-gradient(circle, #fbf8ef 0 24%, transparent 25%),
    conic-gradient(
      var(--rose) 0 45deg,
      #151020 45deg 90deg,
      var(--gold) 90deg 135deg,
      #151020 135deg 180deg,
      var(--teal) 180deg 225deg,
      #151020 225deg 270deg,
      var(--violet) 270deg 315deg,
      #151020 315deg 360deg
    );
}

.orbit-stage {
  background:
    radial-gradient(circle, #fbf8ef 0 25%, transparent 26%),
    conic-gradient(from 30deg, var(--gold), var(--teal), var(--rose), var(--violet), var(--gold));
}

.game-result {
  min-height: 3.25rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.play-panel button {
  width: 100%;
  padding: 0.95rem 1rem;
}

.pop {
  animation: reel-pop 540ms ease both;
}

.spin {
  animation: wheel-spin 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.flip {
  animation: card-flip 520ms ease both;
}

.legal-page {
  min-height: 70vh;
}

.copy-panel {
  max-width: 58rem;
  margin: 0 clamp(1rem, 5vw, 4rem) clamp(3rem, 7vw, 5rem);
  padding: clamp(1.2rem, 4vw, 2rem);
}

.copy-panel h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.copy-panel h2:first-child {
  margin-top: 0;
}

.copy-panel p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 2rem;
}

.site-footer > div {
  max-width: 42rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.site-footer nav {
  display: grid;
  gap: 0.75rem;
  min-width: 13rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(6, 3, 15, 0.78);
  backdrop-filter: blur(14px);
}

.modal-card {
  width: min(100%, 34rem);
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #18112e;
  box-shadow: var(--shadow);
}

.modal-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.modal-actions button,
.modal-actions .button {
  flex: 1 1 10rem;
  padding: 0.95rem 1rem;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(calc(100% - 2rem), 44rem);
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(24, 17, 46, 0.96);
  box-shadow: var(--shadow);
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.cookie-banner button {
  flex: 0 0 auto;
  padding: 0.75rem 1rem;
}

.is-hidden {
  display: none;
}

@media (max-width: 980px) {
  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .game-grid,
  .room-grid,
  .event-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-game {
    min-height: 25rem;
  }
}

@keyframes wheel-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(320deg);
  }
}

@keyframes reel-pop {
  0% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes card-flip {
  0% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(90deg) translateY(-6px);
  }

  100% {
    transform: rotateY(0deg);
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: stretch;
    flex-direction: column;
  }

  .nav-links {
    justify-content: space-between;
  }

  .coin-balance {
    justify-content: center;
  }

  h1 {
    max-width: 10ch;
    font-size: 3.3rem;
  }

  .showcase-table {
    min-height: 28rem;
  }

  .jackpot-card {
    right: 1rem;
  }

  .stats-strip,
  .policy-strip,
  .game-grid,
  .room-grid,
  .casino-floor,
  .event-row {
    grid-template-columns: 1fr;
  }

  .notice-band,
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .notice-band strong {
    white-space: normal;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    padding-top: 1rem;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  h1 {
    font-size: 2.8rem;
  }

  .reels span {
    min-height: 5.5rem;
    font-size: 2.35rem;
  }

  .slots-art,
  .cards-art {
    grid-template-columns: 1fr;
  }
}
