/* =========================================================
   Slot Machine - Bingo em Casa
   Alinhado com tokens da plataforma (luxYellow/luxBlack).
   - Fonte: Inter
   - Paleta: amarelo dourado #EE9F13 sobre fundo dark #1E1E1E
   - CTA pill com glow laranja (igual "Aproveitar Agora!")
   ========================================================= */

:root {
  /* Backgrounds (luxBlack scale) */
  --bg:           #1E1E1E;   /* luxBlack-300 — body BeC */
  --bg-card:      #2C2C2C;   /* luxBlack-100 — cards BeC */
  --bg-elevated:  #2A2A2A;   /* luxBlack-650 — modais */
  --bg-deep:      #131313;   /* luxBlack-640 — reel interior */

  /* Borders */
  --border:        #444444;  /* luxBlack-500 — divisor BeC */
  --border-soft:   rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);

  /* Brand yellow (luxYellow) */
  --accent:        #EE9F13;  /* luxYellow-100 */
  --accent-hover:  #F5B040;  /* derivado +clear pra hover */
  --accent-light:  #FFE5B7;  /* luxYellow-1000 */
  --accent-dark:   #B87810;  /* derivado +escuro */
  --accent-glow:   rgba(255, 122, 0, 0.5);   /* glow laranja BeC #FF7A00 */
  --accent-soft:   rgba(238, 159, 19, 0.2);  /* luxYellow-200 */
  --on-accent:     #041F04;  /* luxBlack-200 — texto sobre CTA */

  /* Text (luxGray) */
  --text:        #ffffff;
  --text-muted:  #C1C1C1;   /* luxGray-740 */
  --text-dim:    #757575;   /* luxGray-650 */

  /* States */
  --danger:      #F04438;   /* luxRed-300 */
  --danger-soft: rgba(240, 68, 56, 0.15);
  --success:     #12B76A;   /* luxGreen-100 */

  /* Symbol size — controla o tamanho dos reels. JS lê isso runtime via getBoundingClientRect. */
  --symbol-size: 110px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(circle at 20% 0%, rgba(238, 159, 19, 0.07), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(255, 122, 0, 0.06), transparent 55%);
  color: var(--text);
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- App container ----------
   Ocupa 100% da viewport. JS computa --symbol-size dinamicamente
   pra reels-frame caber no espaco que sobra. Sem scroll, em qualquer iframe. */
.slot-app {
  width: 100%;
  max-width: 480px;
  height: 100vh;
  height: 100dvh;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}

/* Help button: top-right do app */
.help-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-btn:hover { background: var(--bg-card); border-color: var(--accent); }
.help-btn:active { transform: scale(0.92); }
.help-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Mute button: top-left, simétrico ao help-btn */
.mute-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.mute-btn svg { width: 18px; height: 18px; display: block; }
.mute-btn .icon-volume-off { display: none; }
.mute-btn.muted .icon-volume-on  { display: none; }
.mute-btn.muted .icon-volume-off { display: block; }
.mute-btn.muted { color: var(--text-dim); }

.mute-btn:hover { background: var(--bg-card); border-color: var(--accent); color: var(--accent); }
.mute-btn.muted:hover { color: var(--text-muted); }
.mute-btn:active { transform: scale(0.92); }
.mute-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.slot-header {
  text-align: center;
}

.slot-title {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1.1;
  text-transform: uppercase;
}

.slot-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 8px auto 0;
  border-radius: 2px;
}

.slot-subtitle {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: pre-line;
  line-height: 1.5;
  max-width: 420px;
}

/* ---------- Info pills (saldo / tentativas) ---------- */
.info-row {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 360px;
}

.info-pill {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s ease;
}

.info-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

