/* === Base === */
* {box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, sans-serif;
  background: linear-gradient(180deg, #050607, #0b0d10);
  color: #f2f4f7;
}

.page {
  min-height: 100vh;
  display: grid;
  justify-items: center;
  align-items: start;
  padding: 40px 16px 32px;
}

/* === Shared shell widths === */
.hub-view,
.selector-view,
.machine-view {
  width: min(1180px, 100%);
}

.selector-view,
.machine-view {
  display: grid;
  gap: 18px;
}

/* === Shared copy === */
.zone-label,
.selector-eyebrow,
.selector-machine-kicker,
.selector-machine-meta,
.payouts-eyebrow {
  color: #aeb4bc;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

/* === Hub === */
.hub-view {
  display: grid;
  gap: 24px;
  justify-items: center;
}

.hub-header {
  text-align: center;
  display: grid;
  gap: 6px;
}

.hub-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: #aeb4bc;
  margin: 0;
}

.hub-title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hub-subcopy {
  margin: 0;
  color: #aeb4bc;
  font-size: 0.95rem;
  max-width: 42ch;
}

.hub-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
}

.hub-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  padding: 20px 18px 18px;
  display: grid;
  gap: 8px;
  align-content: start;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: default;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.hub-card-bar {
  height: 3px;
  border-radius: 999px;
  width: 60%;
}

