:root {
  color-scheme: dark;
  --slot-safe-top: env(safe-area-inset-top, 0px);
  --slot-safe-right: env(safe-area-inset-right, 0px);
  --slot-safe-bottom: env(safe-area-inset-bottom, 0px);
  --slot-safe-left: env(safe-area-inset-left, 0px);
  --slot-cabinet-scale: 1;
  --slot-cabinet-left: 0px;
  --slot-cabinet-top: 0px;
  --neon-cyan: #4efcff;
  --neon-pink: #ff38dc;
  --neon-lime: #8fff36;
  --neon-gold: #ffd04a;
  --ink: #03051a;
  --control-glow-image: none;
  --menu-button-glow-image: url("../assets/ui/menu-button-glow.png");
  --bet-down-button-glow-image: url("../assets/ui/bet-down-button-glow.png");
  --bet-up-button-glow-image: url("../assets/ui/bet-up-button-glow.png");
  --spin-button-glow-image: url("../assets/ui/spin-button-glow.png");
  --max-bet-button-glow-image: url("../assets/ui/max-bet-button-glow.png");
  --auto-button-glow-image: url("../assets/ui/auto-button-glow.png");
  font-family: Inter, ui-rounded, "Arial Rounded MT Bold", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: radial-gradient(circle at 50% 40%, #26104d 0, #080827 43%, #02030d 100%);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

body::before {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 78px, rgb(62 251 255 / .025) 79px 80px),
    radial-gradient(circle at 12% 18%, rgb(255 41 216 / .16), transparent 24%),
    radial-gradient(circle at 88% 74%, rgb(25 218 255 / .14), transparent 26%);
}

button { font: inherit; touch-action: manipulation; }
button:not(:disabled) { cursor: pointer; }

#gameShell {
  position: fixed;
  z-index: 1;
  left: var(--slot-cabinet-left);
  top: var(--slot-cabinet-top);
  width: 1670px;
  height: 941px;
  overflow: hidden;
  transform: scale(var(--slot-cabinet-scale));
  transform-origin: top left;
  background: #020415;
  box-shadow: 0 0 80px rgb(0 0 0 / .75);
}

#gameCanvas {
  position: absolute;
  inset: 0;
  width: 1670px;
  height: 941px;
  display: block;
}