.info-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.info-label {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.info-value {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0;
  margin-top: 2px;
}

.info-pill.exhausted { border-color: var(--danger-soft); }
.info-pill.exhausted .info-icon { color: var(--danger); }
.info-pill.exhausted .info-value { color: var(--danger); }

/* ---------- Slot machine body ----------
   slot-machine: flex:1 dentro de slot-app, toma espaco sobrando.
   reels-frame: flex:1 dentro de slot-machine, toma espaco sobrando.
   JS le clientHeight/clientWidth do reels-frame e ajusta --symbol-size. */
.slot-machine {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.reels-frame {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  padding: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reels {
  display: flex;
  gap: 8px;
  position: relative;
}

/* Payline horizontal — linha laranja marcando a row do meio */
.payline {
  position: absolute;
  left: 4px;
  right: 4px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(238, 159, 19, 0.7) 15%,
    var(--accent) 50%,
    rgba(238, 159, 19, 0.7) 85%,
    transparent);
  transform: translateY(-1px);
  pointer-events: none;
  z-index: 5;
  box-shadow: 0 0 12px rgba(255, 122, 0, 0.7);
}

/* ---------- Reel ----------
   Altura = 3 * --symbol-size. Linha do meio = payline.
   Top/bottom recebem gradient escuro pra dimar e focar atencao no meio. */
.reel {
  width: var(--symbol-size);
  height: calc(var(--symbol-size) * 3);
  background: var(--bg-deep);
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  box-shadow:
    inset 0 4px 10px rgba(0, 0, 0, 0.6),
    inset 0 -4px 10px rgba(0, 0, 0, 0.4);
}

/* Gradient overlays: dimam top e bottom rows */
.reel::before,
.reel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: var(--symbol-size);
  pointer-events: none;
  z-index: 2;
}

.reel::before {
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.15) 70%, transparent 100%);
}

.reel::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.15) 70%, transparent 100%);
}

/* Strip vertical de simbolos */
.strip {
  display: flex;
  flex-direction: column;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.strip > img {
  width: var(--symbol-size);
  height: var(--symbol-size);
  padding: calc(var(--symbol-size) * 0.127);  /* ~14/110 ratio — respiro generoso */
  box-sizing: border-box;
  display: block;
  object-fit: contain;
  pointer-events: none;
  -webkit-user-drag: none;
  flex-shrink: 0;
}

/* Spin: animacao CSS infinita. Strip tem 24 imgs (= 2 blocos de 12), entao
   -50% = -12 simbolos = 1 bloco completo. Funciona pra qualquer --symbol-size. */
.reel.spinning .strip {
  animation: reel-scroll 1.3s linear infinite;
  filter: brightness(0.92);
}

@keyframes reel-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(0, -50%, 0); }
}

/* Landing flash: borda piscando laranja */
.reel.landing {
  animation: reel-flash 380ms ease-out;
}

@keyframes reel-flash {
  0%   { box-shadow: inset 0 4px 10px rgba(0,0,0,0.6), inset 0 -4px 10px rgba(0,0,0,0.4), 0 0 0 0 rgba(255, 122, 0, 0); }
  40%  { box-shadow: inset 0 4px 10px rgba(0,0,0,0.6), inset 0 -4px 10px rgba(0,0,0,0.4), 0 0 18px 4px rgba(255, 122, 0, 0.7); }
  100% { box-shadow: inset 0 4px 10px rgba(0,0,0,0.6), inset 0 -4px 10px rgba(0,0,0,0.4), 0 0 0 0 rgba(255, 122, 0, 0); }
}

/* Highlight win — pulse laranja */
.reel.win {
  animation: reel-win 1.2s ease-in-out infinite;
  border-color: var(--accent);
}

@keyframes reel-win {
  0%, 100% { box-shadow: 0 0 0 1px var(--accent), 0 0 14px rgba(255, 122, 0, 0.5); }
  50%      { box-shadow: 0 0 0 1px var(--accent-light), 0 0 24px rgba(255, 244, 144, 0.6); }
}

/* Glass shine overlay */
.reels-shine {
  position: absolute;
  inset: 12px;
  border-radius: 10px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0) 30%,
    rgba(0, 0, 0, 0) 70%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