.hub-card.live .hub-card-bar { background: linear-gradient(90deg, #8b1f2f, #e0b466); }
.hub-card.held .hub-card-bar { background: linear-gradient(90deg, rgba(180, 160, 120, 0.4), rgba(180, 160, 120, 0.2)); }

.hub-card-badge {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #aeb4bc;
  font-weight: 600;
}

.hub-card-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.hub-card-subtitle {
  margin: 0;
  font-size: 0.82rem;
  color: #8c8b95;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hub-card-body {
  margin: 0;
  font-size: 0.88rem;
  color: #aeb4bc;
  line-height: 1.4;
  min-height: 72px;
}

.hub-card-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.hub-card-status-pill {
  display: inline-grid;
  place-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hub-card-status.live .hub-card-status-pill {
  background: linear-gradient(180deg, #8b1f2f, #5a1519);
  color: #f5e9ce;
}

.hub-card-status.held .hub-card-status-pill {
  background: rgba(180, 160, 120, 0.18);
  color: #b4a078;
}

.hub-card-status-copy {
  font-size: 0.82rem;
  color: #aeb4bc;
}

.hub-card.live {
  cursor: pointer;
  border-color: rgba(139, 31, 47, 0.22);
}

.hub-card.live:hover {
  box-shadow: 0 0 0 1px rgba(139, 31, 47, 0.18), 0 18px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(139, 31, 47, 0.32);
}

.hub-card.held {
  opacity: 0.7;
  cursor: not-allowed;
}

.hub-footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 0.78rem;
  color: #72767d;
  padding: 0 4px;
}

/* === Slots lounge / selector === */
.selector-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
}

.selector-heading {
  display: grid;
  gap: 6px;
}

.selector-title {
  margin: 0;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.selector-subcopy {
  margin: 0;
  color: #aeb4bc;
  font-size: 0.95rem;
  max-width: 48ch;
  line-height: 1.45;
}

.selector-nav-button,
.payouts-close {
  min-height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, #20252b, #0f1116);
  color: #f2f4f7;
  font: inherit;
  font-weight: 600;
  padding: 0 16px;
}

.selector-shell {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
  padding: 18px;
  display: grid;
  gap: 16px;
}

.selector-summary-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
  padding: 12px 14px;
}

.selector-summary-pill {
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #8b1f2f, #5a1519);
  color: #f5e9ce;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.selector-summary-copy {
  color: #c7ccd4;
  font-size: 0.88rem;
}

.selector-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.selector-machine-button {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    linear-gradient(180deg, #181c22, #0d1014);
  border-radius: 22px;
  padding: 16px 14px 14px;
  display: grid;
  gap: 10px;
  align-content: start;
  text-align: left;
  color: inherit;
  font: inherit;
  min-height: 260px;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.selector-machine-button:hover {
  transform: translateY(-2px);
  border-color: rgba(224, 180, 102, 0.32);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.selector-machine-button:disabled,
.control-btn:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.selector-machine-name {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.2;
}

.selector-machine-summary {
  color: #c3c9d1;
  font-size: 0.86rem;
  line-height: 1.45;
}

.selector-machine-progressive {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  color: #aeb4bc;
  font-size: 0.8rem;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.selector-machine-progressive strong {
  color: #f5e9ce;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

/* === Active machine room === */
.machine-view {
  justify-items: center;
}

.machine-stage {
  display: grid;
  place-items: center;
  width: 100%;
}

.machine-shell {
  position: relative;
  width: min(88vw, 820px);
  border-radius: 42px;
  padding: 20px 20px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 9%),
    linear-gradient(180deg, #1b1e23 0%, #111419 28%, #0b0d11 100%);
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.58);
}

.bezel {
  position: absolute;
  inset: 8px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.machine-shell::after {
  content: "";
  position: absolute;
  inset: auto 10% 8% 10%;
  height: 15%;
  opacity: 0.14;
  pointer-events: none;
}

.zone {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 12px 30px rgba(0, 0, 0, 0.32);
}

.header-zone {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 15px 16px 13px;
}

.header-trim {
  border-radius: 999px;
}

.machine-name,
.progressive-value,
.reel-stop span,
.live-value strong {
  font-weight: 700;
}

.machine-name {
  letter-spacing: 0.16em;
  font-size: clamp(1.08rem, 2vw, 1.54rem);
}

.progressive-zone {
  margin-top: 10px;
  display: grid;
  justify-items: center;
  gap: 3px;
  padding: 8px 12px 9px;
  border-radius: 18px;
}

.progressive-value {
  font-size: clamp(1.14rem, 2.3vw, 1.55rem);
}

.chamber-zone {
  margin-top: 10px;
  padding: 10px;
}

.viewport-shell {
  border-radius: 22px;
  padding: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reel-viewport {
  position: relative;
  aspect-ratio: 1;
  width: min(100%, 58vh);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  grid-auto-flow: column;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.015),
    inset 0 18px 24px rgba(255, 255, 255, 0.012),
    inset 0 -44px 54px rgba(0, 0, 0, 0.54),
    0 10px 22px rgba(0, 0, 0, 0.24);
}

.glass,
.viewport-rim,
.machine-aura,
.machine-field,
.machine-signal {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glass {
  z-index: 6;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 30%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.02), transparent 20%);
}

.viewport-rim { z-index: 5; }
.machine-aura { z-index: 1; }
.machine-field { z-index: 2; }
.machine-signal { z-index: 3; }

.reel-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  z-index: 4;
}

.divider-left { left: 33.3333%; }
.divider-right { left: 66.6667%; }

.reel-band { display: contents; }

.reel-stop {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.003));
}

.reel-stop + .reel-stop {
  border-top: 1px solid rgba(244, 246, 248, 0.028);
}

.reel-stop-focus {
  box-shadow: inset 0 16px 20px rgba(255, 255, 255, 0.01), inset 0 -18px 24px rgba(0, 0, 0, 0.1);
}

.reel-stop span {
  font-size: 0.82rem;
}

.reel-symbol-img {
  display: block;
  width: clamp(38px, 10vmin, 58px);
  height: clamp(38px, 10vmin, 58px);
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  flex-shrink: 0;
}

.reel-stop.has-art span {
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  line-height: 1.15;
  opacity: 0.82;
}

.reel-stop.has-art small {
  display: none;
}

.live-values-zone {
  margin-top: 12px;
  display: grid;
  gap: 8px;
  padding: 12px 14px 10px;
  border-radius: 20px;
}

.live-values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
}

.live-value {
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 12px 8px 10px;
  background: rgba(255, 255, 255, 0.02);
}

.live-value + .live-value {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.live-value strong {
  font-size: 1.1rem;
}

.status-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 0 2px;
  min-height: 20px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

.status-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #aeb4bc;
}

.status-indicator:not(.visible) {
  opacity: 0;
}

.status-indicator.visible {
  opacity: 1;
  transition: opacity 0.2s;
}

.control-deck {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
  margin-top: 12px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 12px 26px rgba(0, 0, 0, 0.18);
}

.control-btn {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    linear-gradient(180deg, #20252b, #0f1116);
  color: #f2f4f7;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
  font-family: inherit;
}

.control-btn.primary-action {
  color: #fff;
}

.payouts-panel {
  width: min(1180px, 100%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.26);
  padding: 18px;
  display: grid;
  gap: 16px;
}

.payouts-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}

.payouts-title {
  margin: 4px 0 0;
  font-size: 1.18rem;
}

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

.payouts-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.payouts-card h3 {
  margin: 0;
  font-size: 0.98rem;
}

.payouts-copy {
  margin: 0;
  color: #aeb4bc;
  font-size: 0.84rem;
  line-height: 1.45;
}

.payouts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.payouts-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  font-size: 0.86rem;
  color: #d4d9df;
}

.payouts-item strong {
  color: #f5e9ce;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.payout-symbol-cell {
  display: flex;
  align-items: center;
  gap: 7px;
}

.payout-symbol-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* === Resolved result state === */
body[data-win-result="win"] #win-value {
  color: #e0b466;
  font-size: 1.26rem;
}