.bonusSideAmbient {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.bonusSideVideo {
  position: absolute;
  z-index: 1;
  top: 1px;
  display: block;
  max-width: none;
  opacity: 0;
  object-fit: fill;
  pointer-events: none;
  transition: opacity .22s ease-out;
  will-change: opacity;
}

.bonusBackgroundEffects {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  width: 1670px;
  height: 941px;
  pointer-events: none;
}

.bonusSideVideo.isLeft {
  left: 2px;
  width: 324px;
  height: 785px;
  -webkit-mask-image:
    linear-gradient(to right, #000 0 calc(100% - 14px), transparent 100%),
    linear-gradient(to bottom, #000 0 calc(100% - 24px), transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, #000 0 calc(100% - 14px), transparent 100%),
    linear-gradient(to bottom, #000 0 calc(100% - 24px), transparent 100%);
  mask-composite: intersect;
}

.bonusSideVideo.isRight {
  left: 1350px;
  width: 318px;
  height: 779px;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 14px, #000 100%),
    linear-gradient(to bottom, #000 0 calc(100% - 24px), transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0, #000 14px, #000 100%),
    linear-gradient(to bottom, #000 0 calc(100% - 24px), transparent 100%);
  mask-composite: intersect;
}

#gameShell[data-scene="bonus"] .bonusSideVideo.isReady { opacity: 1; }

.djAlienCraft {
  position: absolute;
  z-index: 3;
  left: 1318px;
  top: 20px;
  width: 360px;
  height: 354px;
  pointer-events: none;
  filter: drop-shadow(0 10px 12px rgb(0 0 0 / .4)) drop-shadow(0 0 10px rgb(69 241 255 / .25));
}

.djAlienCraft.isSaucerFallback:not(.isBonusParked):not(.isBonusFlyout):not(.isReducedMotion) {
  animation: ufoBob 3.8s ease-in-out infinite alternate;
  will-change: transform;
}

.djAlienPoster,
.djAlienCanvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 360px;
  pointer-events: none;
  transition: opacity .18s ease-out;
}

.djAlienPoster {
  height: auto;
  opacity: 1;
}

.djAlienCanvas {
  height: 354px;
  opacity: 0;
}

.djAlienVideo {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.djAlienCraft.isVideoReady .djAlienPoster { opacity: 0; }
.djAlienCraft.isVideoReady .djAlienCanvas { opacity: 1; }
.djAlienCraft.isSaucerFallback .djAlienPoster,
.djAlienCraft.isReducedMotion .djAlienPoster { opacity: 1; }
.djAlienCraft.isSaucerFallback .djAlienCanvas,
.djAlienCraft.isReducedMotion .djAlienCanvas { opacity: 0; }
.djAlienCraft.isBonusParked { opacity: 0; visibility: hidden; }
.djAlienCraft.isBonusFlyout {
  z-index: 82;
  opacity: 1;
  visibility: visible;
  transform-origin: 58% 50%;
  animation: bonusSaucerFlyout .9s cubic-bezier(.18, .72, .2, 1) both;
  will-change: transform, opacity, filter;
}

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

[hidden] { display: none !important; }

.preloader {
  position: absolute;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgb(28 0 60 / .68), rgb(0 2 18 / .98)),
    linear-gradient(120deg, #081543, #31053a);
  transition: opacity .55s ease, visibility .55s;
}

.preloader.isDone { opacity: 0; visibility: hidden; }

.loaderCard {
  width: 540px;
  padding: 42px 54px 38px;
  text-align: center;
  border: 2px solid rgb(95 248 255 / .75);
  border-radius: 36px;
  background: linear-gradient(160deg, rgb(14 22 65 / .96), rgb(45 3 60 / .96));
  box-shadow: 0 0 20px #27e8ff, 0 0 80px rgb(255 34 217 / .35), inset 0 0 38px rgb(80 215 255 / .12);
}

.loaderCard h1 {
  margin: 16px 0 5px;
  font-size: 54px;
  line-height: 1;
  letter-spacing: -.05em;
  text-transform: uppercase;
  background: linear-gradient(#fff, #61edff 45%, #ff46dd 70%);
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 0 #45076b);
}

.loaderCard p { margin: 12px 0 20px; color: #c4eaff; font-weight: 800; }
.loaderTrack { height: 14px; overflow: hidden; border-radius: 99px; background: #020617; border: 1px solid #476b9b; }
.loaderTrack div { width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #23ecff, #8cff2d, #ff35d6); box-shadow: 0 0 20px #44f5ff; transition: width .2s ease; }
.loaderCard > strong { display: block; margin-top: 10px; color: #a8ff4f; font-size: 20px; }

.loaderUfo { position: relative; width: 128px; height: 62px; margin: 0 auto; border-radius: 50%; background: linear-gradient(#80fcff, #6f32ff 45%, #191d55 47%); box-shadow: 0 0 30px #29f5ff; animation: ufoBob 1.45s ease-in-out infinite; }
.loaderUfo::after { position: absolute; content: ""; left: 22px; right: 22px; bottom: -22px; height: 28px; clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%); background: linear-gradient(rgb(116 255 255 / .75), transparent); filter: blur(2px); }
.loaderUfo i { position: absolute; left: 43px; top: -24px; width: 44px; height: 34px; border-radius: 50% 50% 20% 20%; background: radial-gradient(circle at 45% 55%, #b7ff5f 0 8px, #3fa87c 9px, #41efff 22px); border: 3px solid #86f8ff; }

.hudValue {
  position: absolute;
  z-index: 8;
  display: grid;
  place-items: center;
  height: 50px;
  color: #22ff27;
  font: 900 32px/1 "Arial Narrow", Inter, sans-serif;
  letter-spacing: .01em;
  text-shadow: 0 0 7px #0cff21, 0 2px 0 #001d08;
  pointer-events: none;
}
.balanceValue { left: 187px; top: 850px; width: 230px; }
.betValue { left: 513px; top: 850px; width: 136px; }
.winValue { left: 1188px; top: 850px; width: 230px; }

.featureHud {
  position: absolute;
  z-index: 20;
  left: auto;
  right: -10px;
  top: 0;
  width: 280px;
  height: 420px;
  padding: 0;
  border: 0;
  background: url("../assets/ui/bonus-hud-panel.png") center top / 100% 100% no-repeat;
  filter: drop-shadow(0 10px 12px rgb(0 0 0 / .62)) drop-shadow(0 0 12px rgb(56 241 255 / .34));
  pointer-events: none;
}
.featureHud > div { position: absolute; left: 62px; width: 156px; height: 63px; display: grid; align-content: center; padding: 5px 8px; text-align: center; background: transparent; }
.featureHud > div:nth-child(1) { top: 123px; }
.featureHud > div:nth-child(2) { top: 205px; }
.featureHud > div:nth-child(3) { top: 289px; }
.featureHud span { display: block; font-size: 11px; font-weight: 1000; line-height: 1; text-transform: uppercase; color: #d9f7ff; letter-spacing: .08em; text-shadow: 0 1px 0 #05112d, 0 0 7px #34dfff; }
.featureHud strong { display: block; margin-top: 5px; font-size: 27px; line-height: 1; color: #fff06a; text-shadow: 0 2px 0 #6f2800, 0 0 10px #ffca24; }
.freeSpinsMeter { isolation: isolate; border-radius: 12px; }
.freeSpinsMeter::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  border: 2px solid #ecff73;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle, rgb(236 255 115 / .34), rgb(86 255 218 / .05) 68%, transparent 72%);
  box-shadow: 0 0 10px #edff58, 0 0 26px #55ffe2, inset 0 0 16px rgb(239 255 96 / .5);
  pointer-events: none;
}
.freeSpinsMeter.isRefunding { animation: freeSpinsRefundFlash 1.05s ease-out both; }
.freeSpinsMeter.isRefunding::before { animation: freeSpinsRefundBorder 1.05s ease-out both; }
.freeSpinAdded {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: -8px;
  display: block;
  opacity: 0;
  color: #f4ff55;
  font: 1000 34px/1 "Arial Narrow", Inter, sans-serif;
  text-shadow: 0 2px 0 #5b2900, 0 0 8px #fff, 0 0 18px #aaff24;
  transform: translate(-50%, 12px) scale(.72);
  pointer-events: none;
}
.freeSpinAdded.isRising { animation: freeSpinAddedRise 1.05s cubic-bezier(.16, .78, .26, 1) both; }
.freeSpinsMeter.isReducedMotion.isRefunding { animation: none; filter: brightness(1.32) saturate(1.15); }
.freeSpinsMeter.isReducedMotion.isRefunding::before { animation: none; opacity: .9; }
.freeSpinAdded.isReducedMotion.isRising { animation: none; opacity: 1; transform: translate(-50%, -30px) scale(1); }
#gameShell[data-scene="base"] .featureHud { opacity: 0; visibility: hidden; }
#gameShell[data-scene="bonus"] .featureHud { opacity: 1; visibility: visible; transition: opacity .35s ease .45s; }

.artHit {
  --button-glow-image: var(--control-glow-image, none);
  position: absolute;
  z-index: 14;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
  outline: none;
  isolation: isolate;
  transform: translateZ(0);
  transition:
    filter .18s ease,
    opacity .18s ease;
}
.artHit::after {
  position: absolute;
  z-index: -1;
  inset: -8px;
  content: "";
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  background-image: var(--button-glow-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  filter: brightness(1.08) saturate(1.14);
  transform: none;
  transition:
    opacity .18s ease,
    filter .18s ease;
}
.artHit:hover:not(:disabled),
.artHit:focus-visible:not(:disabled) {
  filter: none;
  transform: translateZ(0);
}
.artHit:hover::after,
.artHit:focus-visible::after { opacity: 1; transform: none; }
.artHit:focus-visible::after { filter: brightness(1.2) saturate(1.18) drop-shadow(0 0 7px white); }
.artHit:active:not(:disabled) { filter: none; transform: translateZ(0); }
.artHit:active:not(:disabled)::after { opacity: .82; filter: brightness(.86) saturate(1.12); transform: none; transition-duration: .07s; }
.artHit:disabled { opacity: .42; cursor: not-allowed; transform: none; filter: none; }
.menuButton { --button-glow-image: var(--menu-button-glow-image, var(--control-glow-image, none)); left: 26px; top: 786px; width: 139px; height: 140px; border-radius: 28px; }
.betDownButton { --button-glow-image: var(--bet-down-button-glow-image, var(--control-glow-image, none)); left: 438px; top: 817px; width: 67px; height: 98px; border-radius: 20px; }
.betUpButton { --button-glow-image: var(--bet-up-button-glow-image, var(--control-glow-image, none)); left: 653px; top: 817px; width: 67px; height: 98px; border-radius: 20px; }
.spinButton { --button-glow-image: var(--spin-button-glow-image, var(--control-glow-image, none)); z-index: 46; left: 713px; top: 708px; width: 255px; height: 226px; border-radius: 50%; }
.spinButton .stopFace {
  position: absolute;
  z-index: 3;
  inset: -8px;
  display: none;
  width: auto;
  height: auto;
  translate: none;
  background-image: url("../assets/ui/stop-button.png");
  background-position: calc(50% - 1px) center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  filter: drop-shadow(0 0 15px rgb(255 24 61 / .74));
}
.spinButton .stopFace i { display: none; }
.spinButton.isStopping .stopFace { display: block; }
.spinButton.isStopping::after { opacity: 0 !important; }
.spinButton.isStopping:hover .stopFace,
.spinButton.isStopping:focus-visible .stopFace { filter: brightness(1.12) drop-shadow(0 0 22px #ff2949); }
.spinButton::after,
.maxBetButton::after,
.autoButton::after { background-position: calc(50% - 1px) center; }
.spinButton #autoCountBadge {
  position: absolute;
  z-index: 4;
  left: 94px;
  top: 92px;
  display: grid;
  place-items: center;
  width: 65px;
  height: 64px;
  color: #310008;
  background: transparent;
  font: 1000 39px/.9 "Arial Narrow", Inter, sans-serif;
  letter-spacing: -.055em;
  text-align: center;
  text-shadow: 0 1px 0 rgb(255 255 255 / .55), 0 0 3px rgb(96 0 16 / .38);
  pointer-events: none;
}
.spinButton #autoCountBadge[data-digits="3"] { font-size: 29px; letter-spacing: -.075em; }
.maxBetButton { --button-glow-image: var(--max-bet-button-glow-image, var(--control-glow-image, none)); left: 984px; top: 802px; width: 169px; height: 120px; border-radius: 24px; }
.autoButton { --button-glow-image: var(--auto-button-glow-image, var(--control-glow-image, none)); left: 1471px; top: 782px; width: 165px; height: 146px; border-radius: 27px; }

.paylineRail { position: absolute; z-index: 17; top: 178px; width: 52px; height: 548px; display: flex; flex-direction: column; justify-content: space-around; align-items: center; }
.leftPaylines { left: 278px; }
.rightPaylines { right: 277px; }
.paylineRail button {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 4px solid #b7c1cc;
  border-radius: 50%;
  color: #fff !important;
  background: radial-gradient(circle at 38% 30%, #1b2b54, #071126 72%);
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-shadow: 0 2px 2px #000;
  box-shadow: inset 0 0 0 2px #343d4b, inset 0 3px 5px rgb(255 255 255 / .18), 0 3px 7px rgb(0 0 0 / .55);
  transition: transform .14s ease, filter .14s ease, box-shadow .14s ease;
}
.paylineRail button::before { position: absolute; inset: 3px; content: ""; border: 1px solid rgb(255 255 255 / .2); border-radius: 50%; pointer-events: none; }
.paylineRail button::after { content: none; }
.paylineRail button:hover,
.paylineRail button:focus-visible,
.paylineRail button.isActive { transform: scale(1.06); filter: brightness(1.18); box-shadow: inset 0 0 0 2px #414c5c, 0 0 8px white, 0 0 17px var(--line-color); outline: none; }
.paylineRail button:active { transform: scale(1.03); filter: brightness(.95); transition-duration: .07s; }

.glassPanel {
  position: absolute;
  z-index: 55;
  border: 2px solid #65f7ff;
  border-radius: 28px;
  color: white;
  background: linear-gradient(150deg, rgb(8 18 61 / .97), rgb(67 5 77 / .97));
  box-shadow: 0 0 28px #3beeff, 0 0 75px rgb(255 35 213 / .4), inset 0 0 34px rgb(95 245 255 / .1);
  overflow: hidden;
}
.glassPanel header { padding: 22px 26px 14px; text-align: center; border-bottom: 1px solid rgb(105 242 255 / .25); }
.glassPanel header small { color: #8ff6ff; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.glassPanel h2 { margin: 2px 0 0; font-size: 34px; text-transform: uppercase; }
.autoSpinChoice { right: 42px; bottom: 153px; width: 370px; }
.autoOptions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 20px; }
.autoOptions button { padding: 17px 10px; border: 2px solid #48e8ff; border-radius: 18px; color: #fff; background: linear-gradient(#7b19b0, #321064); font-size: 28px; font-weight: 1000; box-shadow: inset 0 0 18px rgb(255 255 255 / .13); transition: transform .16s cubic-bezier(.2, .85, .25, 1.2), filter .16s ease, box-shadow .16s ease; }
.autoOptions button small { display: block; font-size: 11px; color: #a9efff; text-transform: uppercase; }
.autoOptions button:hover,
.autoOptions button:focus-visible { filter: brightness(1.3); transform: translateY(-2px); box-shadow: inset 0 0 18px rgb(255 255 255 / .2), 0 0 20px rgb(76 238 255 / .55); }
.autoOptions button:active { filter: brightness(.92); transform: translateY(1px) scale(.975); transition-duration: .07s; }
.gameMenuPanel { left: 36px; bottom: 154px; width: 410px; }
.menuOptions { display: grid; gap: 1px; padding: 12px; }
.menuOptions button { min-height: 78px; display: grid; grid-template-columns: 52px 1fr 38px; align-items: center; gap: 10px; border: 0; border-radius: 15px; color: white; text-align: left; background: transparent; transition: transform .16s cubic-bezier(.2, .85, .25, 1.2), background-color .16s ease, filter .16s ease; }
.menuOptions button:hover,
.menuOptions button:focus-visible { background: rgb(77 221 255 / .13); filter: brightness(1.12); transform: translateX(3px); }
.menuOptions button:active { filter: brightness(.92); transform: translateX(1px) scale(.985); transition-duration: .07s; }
.menuOptions i { font-style: normal; font-size: 30px; text-align: center; color: #dfff42; text-shadow: 0 0 10px #7dff20; }
.menuOptions span strong,
.menuOptions span small { display: block; }
.menuOptions span strong { font-size: 20px; }
.menuOptions span small { color: #9ad9ed; }
.menuOptions b { font-size: 28px; text-align: center; color: #60f7ff; }
.menuOptions .toggle { color: #57ff4f; }
.menuOptions button[aria-pressed="false"] .toggle { color: #6e7397; }

.screenOverlay { position: absolute; z-index: 70; inset: 0; }
.laserOverlay {
  --laser-impact-color: #4df9ff;
  --laser-impact-x: 1510px;
  --laser-impact-y: 475px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 68%, rgb(44 228 255 / .13), transparent 28%),
    linear-gradient(90deg, rgb(0 2 18 / .1), transparent 34% 78%, rgb(0 2 18 / .16));
}
.laserOverlay::before,
.laserOverlay::after {
  position: absolute;
  z-index: 5;
  content: "";
  pointer-events: none;
  opacity: 0;
}
.laserOverlay::before {
  left: 0;
  top: calc(var(--laser-impact-y) - 130px);
  width: 100%;
  height: 260px;
  background: linear-gradient(90deg, transparent 22%, color-mix(in srgb, var(--laser-impact-color) 32%, transparent) 56%, transparent 94%);
  filter: blur(28px);
  transform: scaleY(.2);
}
.laserOverlay::after {
  left: calc(var(--laser-impact-x) - 145px);
  top: calc(var(--laser-impact-y) - 145px);
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: radial-gradient(circle, white 0 3%, var(--laser-impact-color) 10%, transparent 64%);
  filter: blur(3px);
  transform: scale(.18);
}
.laserOverlay.isBlasting::before { animation: laserBeamWash .7s ease-out both; }
.laserOverlay.isBlasting::after { animation: laserImpactBloom .72s ease-out both; }
#laserCanvas,
#celebrationCanvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
#laserCanvas { z-index: 6; }
.laserFooterForeground {
  position: absolute;
  z-index: 7;
  left: 0;
  top: 735px;
  width: 383px;
  height: 206px;
  display: block;
  pointer-events: none;
  user-select: none;
}
.laserStage { position: absolute; z-index: 2; inset: 0; overflow: hidden; pointer-events: none; }
.laserStatusPanel {
  position: absolute;
  z-index: 4;
  left: 575px;
  top: 180px;
  width: 520px;
  padding: 15px 28px 13px;
  text-align: center;
  border: 2px solid rgb(90 244 255 / .72);
  border-radius: 18px;
  opacity: 0;
  color: white;
  background: linear-gradient(120deg, rgb(3 12 45 / .88), rgb(62 4 79 / .84));
  box-shadow: 0 0 20px rgb(61 241 255 / .5), inset 0 0 28px rgb(65 219 255 / .1);
  transform: translateY(-28px);
  transition: opacity .3s ease, transform .38s cubic-bezier(.18, .8, .22, 1);
}
.laserStatusPanel small { display: block; color: #8efff2; font-weight: 1000; font-size: 12px; text-transform: uppercase; letter-spacing: .22em; }
.laserStatusPanel h2 { margin: 2px 0 0; font-size: 34px; line-height: 1; text-transform: uppercase; font-style: italic; background: linear-gradient(#fff, #6ffaff 42%, #ff48d8 78%); -webkit-background-clip: text; color: transparent; filter: drop-shadow(0 3px 0 #360561); }
.laserStatusPanel p { margin: 7px 0 0; color: #c6eeff; font-size: 16px; font-weight: 850; }
.laserMachineRig {
  position: absolute !important;
  z-index: 2 !important;
  left: 45px;
  top: 553px;
  width: 330px;
  aspect-ratio: 3 / 2;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transform-origin: 34% 75%;
  filter: drop-shadow(0 12px 7px rgb(0 0 15 / .78)) drop-shadow(0 0 26px rgb(50 239 255 / .5)) drop-shadow(0 0 52px rgb(255 33 213 / .28));
  pointer-events: none;
  will-change: transform, opacity, filter;
}
.laserMachine { display: block; width: 100%; height: 100%; object-fit: contain; pointer-events: none; }
.laserMachineMuzzle { position: absolute; left: 95.6%; top: 32.5%; width: 54px; height: 54px; translate: -50% -50%; border-radius: 50%; opacity: .18; background: radial-gradient(circle, #fff 0 12%, var(--laser-shot-color, #5cf8ff) 28%, transparent 70%); box-shadow: 0 0 18px var(--laser-shot-color, #5cf8ff), 0 0 42px var(--laser-shot-color, #5cf8ff); pointer-events: none; }
.laserMachineRig.isCharging .laserMachineMuzzle { opacity: .72; animation: laserMachineCharge .58s ease-in-out infinite alternate; }
.laserMachineRig.isFiring { animation: laserMachineRecoil var(--laser-fire-duration, 420ms) cubic-bezier(.16, .9, .2, 1); }
.laserMachineRig.isFiring .laserMachineMuzzle { animation: laserMachineMuzzleFire var(--laser-fire-duration, 420ms) ease-out; }
.laserSelector {
  position: absolute !important;
  z-index: 3 !important;
  left: 1446px;
  top: 349px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 0;
  transform: translateX(150px);
  transition: opacity .35s ease, transform .52s cubic-bezier(.18, .86, .22, 1);
}
.laserCard { position: relative; width: 134px; height: 127px; display: grid; place-items: center; overflow: hidden; border: 4px solid #53eaff; border-radius: 18px; background: radial-gradient(circle, #172762, #050719); box-shadow: 0 0 20px #2eefff, inset 0 0 35px rgb(80 235 255 / .2); transform: scale(1); }
.laserCard::after { position: absolute; content: ""; inset: -20%; background: linear-gradient(100deg, transparent 35%, rgb(255 255 255 / .7) 50%, transparent 65%); transform: translateX(-120%); }
.laserCard.isLocked { border-color: #ffda3f; transform: scale(1); box-shadow: 0 0 16px #fff, 0 0 42px #ff36d8; animation: cardLock .45s ease both; }
.laserCard.isImpacting { animation: laserCardImpact .66s cubic-bezier(.16, .9, .2, 1) both; }
.laserCard.isLocked::after { animation: scanFlash .55s ease; }
.laserCard img { width: 100%; height: 100%; object-fit: cover; }
.laserCard span { font-size: 64px; font-weight: 1000; color: #70f7ff; text-shadow: 0 0 25px #2ce9ff; }
#laserReady { position: absolute; z-index: 4; left: 1392px; top: 748px; width: 242px; color: #dfff41; opacity: 0; font-size: 14px; text-align: center; text-transform: uppercase; letter-spacing: .06em; text-shadow: 0 0 10px #83ff31; transition: opacity .25s ease; }
.laserOverlay[data-phase="entering"] .laserMachineRig { animation: laserMachineEnter .952s cubic-bezier(.12, .78, .2, 1) both; }
.laserOverlay[data-phase="targeting"] .laserStatusPanel,
.laserOverlay[data-phase="firing"] .laserStatusPanel,
.laserOverlay[data-phase="locked"] .laserStatusPanel,
.laserOverlay[data-phase="respin"] .laserStatusPanel { opacity: 1; transform: translateY(0); }
.laserOverlay[data-phase="entering"] .laserSelector,
.laserOverlay[data-phase="targeting"] .laserSelector,
.laserOverlay[data-phase="firing"] .laserSelector,
.laserOverlay[data-phase="locked"] .laserSelector,
.laserOverlay[data-phase="respin"] .laserSelector { opacity: 1; transform: translateX(0); }
.laserOverlay[data-phase="locked"] #laserReady,
.laserOverlay[data-phase="respin"] #laserReady { opacity: 1; }
.laserOverlay[data-phase="respin"] .laserMachineRig { filter: drop-shadow(0 12px 7px rgb(0 0 15 / .78)) drop-shadow(0 0 35px rgb(50 239 255 / .58)) drop-shadow(0 0 62px rgb(255 33 213 / .34)); }
.laserOverlay[data-phase="exiting"] .laserMachineRig { animation: laserMachineExit .952s cubic-bezier(.55, 0, .88, .3) both; }
.laserOverlay[data-phase="exiting"] .laserSelector,
.laserOverlay[data-phase="exiting"] .laserStatusPanel,
.laserOverlay[data-phase="exiting"] #laserReady { opacity: 0; transition-duration: .3s; }

.bonusSceneTransition {
  z-index: 80;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
}
.bonusSceneTransition::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: #020411;
  opacity: 0;
  transition: opacity .22s ease;
}
.bonusSceneTransition.doorsClosed::before { opacity: 1; transition-delay: .78s; }
.bonusSceneTransition.isTurbo.doorsClosed::before { transition-delay: .44s; }
.bonusSceneTransition::after {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 0;
  width: 92px;
  height: 100%;
  content: "";
  translate: -50% 0;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgb(255 255 255 / .98) 0 2%, rgb(106 245 255 / .72) 7%, rgb(255 59 224 / .42) 21%, transparent 58%),
    linear-gradient(90deg, transparent, #5ff8ff 42%, #fff 50%, #ff48df 58%, transparent);
  mix-blend-mode: screen;
  filter: blur(1px) drop-shadow(0 0 24px #5ef8ff) drop-shadow(0 0 48px #ff42dc);
}
.bonusSceneTransition.isDoorImpact::after { animation: raveDoorImpactFlash .57s ease-out both; }
.raveDoorHalf {
  position: absolute;
  z-index: 2;
  top: 0;
  width: calc(50% + 1px);
  height: 100%;
  overflow: hidden;
  background: #020411;
  transition: transform 1.16s cubic-bezier(.68, 0, .2, 1);
  will-change: transform;
}
.raveDoorHalf img {
  position: absolute;
  top: 0;
  width: 1670px;
  height: 941px;
  max-width: none;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.raveDoorLeft { left: 0; transform: translateX(-101%); }
.raveDoorLeft img { left: 0; }
.raveDoorRight { right: 0; transform: translateX(101%); }
.raveDoorRight img { right: 0; }
.bonusSceneTransition.doorsClosed .raveDoorHalf { transform: translateX(0); }
.bonusSceneTransition.isTurbo .raveDoorHalf { transition-duration: .7s; }
.bonusSceneTransition.doorsClosed .raveDoorLeft { border-right: 1px solid rgb(255 66 223 / .8); }
.bonusSceneTransition.doorsClosed .raveDoorRight { border-left: 1px solid rgb(94 246 255 / .8); }

.doorOpeningSmoke {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 0;
  width: 220px;
  height: 100%;
  translate: -50% 0;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 16px rgb(123 244 255 / .48));
}
.doorOpeningSmoke::before {
  position: absolute;
  left: 50%;
  top: 7%;
  width: 18px;
  height: 86%;
  content: "";
  translate: -50% 0;
  opacity: 0;
  background: linear-gradient(180deg,
    transparent 0,
    rgb(224 252 255 / .2) 10%,
    rgb(255 255 255 / .72) 48%,
    rgb(115 239 255 / .34) 72%,
    transparent 100%);
  transform: scaleX(.12);
  filter: blur(4px);
  box-shadow: 0 0 18px rgb(94 244 255 / .52), 0 0 34px rgb(255 67 220 / .22);
}
.doorOpeningSmoke i {
  position: absolute;
  left: 50%;
  width: 130px;
  height: 190px;
  border-radius: 50%;
  translate: -50% -50%;
  opacity: 0;
  background: radial-gradient(ellipse at center,
    rgb(255 255 255 / .74) 0 4%,
    rgb(160 247 255 / .48) 15%,
    rgb(179 207 223 / .3) 34%,
    rgb(255 76 220 / .13) 50%,
    transparent 72%);
  transform: scale(.18, .58);
  filter: blur(7px);
}
.doorOpeningSmoke i:nth-child(1) { top: 20%; }
.doorOpeningSmoke i:nth-child(2) { top: 50%; width: 150px; height: 220px; }
.doorOpeningSmoke i:nth-child(3) { top: 80%; }
.bonusSceneTransition[data-phase="opening"] .doorOpeningSmoke {
  animation: doorOpeningSmokeBurst 1.02s ease-out both;
}
.bonusSceneTransition[data-phase="opening"] .doorOpeningSmoke::before {
  animation: doorOpeningSmokeJet .78s ease-out both;
}
.bonusSceneTransition[data-phase="opening"] .doorOpeningSmoke i {
  animation: doorOpeningSmokePlume .92s cubic-bezier(.16, .72, .22, 1) both;
}
.bonusSceneTransition[data-phase="opening"] .doorOpeningSmoke i:nth-child(2) { animation-delay: .04s; }
.bonusSceneTransition[data-phase="opening"] .doorOpeningSmoke i:nth-child(3) { animation-delay: .08s; }
.bonusSceneTransition.isTurbo[data-phase="opening"] .doorOpeningSmoke { animation-duration: .72s; }
.bonusSceneTransition.isTurbo[data-phase="opening"] .doorOpeningSmoke::before { animation-duration: .56s; }
.bonusSceneTransition.isTurbo[data-phase="opening"] .doorOpeningSmoke i { animation-duration: .66s; }

.bonusFlightBurst {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 73% 23%, rgb(255 255 255 / .98) 0 1%, rgb(70 244 255 / .7) 3%, rgb(255 48 216 / .35) 11%, transparent 27%),
    repeating-conic-gradient(from 30deg at 73% 23%, transparent 0 7deg, rgb(93 244 255 / .2) 8deg 9deg, transparent 10deg 18deg);
  mix-blend-mode: screen;
}
.bonusFlightBurst i { position: absolute; left: 73%; top: 23%; width: 90px; height: 90px; border: 5px solid #6af8ff; border-radius: 50%; translate: -50% -50%; box-shadow: 0 0 18px #fff, 0 0 44px #38f5ff, inset 0 0 25px #ff42d8; }
.bonusFlightBurst i:nth-child(2) { width: 180px; height: 180px; border-color: #ff4bdb; }
.bonusFlightBurst i:nth-child(3) { width: 310px; height: 310px; border-color: rgb(178 255 70 / .8); }
.bonusSceneTransition.isFlightActive .bonusFlightBurst { animation: bonusFlightBurst .9s ease-out both; }
.bonusSceneTransition.isFlightActive .bonusFlightBurst i { animation: bonusFlightRing .9s ease-out both; }

.bonusAwardPlaque {
  position: absolute;
  z-index: 6;
  left: 375px;
  top: 164px;
  width: 920px;
  height: 613px;
  opacity: 0;
  transform: translateY(24px) scale(.74);
  filter: drop-shadow(0 18px 18px rgb(0 0 0 / .75)) drop-shadow(0 0 30px rgb(62 242 255 / .55));
  transition: opacity .38s ease, transform .5s cubic-bezier(.18, .9, .26, 1.18);
  pointer-events: none;
}
.bonusAwardPlaque.isVisible { opacity: 1; transform: translateY(0) scale(1); }
.bonusAwardFrame { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.bonusEntryContent,
.bonusExitContent { position: absolute; z-index: 1; left: 105px; top: 158px; width: 710px; height: 280px; display: grid; place-items: center; align-content: center; }
.bonusAwardHeadline { width: 680px; display: flex; align-items: center; justify-content: center; gap: 12px; translate: 2px 0; }
.goldLetterArt { display: block; width: 447px; height: 150px; object-fit: contain; }
.silverLetterArt { display: block; width: 650px; height: 105px; margin-top: -20px; object-fit: contain; }
.metalNumber { display: flex; align-items: center; justify-content: center; filter: drop-shadow(0 5px 0 #6f2000) drop-shadow(0 0 15px #ffdb38); }
.metalNumberDigit { display: block; width: .62em; height: 1em; flex: 0 0 .62em; background-image: url("../assets/ui/numbers.png"); background-repeat: no-repeat; background-size: 1000% auto; background-position: var(--digit-position, 0%) center; }
.metalNumberSeparator { position: relative; display: block; width: .26em; height: 1em; flex: 0 0 .26em; overflow: visible; color: transparent; line-height: 1; text-shadow: none; }
.metalNumberSeparator::after { position: absolute; left: 50%; bottom: .16em; width: .13em; height: .13em; content: ""; translate: -50% 0; border: .018em solid #fff0a4; border-radius: 50%; background: radial-gradient(circle at 35% 28%, #fff8b8 0 13%, #ffd02a 34%, #d86b00 72%, #6e1900 100%); box-shadow: 0 .025em 0 #6f2000, 0 0 .1em #ffdb38; }
.bonusAwardSpins { flex: 0 0 89px; height: 142px; font-size: 142px; }
.bonusExitContent small { color: #e8f9ff; font-size: 25px; font-weight: 1000; text-transform: uppercase; letter-spacing: .18em; text-shadow: 0 0 12px #50edff; }
.bonusExitTotal { min-width: 650px; height: 126px; margin: 4px 0; font-size: 126px; }
.bonusExitContent strong { color: #d7f7ff; font-size: 34px; line-height: 1; text-transform: uppercase; letter-spacing: .12em; text-shadow: 0 2px 0 #111b36, 0 0 12px #56eaff; }

.featureTransition { display: grid; place-items: center; background: radial-gradient(circle, rgb(52 0 77 / .6), rgb(0 2 20 / .96)); overflow: hidden; }
.portalRings { position: absolute; left: 50%; top: 50%; width: 750px; height: 750px; translate: -50% -50%; }
.portalRings i { position: absolute; inset: 0; border: 16px solid transparent; border-top-color: #5cf8ff; border-bottom-color: #ff42d6; border-radius: 50%; filter: drop-shadow(0 0 20px #44efff); animation: portalSpin 3s linear infinite; }
.portalRings i:nth-child(2) { inset: 80px; border-width: 12px; animation-direction: reverse; animation-duration: 2.2s; }
.portalRings i:nth-child(3) { inset: 158px; border-width: 8px; animation-duration: 1.4s; }
.transitionCopy { position: relative; z-index: 1; width: 690px; padding: 55px 65px; text-align: center; border: 3px solid #6df7ff; border-radius: 50px; background: rgb(6 8 38 / .93); box-shadow: 0 0 50px #4df6ff, 0 0 120px #ff2dcc, inset 0 0 55px rgb(87 244 255 / .15); }
.transitionCopy small { color: #76f5ff; font-size: 14px; font-weight: 1000; text-transform: uppercase; letter-spacing: .2em; }
.transitionCopy h2 { margin: 8px 0 0; font-size: 68px; line-height: 1; text-transform: uppercase; background: linear-gradient(#fff, #ffd84a 45%, #ff35cf); -webkit-background-clip: text; color: transparent; }
.transitionCopy > strong { display: block; margin-top: 18px; color: #b7ff48; font-size: 44px; text-shadow: 0 0 24px #7dff24; }
.transitionCopy p { color: #c8edff; font-size: 18px; line-height: 1.5; }
.transitionCopy button { padding: 15px 28px; border: 2px solid #fff; border-radius: 99px; color: #fff; background: linear-gradient(180deg, #f32ac8, #6a12a4); font-size: 18px; font-weight: 1000; text-transform: uppercase; box-shadow: 0 0 20px #ff36d5; transition: transform .16s cubic-bezier(.2, .85, .25, 1.2), filter .16s ease, box-shadow .16s ease; }
.transitionCopy button:hover,
.transitionCopy button:focus-visible { filter: brightness(1.16) saturate(1.12); transform: translateY(-2px) scale(1.02); box-shadow: 0 0 16px #fff, 0 0 34px #ff36d5; }
.transitionCopy button:active { filter: brightness(.92); transform: translateY(1px) scale(.975); transition-duration: .07s; }

.bigWinOverlay {
  --big-win-progress: 0;
  --big-win-dismiss-progress: 0;
  overflow: hidden;
  isolation: isolate;
  opacity: calc(1 - var(--big-win-dismiss-progress));
  will-change: opacity;
  background:
    radial-gradient(circle at 50% 46%, rgb(56 10 92 / .38), transparent 51%),
    radial-gradient(circle at 15% 48%, rgb(151 255 40 / .12), transparent 26%),
    radial-gradient(circle at 85% 48%, rgb(151 255 40 / .12), transparent 26%),
    rgb(0 1 15 / .94);
}
.bigWinOverlay.isFadingOut { pointer-events: none; }
.bigWinOverlay::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    repeating-conic-gradient(from 0deg at 50% 48%, rgb(122 255 50 / .045) 0 2deg, transparent 2deg 13deg),
    radial-gradient(circle at 50% 48%, transparent 0 28%, rgb(67 250 255 / .08) 44%, transparent 70%);
  opacity: calc(.22 + (var(--big-win-progress) * .58));
  transform: scale(calc(.94 + (var(--big-win-progress) * .1)));
}
.bigWinRig { position: absolute; left: 185px; top: 37px; width: 1300px; height: 867px; pointer-events: none; }
.bigWinMachine {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  transform-origin: 50% 53%;
  filter: drop-shadow(0 18px 38px rgb(0 0 0 / .9)) drop-shadow(0 0 28px rgb(87 255 42 / .24));
}
.bigWinOverlay.isPresented .bigWinMachine { animation: bigWinMachineIn .68s cubic-bezier(.13, .86, .23, 1.14) both; }
#celebrationCanvas { z-index: 3; }
.bigWinCanisterGlow {
  position: absolute;
  z-index: 4;
  top: 205px;
  width: 205px;
  height: 375px;
  overflow: hidden;
  border-radius: 42% 42% 30% 30% / 19% 19% 10% 10%;
  opacity: calc(.09 + (var(--big-win-progress) * .7));
  background:
    radial-gradient(ellipse at 50% 72%, rgb(211 255 74 / .55), transparent 62%),
    linear-gradient(180deg, transparent, rgb(97 255 31 / .14) 28%, rgb(180 255 31 / .3) 78%, transparent);
  box-shadow: inset 0 0 38px rgb(211 255 68 / .45), 0 0 42px rgb(104 255 31 / .22);
  mix-blend-mode: screen;
  transform: scaleY(calc(.96 + (var(--big-win-progress) * .04)));
  transform-origin: 50% 100%;
}
.bigWinCanisterGlow.isLeft { left: 39px; }
.bigWinCanisterGlow.isRight { right: 39px; }
.bigWinCanisterGlow::before,
.bigWinCanisterGlow::after {
  position: absolute;
  inset: -50% 0 0;
  content: "";
  background:
    radial-gradient(circle at 22% 78%, rgb(255 255 184 / .85) 0 4px, transparent 6px),
    radial-gradient(circle at 68% 62%, rgb(196 255 66 / .8) 0 7px, transparent 10px),
    radial-gradient(circle at 42% 38%, rgb(255 255 203 / .72) 0 3px, transparent 6px),
    radial-gradient(circle at 80% 22%, rgb(161 255 35 / .82) 0 5px, transparent 8px);
  background-size: 76px 92px, 91px 118px, 62px 83px, 107px 136px;
  animation: bigWinBubbleRise 1.85s linear infinite;
}
.bigWinCanisterGlow::after { opacity: .58; transform: translateX(24px) scale(.72); animation-duration: 2.35s; animation-delay: -.8s; }
.bigWinOverlay[data-big-win-stage="surge"] .bigWinMachine { filter: drop-shadow(0 18px 38px rgb(0 0 0 / .9)) drop-shadow(0 0 42px rgb(112 255 39 / .5)); }
.bigWinOverlay[data-big-win-stage="surge"] .bigWinCanisterGlow::before { animation-duration: 1.35s; }
.bigWinOverlay[data-big-win-stage="overdrive"] .bigWinMachine { animation: bigWinPressurePulse .9s ease-in-out infinite; filter: drop-shadow(0 18px 38px rgb(0 0 0 / .9)) drop-shadow(0 0 58px rgb(119 255 35 / .7)); }
.bigWinOverlay[data-big-win-stage="overdrive"] .bigWinCanisterGlow::before { animation-duration: .92s; }
.bigWinOverlay[data-big-win-stage="overdrive"] .bigWinCanisterGlow::after { animation-duration: 1.18s; }
.bigWinOverlay[data-big-win-stage="finale"] .bigWinMachine { animation: bigWinPressurePulse .48s ease-in-out infinite; filter: brightness(1.12) drop-shadow(0 18px 38px rgb(0 0 0 / .9)) drop-shadow(0 0 78px rgb(139 255 38 / .92)); }
.bigWinOverlay[data-big-win-stage="finale"] .bigWinCanisterGlow { box-shadow: inset 0 0 62px rgb(244 255 123 / .75), 0 0 72px rgb(122 255 34 / .62); }
.bigWinOverlay[data-big-win-stage="finale"] .bigWinCanisterGlow::before { animation-duration: .68s; }
.bigWinOverlay[data-big-win-stage="complete"] .bigWinMachine { animation: none; transform: none; filter: brightness(1.08) drop-shadow(0 18px 38px rgb(0 0 0 / .9)) drop-shadow(0 0 64px rgb(132 255 43 / .72)); }
.bigWinFinaleBloom {
  position: absolute;
  z-index: 4;
  left: 330px;
  top: 190px;
  width: 1010px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(ellipse, rgb(255 255 255 / .9) 0 2%, rgb(185 255 70 / .48) 10%, rgb(67 246 255 / .12) 37%, transparent 68%);
  mix-blend-mode: screen;
  transform: scale(.18);
}
.bigWinOverlay[data-big-win-stage="finale"] .bigWinFinaleBloom { animation: bigWinFinaleBloom .72s ease-out both; }
.bigWinOverlay[data-big-win-stage="complete"] .bigWinFinaleBloom { opacity: .18; transform: scale(1.08); }
.bigWinCopy { position: absolute; z-index: 5; left: 185px; top: 37px; width: 1300px; height: 867px; padding: 0; text-align: center; pointer-events: none; }
.bigWinCopy small {
  position: absolute;
  left: 300px;
  top: 278px;
  width: 700px;
  color: #baff55;
  font-size: 16px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .3em;
  text-shadow: 0 0 14px #74ff23;
}
.bigWinCopy h2 {
  position: absolute;
  left: 260px;
  top: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 780px;
  height: 145px;
  margin: 0;
  font-size: 108px;
  line-height: .88;
  text-transform: uppercase;
  background: linear-gradient(#fff 3%, #e8ff9b 28%, #a7ff2f 51%, #38c51b 70%, #c8ff5a 87%);
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(0 7px 0 #123b11) drop-shadow(0 0 28px #8cff2f);
  animation: winTitleBeat .72s ease-in-out infinite alternate;
}
.bigWinOverlay[data-tier="super"] .bigWinCopy h2 { font-size: 80px; }
.bigWinOverlay[data-tier="cosmic"] .bigWinCopy h2,
.bigWinOverlay[data-tier="mega"] .bigWinCopy h2 { font-size: 94px; }
.bigWinCopy > strong {
  position: absolute;
  left: 270px;
  top: 334px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 760px;
  height: 200px;
  color: white;
  font-size: 124px;
  font-weight: 1000;
  font-variant-numeric: tabular-nums;
  letter-spacing: .005em;
  line-height: .9;
  text-shadow: 0 0 10px #fff, 0 0 28px #9dff35, 0 0 64px #43f5ff, 0 8px 0 #063c37;
  white-space: nowrap;
}
.bigWinCopy p {
  position: absolute;
  left: 440px;
  top: 648px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 420px;
  height: 90px;
  margin: 0;
  color: #c9ff4b;
  font-size: 30px;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 18px #6dff2a;
  white-space: nowrap;
}
.bigWinOverlay.isReducedMotion .bigWinMachine,
.bigWinOverlay.isReducedMotion .bigWinCanisterGlow::before,
.bigWinOverlay.isReducedMotion .bigWinCanisterGlow::after,
.bigWinOverlay.isReducedMotion .bigWinCopy h2,
.bigWinOverlay.isReducedMotion .bigWinFinaleBloom { animation: none !important; }
.bigWinOverlay.isReducedMotion .bigWinCanisterGlow { opacity: .42; }

dialog {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  overflow: hidden;
}
dialog::backdrop { background: rgb(0 1 17 / .84); backdrop-filter: blur(7px); }
.paytableFrame { position: absolute; left: 50%; top: 50%; width: 1360px; height: 800px; padding: 38px 50px 82px; border: 4px solid #5af5ff; border-radius: 48px; background: linear-gradient(145deg, rgb(6 12 48 / .985), rgb(54 4 71 / .985)); box-shadow: 0 0 40px #3feeff, 0 0 110px rgb(255 38 215 / .45), inset 0 0 80px rgb(71 231 255 / .08); transform: translate(-50%, -50%) scale(var(--slot-cabinet-scale)); transform-origin: center; }
.closeButton { position: absolute; z-index: 3; right: 24px; top: 20px; width: 54px; height: 54px; border: 2px solid #8bf9ff; border-radius: 50%; color: white; background: #501179; font-size: 36px; line-height: 1; transition: transform .16s cubic-bezier(.2, .85, .25, 1.2), filter .16s ease, box-shadow .16s ease; }
.closeButton:hover,
.closeButton:focus-visible { filter: brightness(1.2); transform: rotate(4deg) scale(1.06); box-shadow: 0 0 18px #56f7ff; }
.closeButton:active { filter: brightness(.9); transform: scale(.92); transition-duration: .07s; }
.paytableHeading { position: absolute; left: 50px; top: 30px; }
.paytableHeading small { color: #75eeff; font-weight: 900; text-transform: uppercase; letter-spacing: .15em; }
.paytableHeading h2 { margin: 0; font-size: 42px; text-transform: uppercase; }
.paytableContent { position: absolute; left: 50px; right: 50px; top: 118px; bottom: 84px; overflow: auto; padding: 5px 10px 24px 0; }
.paytablePage > h3 {
  margin: 0 0 9px;
  color: #f4fdff;
  font-size: 23px;
  letter-spacing: .035em;
  text-shadow: 0 0 12px rgb(77 239 255 / .48);
}
.paytableLead {
  margin: 0 0 16px;
  padding: 9px 13px;
  border-left: 3px solid #5af5ff;
  border-radius: 4px 12px 12px 4px;
  color: #dceeff;
  background: linear-gradient(90deg, rgb(42 177 211 / .13), transparent 72%);
}
.paytableNote {
  margin: 16px 0 0;
  padding: 9px 13px;
  border: 1px solid rgb(185 255 66 / .18);
  border-radius: 11px;
  color: #dceeff;
  background: linear-gradient(90deg, rgb(147 255 55 / .09), rgb(55 11 89 / .22));
}
.paytableNote strong { color: #dcff4a; text-shadow: 0 0 7px rgb(190 255 43 / .3); }
.paytableGrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.payCard {
  --pay-card-accent: #55f7ff;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  min-height: 146px;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgb(94 238 255 / .6);
  border-radius: 19px;
  background:
    radial-gradient(circle at 14% 24%, rgb(61 232 255 / .16), transparent 42%),
    linear-gradient(135deg, rgb(5 21 55 / .96), rgb(38 4 61 / .92));
  box-shadow: inset 0 0 22px rgb(68 222 255 / .08), 0 8px 18px rgb(0 0 18 / .28);
}
.payCard::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  border-radius: 0 0 99px 99px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--pay-card-accent), #ff48df, transparent);
  box-shadow: 0 0 12px var(--pay-card-accent);
}
.payCard:nth-child(4n + 2),
.payCard:nth-child(4n + 3) { --pay-card-accent: #ff4bdf; }
.payCardSymbol {
  width: 118px;
  height: 112px;
  object-fit: cover;
  border: 1px solid rgb(104 245 255 / .58);
  border-radius: 13px;
  background: #020516;
  box-shadow: 0 0 13px rgb(59 234 255 / .2), inset 0 0 0 2px rgb(255 255 255 / .06);
}
.payCardBody { min-width: 0; }
.payCard h3 {
  overflow: hidden;
  margin: 0 0 7px;
  color: #fff;
  font-size: 18px;
  line-height: 1.05;
  letter-spacing: -.015em;
  text-overflow: ellipsis;
  text-shadow: 0 0 9px rgb(92 239 255 / .42);
  white-space: nowrap;
}
.payRows { display: grid; gap: 4px; margin: 0; }
.payRow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 3px 7px;
  border: 1px solid rgb(86 231 255 / .13);
  border-radius: 7px;
  background: linear-gradient(90deg, rgb(21 59 105 / .46), rgb(12 13 55 / .42));
}
.payRow:first-child {
  border-color: rgb(214 255 74 / .24);
  background: linear-gradient(90deg, rgb(57 85 66 / .5), rgb(26 26 61 / .48));
}
.payRow dt {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 4px;
  color: #bfeeff;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}
.payRow dt strong { color: #fff; font-size: 14px; }
.payRow dd {
  margin: 0;
  color: #dcff4a;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  font-weight: 1000;
  line-height: 1;
  text-align: right;
  text-shadow: 0 0 7px rgb(190 255 43 / .34);
  white-space: nowrap;
}
.ruleGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.ruleCard { min-height: 190px; padding: 25px; border: 1px solid rgb(83 239 255 / .45); border-radius: 22px; background: linear-gradient(135deg, rgb(7 28 65 / .75), rgb(60 7 74 / .75)); }
.ruleCard h3 { margin: 0 0 8px; color: #e9ff42; font-size: 25px; }
.ruleCard p { margin: 0; color: #d4edff; line-height: 1.55; }
.featureAwardList {
  display: grid;
  gap: 6px;
  margin: 10px 0 12px;
  padding: 0;
  list-style: none;
}
.featureAwardList li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: baseline;
  gap: 18px;
  min-width: 0;
  padding: 5px 9px;
  border: 1px solid rgb(84 235 255 / .16);
  border-radius: 8px;
  background: linear-gradient(90deg, rgb(26 70 111 / .38), rgb(31 10 66 / .32));
}
.featureAwardList strong { color: #fff; white-space: nowrap; }
.featureAwardList span {
  color: #dcff4a;
  font-weight: 900;
  text-align: right;
  text-shadow: 0 0 7px rgb(190 255 43 / .28);
  white-space: nowrap;
}
.lineDiagramGrid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.lineCard { padding: 14px; border-radius: 18px; background: rgb(2 7 31 / .65); text-align: center; }
.lineCard strong { display: block; color: #8df8ff; margin-bottom: 8px; }
.miniLine { display: grid; grid-template-columns: repeat(5, 1fr); gap: 3px; }
.miniLine > span { display: grid; grid-template-rows: repeat(3, 13px); gap: 2px; }
.miniLine i { display: block; border-radius: 3px; background: #28345c; }
.miniLine i.isLine { background: #ff3fd9; box-shadow: 0 0 7px #ff3fd9; }
.paytableTabs { position: absolute; left: 50%; bottom: 24px; translate: -50%; display: flex; gap: 12px; }
.paytableTabs button { min-width: 160px; padding: 12px 18px; border: 1px solid #5cf4ff; border-radius: 99px; color: white; background: #21105c; font-weight: 900; transition: transform .16s cubic-bezier(.2, .85, .25, 1.2), filter .16s ease, box-shadow .16s ease; }
.paytableTabs button[aria-current="page"] { color: #11162a; background: #cfff45; box-shadow: 0 0 18px #96ff2c; }
.paytableTabs button:hover,
.paytableTabs button:focus-visible { filter: brightness(1.18); transform: translateY(-2px); box-shadow: 0 0 18px #48efff; }
.paytableTabs button:active { filter: brightness(.92); transform: translateY(1px) scale(.975); transition-duration: .07s; }


.qaControls { position: absolute; z-index: 90; right: 10px; top: 10px; }
#qaButton { width: 42px; height: 42px; border: 1px solid #69efff; border-radius: 50%; color: white; background: rgb(25 5 55 / .88); opacity: .55; transition: transform .16s cubic-bezier(.2, .85, .25, 1.2), filter .16s ease, opacity .16s ease; }
#qaButton:hover,
#qaButton:focus-visible { opacity: 1; filter: brightness(1.18); transform: rotate(18deg) scale(1.06); }
#qaButton:active { filter: brightness(.9); transform: rotate(18deg) scale(.92); transition-duration: .07s; }
#qaPanel { width: 210px; margin-top: 8px; padding: 12px; border: 1px solid #68f3ff; border-radius: 16px; background: rgb(3 7 31 / .96); box-shadow: 0 0 20px #40eaff; }
#qaPanel strong { display: block; padding: 4px; color: #baff4d; }
#qaPanel button { width: 100%; margin-top: 5px; padding: 8px; border: 0; border-radius: 8px; color: white; background: #4d197d; transition: transform .14s ease, filter .14s ease, background-color .14s ease; }
#qaPanel button:hover,
#qaPanel button:focus-visible { background: #8a24a9; filter: brightness(1.1); transform: translateX(2px); }
#qaPanel button:active { filter: brightness(.9); transform: translateX(1px) scale(.985); transition-duration: .07s; }

.orientationHint { position: fixed; z-index: 200; inset: 0; display: none; place-items: center; align-content: center; gap: 8px; padding: 40px; text-align: center; background: radial-gradient(circle, #311064, #040519); color: white; }
.orientationHint::before { content: "↻"; display: block; font-size: 80px; color: #8eff41; text-shadow: 0 0 20px #62ff2b; }
.orientationHint strong { display: block; font-size: 32px; text-transform: uppercase; }
.orientationHint span { color: #aee8ff; }

@keyframes ufoBob {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -7px, 0); }
}
@keyframes bonusSaucerFlyout {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 1; filter: drop-shadow(0 10px 12px rgb(0 0 0 / .4)) drop-shadow(0 0 12px #4efcff); }
  48% { transform: translate3d(-310px, 145px, 0) scale(2.25) rotate(-2deg); opacity: 1; filter: drop-shadow(0 20px 28px rgb(0 0 0 / .52)) drop-shadow(0 0 45px #4efcff) drop-shadow(0 0 75px #ff38dc); }
  100% { transform: translate3d(-650px, 350px, 0) scale(6.2) rotate(2deg); opacity: 0; filter: brightness(2.6) drop-shadow(0 0 90px #fff) drop-shadow(0 0 160px #4efcff); }
}
@keyframes bonusFlightBurst { 0% { opacity: 0; transform: scale(.35); } 35% { opacity: 1; } 100% { opacity: 0; transform: scale(2.8); } }
@keyframes bonusFlightRing { 0% { opacity: 0; transform: scale(.2); } 24% { opacity: 1; } 100% { opacity: 0; transform: scale(4.6); border-width: 1px; } }
@keyframes doorOpeningSmokeBurst {
  0% { opacity: 0; }
  9% { opacity: .82; }
  52% { opacity: .54; }
  100% { opacity: 0; }
}
@keyframes doorOpeningSmokeJet {
  0% { opacity: 0; transform: scaleX(.12); }
  12% { opacity: .78; transform: scaleX(.5); }
  52% { opacity: .34; transform: scaleX(1.35); }
  100% { opacity: 0; transform: scaleX(2.2); }
}
@keyframes doorOpeningSmokePlume {
  0% { opacity: 0; transform: scale(.18, .58); }
  16% { opacity: .72; transform: scale(.62, .86); }
  58% { opacity: .34; transform: translateY(-6px) scale(1.45, 1.12); }
  100% { opacity: 0; transform: translateY(-16px) scale(2.05, 1.38); }
}
@keyframes raveDoorImpactFlash {
  0% { opacity: 0; transform: scaleX(.08); }
  12% { opacity: 1; transform: scaleX(1.55); }
  38% { opacity: .82; transform: scaleX(.64); }
  100% { opacity: 0; transform: scaleX(.16); }
}
@keyframes rotate { to { rotate: 1turn; } }
@keyframes portalSpin { to { rotate: 1turn; } }
@keyframes cardLock { 0% { transform: scale(.6) rotate(-7deg); filter: brightness(3); } 70% { transform: scale(1.08) rotate(2deg); } 100% { transform: scale(1); } }
@keyframes scanFlash { to { transform: translateX(120%); } }
@keyframes laserMachineCharge { from { transform: scale(.72); filter: brightness(.85); } to { transform: scale(1.18); filter: brightness(1.55); } }
@keyframes laserMachineEnter {
  0% { opacity: 0; transform: translate3d(-90px, 430px, 0) scale(.76) rotate(-4deg); filter: brightness(.55) blur(3px); }
  58% { opacity: 1; transform: translate3d(16px, -12px, 0) scale(1.025) rotate(.7deg); filter: brightness(1.32) blur(0); }
  78% { transform: translate3d(-5px, 4px, 0) scale(.995) rotate(-.2deg); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1) rotate(0); filter: brightness(1); }
}
@keyframes laserMachineExit {
  0% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: brightness(1); }
  24% { opacity: 1; transform: translate3d(10px, -12px, 0) scale(1.025) rotate(.6deg); filter: brightness(1.35); }
  100% { opacity: 0; transform: translate3d(-100px, 455px, 0) scale(.74) rotate(-5deg); filter: brightness(.45) blur(4px); }
}
@keyframes laserMachineRecoil { 0%, 100% { transform: translateX(0) rotate(0) scale(1); } 14% { transform: translateX(-24px) rotate(-.55deg) scale(1.012); } 42% { transform: translateX(7px) rotate(.15deg) scale(.998); } }
@keyframes laserMachineMuzzleFire { 0% { opacity: 1; transform: scale(.45); filter: brightness(3); } 28% { opacity: 1; transform: scale(1.8); filter: brightness(2.2); } 100% { opacity: .22; transform: scale(.72); filter: brightness(1); } }
@keyframes laserBeamWash {
  0% { opacity: 0; transform: scaleY(.15); }
  12% { opacity: .96; transform: scaleY(1.35); }
  38% { opacity: .62; transform: scaleY(.72); }
  100% { opacity: 0; transform: scaleY(.18); }
}
@keyframes laserImpactBloom {
  0% { opacity: 0; transform: scale(.15); }
  12% { opacity: 1; transform: scale(1.25); }
  44% { opacity: .68; transform: scale(.72); }
  100% { opacity: 0; transform: scale(1.8); }
}
@keyframes laserCardImpact {
  0% { transform: scale(.78) rotate(-3deg); filter: brightness(3); }
  36% { transform: scale(1.12) rotate(1deg); filter: brightness(1.8); }
  68% { transform: scale(.97) rotate(-.3deg); filter: brightness(1.18); }
  100% { transform: scale(1); filter: brightness(1); }
}
@keyframes freeSpinsRefundFlash {
  0% { filter: brightness(1) saturate(1); }
  15% { filter: brightness(2) saturate(1.45); }
  38% { filter: brightness(1.18) saturate(1.1); }
  56% { filter: brightness(1.7) saturate(1.32); }
  100% { filter: brightness(1) saturate(1); }
}
@keyframes freeSpinsRefundBorder {
  0% { opacity: 0; transform: scale(.86); }
  14%, 48% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(1.18); }
}
@keyframes freeSpinAddedRise {
  0% { opacity: 0; transform: translate(-50%, 12px) scale(.72); }
  15% { opacity: 1; transform: translate(-50%, -2px) scale(1.12); }
  70% { opacity: 1; transform: translate(-50%, -45px) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -68px) scale(1.06); }
}
@keyframes winTitleBeat { to { transform: scale(1.035); filter: drop-shadow(0 9px 0 #123b11) drop-shadow(0 0 45px #9dff39); } }
@keyframes bigWinMachineIn {
  0% { opacity: 0; transform: translateY(45px) scale(.72); }
  62% { opacity: 1; transform: translateY(-8px) scale(1.025); }
  100% { opacity: 1; transform: none; }
}
@keyframes bigWinBubbleRise { to { transform: translateY(-42%); } }
@keyframes bigWinPressurePulse {
  0%, 100% { transform: translate(0, 0) scale(1); }
  35% { transform: translate(-1px, 1px) scale(1.003); }
  70% { transform: translate(1px, -1px) scale(1.006); }
}
@keyframes bigWinFinaleBloom {
  0% { opacity: 0; transform: scale(.18); }
  24% { opacity: .94; transform: scale(.72); }
  100% { opacity: 0; transform: scale(1.36); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .bonusSceneTransition.isDoorImpact::after { animation: none !important; opacity: .68; transform: scaleX(.38); }
  .bonusSceneTransition[data-phase="opening"] .doorOpeningSmoke {
    animation: none !important;
    opacity: .38;
  }
  .bonusSceneTransition[data-phase="opening"] .doorOpeningSmoke::before {
    animation: none !important;
    opacity: .46;
    transform: scaleX(.58);
  }
  .bonusSceneTransition[data-phase="opening"] .doorOpeningSmoke i {
    animation: none !important;
    opacity: .2;
    transform: scale(.82, .92);
  }
  .djAlienCraft { animation: none !important; transform: none !important; }
  .djAlienPoster { opacity: 1 !important; }
  .djAlienCanvas { opacity: 0 !important; }
}

html[data-slot-orientation="portrait"] #gameShell { visibility: hidden; }
html[data-slot-orientation="portrait"] .orientationHint { display: grid; }

html[data-slot-viewport="compact-landscape"] .qaControls { display: none; }

html[data-slot-viewport="compact-landscape"] .hudValue { height: 58px; font-size: 40px; }
html[data-slot-viewport="compact-landscape"] .betDownButton { left: 414px; top: 798px; width: 112px; height: 128px; }
html[data-slot-viewport="compact-landscape"] .betUpButton { left: 630px; top: 798px; width: 112px; height: 128px; }
html[data-slot-viewport="compact-landscape"] .paylineRail button { width: 58px; height: 58px; font-size: 23px; }
html[data-slot-viewport="compact-landscape"] .paytableFrame {
  width: calc(var(--slot-viewport-width) - 20px);
  height: calc(var(--slot-viewport-height) - 20px);
  padding: 20px 20px 62px;
  border-width: 2px;
  border-radius: 22px;
  transform: translate(-50%, -50%);
}
html[data-slot-viewport="compact-landscape"] .paytableHeading { left: 22px; top: 14px; }
html[data-slot-viewport="compact-landscape"] .paytableHeading small { font-size: 10px; }
html[data-slot-viewport="compact-landscape"] .paytableHeading h2 { font-size: 27px; }
html[data-slot-viewport="compact-landscape"] .closeButton { right: 15px; top: 13px; width: 42px; height: 42px; font-size: 28px; }
html[data-slot-viewport="compact-landscape"] .paytableContent { left: 22px; right: 22px; top: 68px; bottom: 62px; padding-right: 6px; }
html[data-slot-viewport="compact-landscape"] .paytablePage > h3 { margin: 0 0 4px; font-size: 18px; }
html[data-slot-viewport="compact-landscape"] .paytableLead,
html[data-slot-viewport="compact-landscape"] .paytableNote { margin: 5px 0 8px; font-size: 12px; }
html[data-slot-viewport="compact-landscape"] .paytableGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
html[data-slot-viewport="compact-landscape"] .payCard { grid-template-columns: 70px minmax(0, 1fr); min-height: 88px; gap: 8px; padding: 7px; border-radius: 12px; }
html[data-slot-viewport="compact-landscape"] .payCardSymbol { width: 70px; height: 68px; border-radius: 8px; }
html[data-slot-viewport="compact-landscape"] .payCard h3 { margin-bottom: 4px; font-size: 15px; }
html[data-slot-viewport="compact-landscape"] .payRows { gap: 2px; }
html[data-slot-viewport="compact-landscape"] .payRow { gap: 5px; padding: 1px 4px; border-radius: 5px; }
html[data-slot-viewport="compact-landscape"] .payRow dt { gap: 3px; font-size: 10px; }
html[data-slot-viewport="compact-landscape"] .payRow dt strong { font-size: 11px; }
html[data-slot-viewport="compact-landscape"] .payRow dd { font-size: 13px; }
html[data-slot-viewport="compact-landscape"] .ruleGrid { gap: 9px; }
html[data-slot-viewport="compact-landscape"] .ruleCard { min-height: 130px; padding: 14px; }
html[data-slot-viewport="compact-landscape"] .ruleCard h3 { font-size: 18px; }
html[data-slot-viewport="compact-landscape"] .ruleCard p,
html[data-slot-viewport="compact-landscape"] .ruleCard li { font-size: 12px; }
html[data-slot-viewport="compact-landscape"] .lineDiagramGrid { gap: 7px; }
html[data-slot-viewport="compact-landscape"] .lineCard { padding: 8px; }
html[data-slot-viewport="compact-landscape"] .paytableTabs { bottom: 10px; gap: 7px; }
html[data-slot-viewport="compact-landscape"] .paytableTabs button { min-width: 104px; padding: 8px 11px; font-size: 11px; }