/* ---------- Result (prefix + prize name + opcional details btn) ---------- */
.result {
  width: 100%;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.result-prefix {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.result-prize {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--text);
  line-height: 1.2;
  min-height: 22px;
  white-space: pre-line;
}

.result.win {
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(255, 122, 0, 0.3);
  animation: result-pulse 1.4s ease-in-out infinite;
}

.result.win .result-prefix { color: var(--accent); }
.result.win .result-prize  { color: var(--text); font-size: 20px; }

.result.error { border-color: rgba(240, 68, 56, 0.5); }
.result.error .result-prefix { color: var(--danger); }
.result.error .result-prize  { color: var(--danger); font-size: 16px; }

.result.info { border-color: rgba(238, 159, 19, 0.3); }
.result.info .result-prefix { color: var(--accent); }
.result.info .result-prize  { color: var(--text-muted); font-size: 14px; font-weight: 600; }

@keyframes result-pulse {
  0%, 100% { box-shadow: 0 0 16px rgba(255, 122, 0, 0.3); }
  50%      { box-shadow: 0 0 26px rgba(255, 122, 0, 0.6); }
}

.result-details-btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 12px;
  margin-top: 6px;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}

.result-details-btn:hover { background: var(--accent); color: var(--on-accent); }
.result-details-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.result-details-btn[hidden] { display: none; }

/* ---------- Confetti layer ---------- */
.confetti-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 100;
}

.confetti {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 14px;
  border-radius: 1px;
  will-change: transform, opacity;
  animation: confetti-burst 1.8s cubic-bezier(0.2, 0.7, 0.4, 1) forwards;
}

@keyframes confetti-burst {
  0%   { transform: translate(-50%, -50%) rotate(0deg); opacity: 1; }
  60%  { transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) rotate(calc(var(--rot) * 0.6)); opacity: 1; }
  100% { transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty) + 600px)) rotate(var(--rot)); opacity: 0; }
}

/* ---------- Spin button (BeC CTA pattern) ----------
   Sólido amarelo (#EE9F13) com glow laranja igual ao "Aproveitar Agora!".
   Shine diagonal cruza no hover (efeito BeC). */
.spin-btn {
  width: 100%;
  max-width: 280px;
  height: 56px;
  border: 1px solid var(--accent);
  border-radius: 30px;                    /* BeC pill */
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--on-accent);                /* #041F04 */
  background: var(--accent);              /* sólido luxYellow-100 */
  box-shadow:
    0 0 16px #FF7A00,
    0 0 12px rgba(255, 244, 144, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.08s ease, box-shadow 0.25s ease, filter 0.2s ease;
  position: relative;
  overflow: hidden;
}

/* Shine diagonal — atravessa no hover */
.spin-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  background-size: 220% 100%;
  background-position: -110% 0;
  transition: background-position 0.7s ease;
  pointer-events: none;
}

.spin-btn:hover:not(:disabled)::before { background-position: 110% 0; }

/* Pulse sutil quando ocioso */
.spin-btn:not(:disabled):not(.is-spinning) {
  animation: spin-idle-pulse 2.2s ease-in-out infinite;
}