body[data-win-result="loss"] #win-value {
  color: #72767d;
}

/* === Responsive === */
@media (max-width: 1100px) {
  .selector-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hub-cards,
  .payouts-grid {
    grid-template-columns: 1fr;
  }

  .selector-header,
  .selector-summary-bar {
    grid-template-columns: 1fr;
    display: grid;
    align-items: start;
  }

  .selector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hub-cards,
  .selector-grid,
  .payouts-grid {
    grid-template-columns: 1fr;
  }

  .hub-footer {
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }

  .machine-shell {
    width: min(98vw, 620px);
    padding: 16px 14px 14px;
    border-radius: 30px;
  }

  .reel-viewport {
    width: min(100%, 46vh);
  }

  .live-values-row {
    grid-template-columns: 1fr;
  }

  .live-value + .live-value {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
}

/* === Machine themes === */
body[data-machine="blaziken-blitz"] .machine-shell::after { background: radial-gradient(circle at center, rgba(189, 88, 69, 0.14), transparent 72%); }
body[data-machine="blaziken-blitz"] .control-deck .primary-action,
body[data-machine="blaziken-blitz"] .status-dot { background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)), linear-gradient(180deg, #9e3b2d, #5a211d); }
body[data-machine="blaziken-blitz"] .header-zone { background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)), linear-gradient(180deg, #2c1816, #131013); }
body[data-machine="blaziken-blitz"] .header-trim { width: 84%; height: 3px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04) 14%, rgba(221, 190, 121, 0.18) 50%, rgba(255, 255, 255, 0.04) 86%, transparent); }
body[data-machine="blaziken-blitz"] .machine-name,
body[data-machine="blaziken-blitz"] .progressive-value,
body[data-machine="blaziken-blitz"] .reel-stop span { color: #f5e9ce; }
body[data-machine="blaziken-blitz"] .machine-name { text-shadow: 0 0 12px rgba(225, 141, 126, 0.18); }
body[data-machine="blaziken-blitz"] .progressive-zone { border-color: rgba(225, 141, 126, 0.14); }
body[data-machine="blaziken-blitz"] .live-values-zone,
body[data-machine="blaziken-blitz"] .payouts-panel { border-color: rgba(189, 88, 69, 0.16); }
body[data-machine="blaziken-blitz"] .chamber-zone { background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008)), linear-gradient(180deg, #1f1314, #0d0b10); }
body[data-machine="blaziken-blitz"] .viewport-shell { border: 1px solid rgba(225, 141, 126, 0.14); }
body[data-machine="blaziken-blitz"] .reel-viewport { border: 1px solid rgba(225, 141, 126, 0.17); background: linear-gradient(180deg, rgba(34, 19, 19, 0.96), rgba(13, 11, 13, 0.99)); }
body[data-machine="blaziken-blitz"] .viewport-rim { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), inset 0 0 42px rgba(0, 0, 0, 0.32), inset 0 -12px 28px rgba(0, 0, 0, 0.24), inset 0 0 0 1px rgba(225, 141, 126, 0.03); }
body[data-machine="blaziken-blitz"] .machine-aura { background: radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.03), transparent 10%), linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(0, 0, 0, 0) 22%, rgba(225, 141, 126, 0.02) 70%, rgba(0, 0, 0, 0) 88%); }
body[data-machine="blaziken-blitz"] .machine-field { background: radial-gradient(circle at 50% 30%, rgba(225, 141, 126, 0.10), transparent 24%), radial-gradient(circle at 50% 76%, rgba(111, 48, 40, 0.12), transparent 24%); }
body[data-machine="blaziken-blitz"] .machine-signal { background: radial-gradient(circle at 50% 11%, rgba(221, 190, 121, 0.16), transparent 8%), radial-gradient(circle at 76% 22%, rgba(255, 255, 255, 0.06), transparent 8%); }
body[data-machine="blaziken-blitz"] .reel-divider { background: rgba(35, 14, 13, 0.92); box-shadow: 0 0 0 1px rgba(225, 141, 126, 0.06); }
body[data-machine="blaziken-blitz"] .reel-stop { background: linear-gradient(180deg, rgba(64, 33, 29, 0.74), rgba(22, 15, 18, 0.88)); }
body[data-machine="blaziken-blitz"] .reel-stop-focus { box-shadow: inset 0 0 0 1px rgba(189, 88, 69, 0.22), inset 0 16px 20px rgba(255, 255, 255, 0.01), inset 0 -18px 24px rgba(0, 0, 0, 0.1); }

 body[data-machine="gengar-goldrush"] .machine-shell::after { background: radial-gradient(circle at center, rgba(124, 120, 168, 0.12), transparent 72%); }