@keyframes spin-idle-pulse {
  0%, 100% {
    box-shadow:
      0 0 16px #FF7A00,
      0 0 12px rgba(255, 244, 144, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
  50% {
    box-shadow:
      0 0 26px #FF7A00,
      0 0 22px rgba(255, 244, 144, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
}

.spin-btn:hover:not(:disabled) { filter: brightness(1.06); }

.spin-btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.spin-btn:active:not(:disabled) {
  transform: translateY(2px);
  box-shadow:
    0 0 8px #FF7A00,
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.spin-btn:disabled {
  cursor: not-allowed;
  background: var(--border);              /* #444444 */
  border-color: var(--border);
  color: var(--text-dim);
  box-shadow: none;
  animation: none;
}

.spin-btn:disabled::before { display: none; }

.spin-btn-text { display: inline-block; position: relative; z-index: 1; }

.spin-btn.is-spinning .spin-btn-text::after {
  content: "...";
  display: inline-block;
  width: 18px;
  text-align: left;
  animation: dots 1s steps(3, end) infinite;
}

@keyframes dots {
  0%   { content: ""; }
  33%  { content: "."; }
  66%  { content: ".."; }
  100% { content: "..."; }
}

/* ---------- Footer ---------- */
.slot-footer {
  margin-top: 6px;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.3px;
  font-weight: 500;
}

/* ---------- Modais ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
  animation: modal-fade 0.2s ease-out;
}

.modal-overlay[hidden] { display: none; }

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  width: 100%;
  max-width: 420px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 22px 22px 18px;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
  animation: modal-pop 0.25s cubic-bezier(0.2, 0.8, 0.3, 1.05);
}

@keyframes modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes modal-pop {
  from { transform: scale(0.94); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s ease, color 0.15s ease;
}
.modal-close:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.modal-close:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.modal-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--text);
  margin-bottom: 14px;
  text-align: center;
}

.modal-title::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--accent);
  margin: 8px auto 0;
  border-radius: 2px;
}

.modal-section { margin-top: 16px; }
.modal-section:first-of-type { margin-top: 0; }

.modal-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}

.modal-prizes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.modal-prize {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.25;
  white-space: pre-line;
}

.modal-prize img {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.modal-prize-name {
  color: var(--text);
  font-weight: 600;
  font-size: 12px;
}

.modal-rules {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}

.modal-rules p { margin-bottom: 8px; }
.modal-rules ul, .modal-rules ol { padding-left: 18px; margin: 8px 0; }
.modal-rules strong, .modal-rules b { color: var(--text); font-weight: 700; }
.modal-rules a { color: var(--accent); text-decoration: underline; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .confetti { display: none; }
  .reel.spinning .strip { animation: none; }
  .spin-btn:not(:disabled):not(.is-spinning) { animation: none; }
  .result.win { animation: none; }
  .reel.win { animation: none; }
}

/* ---------- Responsive (typography only) ----------
   --symbol-size e calculado em RUNTIME pelo JS (fitSlotSize) baseado
   na area real do .reels-frame. Aqui so ajustamos texto/padding pra
   liberar espaco vertical quando a viewport e baixa. */

/* Largura pequena: encolhe titulo e botao */
@media (max-width: 380px) {
  .slot-title { font-size: 20px; }
  .spin-btn { height: 46px; font-size: 13px; }
}

/* Altura baixa: comprime tudo que NAO seja reel */
@media (max-height: 760px) {
  .slot-app { padding: 8px 10px; gap: 6px; }
  .slot-machine { gap: 6px; }
  .slot-title { font-size: 22px; letter-spacing: 0.5px; }
  .slot-title::after { display: none; }
  .slot-subtitle { font-size: 10px; margin-top: 4px; line-height: 1.3; }
  .info-row { gap: 6px; max-width: 340px; }
  .info-pill { padding: 6px 10px; }
  .info-icon { width: 18px; height: 18px; }
  .info-label { font-size: 9px; }
  .info-value { font-size: 16px; }
  .reels-frame { padding: 8px; }
  .reels { gap: 6px; }
  .result { min-height: 44px; padding: 6px 12px; }
  .result-prefix { font-size: 10px; }
  .result-prize { font-size: 14px; }
  .result.win .result-prize { font-size: 16px; }
  .result-details-btn { padding: 3px 10px; font-size: 10px; margin-top: 3px; }
  .spin-btn { height: 44px; font-size: 13px; letter-spacing: 2px; }
  .slot-footer { display: none; }
  .help-btn { width: 28px; height: 28px; font-size: 14px; top: 8px; right: 8px; }
  .mute-btn { width: 28px; height: 28px; top: 8px; left: 8px; }
  .mute-btn svg { width: 15px; height: 15px; }
}

/* Altura muito baixa: reduz mais ainda */
@media (max-height: 560px) {
  .slot-app { padding: 6px 8px; gap: 4px; }
  .slot-machine { gap: 4px; }
  .slot-title { font-size: 18px; }
  .slot-subtitle { display: none; }
  .info-pill { padding: 4px 8px; }
  .info-value { font-size: 14px; }
  .reels-frame { padding: 6px; }
  .result { min-height: 36px; padding: 4px 10px; }
  .result-prefix { font-size: 9px; }
  .result-prize { font-size: 13px; }
  .spin-btn { height: 38px; font-size: 12px; }
}