body[data-machine="gengar-goldrush"] .control-deck .primary-action,
body[data-machine="gengar-goldrush"] .status-dot { background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)), linear-gradient(180deg, #7a6ea0, #42386a); }
body[data-machine="gengar-goldrush"] .header-zone { background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)), linear-gradient(180deg, #1e1b27, #100f17); }
body[data-machine="gengar-goldrush"] .header-trim { width: 82%; height: 3px; background: linear-gradient(90deg,  transparent, rgba(214, 178, 76, 0.05) 18%, rgba(214, 178, 76, 0.20) 50%, rgba(214, 178, 76, 0.05) 82%, transparent); }
body[data-machine="gengar-goldrush"] .machine-name,
body[data-machine="gengar-goldrush"] .progressive-value,
body[data-machine="gengar-goldrush"] .reel-stop span { color: #f4f6f8; }
body[data-machine="gengar-goldrush"] .machine-name { text-shadow: 0 0 12px rgba(124, 120, 168, 0.18); }
body[data-machine="gengar-goldrush"] .progressive-zone { border-color: rgba(124, 120, 168, 0.18); }
body[data-machine="gengar-goldrush"] .live-values-zone,
body[data-machine="gengar-goldrush"] .payouts-panel { border-color: rgba(124, 120, 168, 0.16); }
body[data-machine="gengar-goldrush"] .chamber-zone { background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008)), linear-gradient(180deg, #15131d, #090a10); }
body[data-machine="gengar-goldrush"] .viewport-shell { border: 1px solid rgba(167, 154, 183, 0.12); }
body[data-machine="gengar-goldrush"] .reel-viewport { border: 1px solid rgba(124, 120, 168, 0.14); background: linear-gradient(180deg, rgba(24, 22, 32, 0.98), rgba(9, 10, 15, 1)); }
body[data-machine="gengar-goldrush"] .viewport-rim { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), inset 0 0 46px rgba(0, 0, 0, 0.38), inset 0 -12px 32px rgba(0, 0, 0, 0.24), inset 0 0 0 1px rgba(214, 178, 76, 0.035); }
body[data-machine="gengar-goldrush"] .machine-aura { background: radial-gradient(circle at 50% 10%, rgba(214, 178, 76, 0.05), transparent 8%), linear-gradient(180deg, rgba(124, 120, 168, 0.025), rgba(0, 0, 0, 0) 24%, rgba(79, 69, 97, 0.03) 78%, rgba(0, 0, 0, 0)); }
body[data-machine="gengar-goldrush"] .machine-field { background: radial-gradient(circle at 50% 28%, rgba(124, 120, 168, 0.08), transparent 24%), radial-gradient(circle at 50% 74%, rgba(79, 69, 97, 0.12), transparent 22%); }
body[data-machine="gengar-goldrush"] .machine-signal { background: radial-gradient(circle at 50% 11%, rgba(214, 178, 76, 0.18), transparent 8%), radial-gradient(circle at 72% 24%, rgba(232, 154, 167, 0.08), transparent 8%); }
body[data-machine="gengar-goldrush"] .reel-divider { background: rgba(17, 15, 25, 0.94); box-shadow: 0 0 0 1px rgba(167, 154, 183, 0.04); }
body[data-machine="gengar-goldrush"] .reel-stop { background: linear-gradient(180deg, rgba(43, 40, 60, 0.72), rgba(16, 15, 24, 0.90)); }
body[data-machine="gengar-goldrush"] .reel-stop-focus { box-shadow: inset 0 0 0 1px rgba(144, 138, 192, 0.38), inset 0 16px 20px rgba(255, 255, 255, 0.01), inset 0 -18px 24px rgba(0, 0, 0, 0.1); }

body[data-machine="mew-millions"] .machine-shell::after { background: radial-gradient(circle at center, rgba(238, 197, 207, 0.12), transparent 72%); }
body[data-machine="mew-millions"] .control-deck .primary-action,
body[data-machine="mew-millions"] .status-dot { background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)), linear-gradient(180deg, #c49aad, #6f515c); }
body[data-machine="mew-millions"] .header-zone { background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)), linear-gradient(180deg, #271f23, #141215); }
body[data-machine="mew-millions"] .header-trim { width: 84%; height: 3px; background: linear-gradient(90deg,  transparent, rgba(242, 210, 122, 0.05) 16%, rgba(242, 210, 122, 0.22) 50%, rgba(242, 210, 122, 0.05) 84%, transparent); }
body[data-machine="mew-millions"] .machine-name,
body[data-machine="mew-millions"] .progressive-value,
body[data-machine="mew-millions"] .reel-stop span { color: #f4f6f8; }
body[data-machine="mew-millions"] .machine-name { text-shadow: 0 0 12px rgba(238, 197, 207, 0.16), 0 0 1px rgba(242, 210, 122, 0.08); }
body[data-machine="mew-millions"] .progressive-zone { border-color: rgba(238, 197, 207, 0.16); }
body[data-machine="mew-millions"] .live-values-zone,
body[data-machine="mew-millions"] .payouts-panel { border-color: rgba(238, 197, 207, 0.14); }
body[data-machine="mew-millions"] .chamber-zone { background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008)), linear-gradient(180deg, #1a1518, #0b0a0d); }
body[data-machine="mew-millions"] .viewport-shell { border: 1px solid rgba(238, 197, 207, 0.10); }
body[data-machine="mew-millions"] .reel-viewport { border: 1px solid rgba(238, 197, 207, 0.12); background: linear-gradient(180deg, rgba(30, 23, 27, 0.985), rgba(11, 10, 13, 1)); }
body[data-machine="mew-millions"] .viewport-rim { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), inset 0 0 46px rgba(0, 0, 0, 0.38), inset 0 -12px 32px rgba(0, 0, 0, 0.24), inset 0 0 0 1px rgba(242, 210, 122, 0.03); }
body[data-machine="mew-millions"] .machine-aura { background: radial-gradient(circle at 50% 10%, rgba(242, 210, 122, 0.05), transparent 8%), linear-gradient(180deg, rgba(238, 197, 207, 0.02), rgba(0, 0, 0, 0) 24%, rgba(185, 145, 160, 0.03) 78%, rgba(0, 0, 0, 0)); }
body[data-machine="mew-millions"] .machine-field { background: radial-gradient(circle at 50% 28%, rgba(238, 197, 207, 0.07), transparent 24%), radial-gradient(circle at 50% 72%, rgba(185, 145, 160, 0.10), transparent 22%); }
body[data-machine="mew-millions"] .machine-signal { background: radial-gradient(circle at 50% 12%, rgba(242, 210, 122, 0.20), transparent 8%), radial-gradient(circle at 76% 24%, rgba(159, 211, 247, 0.12), transparent 8%); }
body[data-machine="mew-millions"] .reel-divider { background: rgba(22, 18, 22, 0.92); box-shadow: 0 0 0 1px rgba(238, 197, 207, 0.035); }
body[data-machine="mew-millions"] .reel-stop { background: linear-gradient(180deg, rgba(60, 45, 51, 0.70), rgba(21, 18, 21, 0.90)); }
body[data-machine="mew-millions"] .reel-stop-focus { box-shadow: inset 0 0 0 1px rgba(244, 210, 218, 0.38), inset 0 16px 20px rgba(255, 255, 255, 0.01), inset 0 -18px 24px rgba(0, 0, 0, 0.1); }

body[data-machine="dragonite-deluxe"] .machine-shell::after { background: radial-gradient(circle at center, rgba(240, 179, 108, 0.12), transparent 72%); }
body[data-machine="dragonite-deluxe"] .control-deck .primary-action,
body[data-machine="dragonite-deluxe"] .status-dot { background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)), linear-gradient(180deg, #bf925c, #78583b); }
body[data-machine="dragonite-deluxe"] .header-zone { background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)), linear-gradient(180deg, #30271f, #171413); }
body[data-machine="dragonite-deluxe"] .header-trim { width: 80%; height: 2px; background: linear-gradient(90deg, transparent, rgba(244, 232, 200, 0.06) 18%, rgba(244, 232, 200, 0.22) 50%, rgba(244, 232, 200, 0.06) 82%, transparent); }
body[data-machine="dragonite-deluxe"] .machine-name,
body[data-machine="dragonite-deluxe"] .progressive-value,
body[data-machine="dragonite-deluxe"] .reel-stop span { color: #f4e8c8; }
body[data-machine="dragonite-deluxe"] .machine-name { text-shadow: 0 0 12px rgba(240, 179, 108, 0.14); }
body[data-machine="dragonite-deluxe"] .progressive-zone { border-color: rgba(240, 179, 108, 0.14); }
body[data-machine="dragonite-deluxe"] .live-values-zone,
body[data-machine="dragonite-deluxe"] .payouts-panel { border-color: rgba(240, 179, 108, 0.12); }
body[data-machine="dragonite-deluxe"] .chamber-zone { background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008)), linear-gradient(180deg, #1c1714, #0d0c0c); }
body[data-machine="dragonite-deluxe"] .viewport-shell { border: 1px solid rgba(240, 179, 108, 0.10); }
body[data-machine="dragonite-deluxe"] .reel-viewport { border: 1px solid rgba(240, 179, 108, 0.10); background: linear-gradient(180deg, rgba(35, 28, 23, 0.985), rgba(12, 11, 11, 1)); }
body[data-machine="dragonite-deluxe"] .viewport-rim { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), inset 0 0 46px rgba(0, 0, 0, 0.38), inset 0 -12px 32px rgba(0, 0, 0, 0.24), inset 0 0 0 1px rgba(244, 232, 200, 0.03); }
body[data-machine="dragonite-deluxe"] .machine-aura { background: radial-gradient(circle at 50% 10%, rgba(244, 232, 200, 0.10), transparent 11%), linear-gradient(180deg, rgba(88, 184, 183, 0.02), rgba(0, 0, 0, 0) 24%, rgba(244, 232, 200, 0.025) 56%, rgba(0, 0, 0, 0) 82%); }
body[data-machine="dragonite-deluxe"] .machine-field { background: radial-gradient(circle at 50% 34%, rgba(240, 179, 108, 0.06), transparent 24%), radial-gradient(circle at 50% 76%, rgba(162, 128, 80, 0.08), transparent 22%); }
body[data-machine="dragonite-deluxe"] .machine-signal { background: radial-gradient(circle at 50% 12%, rgba(244, 232, 200, 0.18), transparent 8%), radial-gradient(circle at 76% 22%, rgba(88, 184, 183, 0.12), transparent 8%); }
body[data-machine="dragonite-deluxe"] .reel-divider { background: rgba(24, 20, 18, 0.92); box-shadow: 0 0 0 1px rgba(244, 232, 200, 0.03); }
body[data-machine="dragonite-deluxe"] .reel-stop { background: linear-gradient(180deg, rgba(70, 54, 44, 0.68), rgba(22, 19, 18, 0.90)); }
body[data-machine="dragonite-deluxe"] .reel-stop-focus { box-shadow: inset 0 0 0 1px rgba(240, 179, 108, 0.14), inset 0 16px 20px rgba(255, 255, 255, 0.01), inset 0 -18px 24px rgba(0, 0, 0, 0.1); }

body[data-machine="rayquaza-royale"] .machine-shell::after { background: radial-gradient(circle at center, rgba(64, 138, 98, 0.12), transparent 72%); }
body[data-machine="rayquaza-royale"] .control-deck .primary-action,
body[data-machine="rayquaza-royale"] .status-dot { background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)), linear-gradient(180deg, #53a278, #214f39); }
body[data-machine="rayquaza-royale"] .header-zone { background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)), linear-gradient(180deg, #153027, #0d1412); }
body[data-machine="rayquaza-royale"] .header-trim { width: 84%; height: 3px; background: linear-gradient(90deg, transparent, rgba(214, 178, 76, 0.05) 14%, rgba(214, 178, 76, 0.20) 50%, rgba(214, 178, 76, 0.05) 86%, transparent); }
body[data-machine="rayquaza-royale"] .machine-name,
body[data-machine="rayquaza-royale"] .progressive-value,
body[data-machine="rayquaza-royale"] .reel-stop span { color: #e9f5ee; }
body[data-machine="rayquaza-royale"] .machine-name { text-shadow: 0 0 12px rgba(64, 138, 98, 0.18), 0 0 1px rgba(214, 178, 76, 0.06); }
body[data-machine="rayquaza-royale"] .progressive-zone { border-color: rgba(64, 138, 98, 0.16); }
body[data-machine="rayquaza-royale"] .live-values-zone,
body[data-machine="rayquaza-royale"] .payouts-panel { border-color: rgba(64, 138, 98, 0.14); }
body[data-machine="rayquaza-royale"] .chamber-zone { background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008)), linear-gradient(180deg, #101916, #070a0a); }
body[data-machine="rayquaza-royale"] .viewport-shell { border: 1px solid rgba(64, 138, 98, 0.10); }
body[data-machine="rayquaza-royale"] .reel-viewport { border: 1px solid rgba(64, 138, 98, 0.12); background: linear-gradient(180deg, rgba(17, 28, 24, 0.995), rgba(7, 10, 10, 1)); }
body[data-machine="rayquaza-royale"] .viewport-rim { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), inset 0 0 46px rgba(0, 0, 0, 0.38), inset 0 -12px 32px rgba(0, 0, 0, 0.24), inset 0 0 0 1px rgba(214, 178, 76, 0.035); }
body[data-machine="rayquaza-royale"] .machine-aura { background: radial-gradient(circle at 50% 10%, rgba(124, 207, 224, 0.11), transparent 10%), linear-gradient(180deg, rgba(124, 207, 224, 0.03), rgba(0, 0, 0, 0) 20%, rgba(129, 201, 160, 0.02) 48%, rgba(0, 0, 0, 0) 82%); }
body[data-machine="rayquaza-royale"] .machine-field { background: radial-gradient(circle at 50% 28%, rgba(64, 138, 98, 0.10), transparent 22%), radial-gradient(circle at 50% 74%, rgba(47, 110, 80, 0.12), transparent 24%); }
body[data-machine="rayquaza-royale"] .machine-signal { background: radial-gradient(circle at 50% 11%, rgba(214, 178, 76, 0.20), transparent 7%), radial-gradient(circle at 76% 22%, rgba(129, 201, 160, 0.14), transparent 8%); }
body[data-machine="rayquaza-royale"] .reel-divider { background: rgba(12, 22, 18, 0.96); box-shadow: 0 0 0 1px rgba(129, 201, 160, 0.03); }
body[data-machine="rayquaza-royale"] .reel-stop { background: linear-gradient(180deg, rgba(36, 59, 49, 0.76), rgba(12, 17, 16, 0.94)); }
body[data-machine="rayquaza-royale"] .reel-stop-focus { box-shadow: inset 0 0 0 1px rgba(78, 158, 112, 0.38), inset 0 16px 20px rgba(255, 255, 255, 0.01), inset 0 -18px 24px rgba(0, 0, 0, 0.1); }
