/* ─── Slot Container ──────────────────────────────────────────────────── */
.slot-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

/* ─── Info Bar ─────────────────────────────────────────────────────────── */
.slot-info-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 6px;
}

.slot-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(160deg, #1a1230 0%, #0f0b22 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  padding: 6px 10px;
  min-width: 70px;
  flex: 1;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(212, 175, 55, 0.08);
}

.slot-info-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.slot-info-label {
  font-size: 9px;
  color: rgba(200, 180, 120, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 2px;
}

.slot-info-value {
  font-size: 17px;
  font-weight: 800;
  color: #f5c518;
  text-shadow: 0 0 10px rgba(245, 197, 24, 0.5);
  letter-spacing: 0.5px;
}

.slot-info-value.freespins-active {
  color: #00e87a;
  text-shadow: 0 0 12px rgba(0, 232, 122, 0.6);
  animation: pulse 0.8s infinite;
}

.slot-info-value.multiplier-active {
  color: #ff6b35;
  text-shadow: 0 0 12px rgba(255, 107, 53, 0.6);
  animation: pulse 0.6s infinite;
}

/* ─── Help Button ──────────────────────────────────────────────────────── */
.slot-help-row {
  width: 100%;
  display: flex;
  justify-content: center;
}

.slot-help-btn {
  width: 100%;
  padding: 9px 16px;
  background: linear-gradient(160deg, #1a1230 0%, #0f0b22 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  color: rgba(200, 180, 120, 0.7);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.slot-help-btn:active {
  background: linear-gradient(160deg, #231640 0%, #170f30 100%);
  color: #f5c518;
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 15px rgba(245, 197, 24, 0.15);
}

.slot-help-btn .help-btn-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1;
  color: rgba(212, 175, 55, 0.7);
  transition: all 0.2s;
}

.slot-help-btn:active .help-btn-icon {
  background: rgba(245, 197, 24, 0.2);
  border-color: #f5c518;
  color: #f5c518;
}

/* ─── Help Modal Overlay ──────────────────────────────────────────────── */
.slot-help-overlay {
  position: fixed;
  top: calc(var(--header-height) + var(--tg-safe-top) + var(--tg-content-top));
  left: 0;
  right: 0;
  bottom: calc(var(--nav-height) + var(--tg-safe-bottom));
  z-index: 9998;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.slot-help-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.slot-help-modal {
  background: linear-gradient(180deg, #1c1236 0%, #120e26 60%, #0d0a1f 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-left: 1px solid rgba(212, 175, 55, 0.1);
  border-right: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-width: 500px;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow:
    0 -4px 40px rgba(0, 0, 0, 0.6),
    0 -1px 0 rgba(212, 175, 55, 0.15);
}

.slot-help-overlay.visible .slot-help-modal {
  transform: translateY(0);
}

/* ─── Help Modal Header ──────────────────────────────────────────────── */
.slot-help-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  flex-shrink: 0;
  position: relative;
}

.slot-help-header::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: rgba(212, 175, 55, 0.25);
}

.slot-help-header h3 {
  font-size: 16px;
  font-weight: 800;
  color: #f5c518;
  text-shadow: 0 0 12px rgba(245, 197, 24, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
}

.slot-help-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: rgba(200, 180, 120, 0.6);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  line-height: 1;
}

.slot-help-close:active {
  background: rgba(212, 175, 55, 0.15);
  color: #f5c518;
  border-color: rgba(212, 175, 55, 0.5);
}

/* ─── Help Modal Body ─────────────────────────────────────────────────── */
.slot-help-body {
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 16px 20px 28px;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.slot-help-body::-webkit-scrollbar { width: 3px; }
.slot-help-body::-webkit-scrollbar-track { background: transparent; }
.slot-help-body::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.2); border-radius: 2px; }

/* ─── Help Sections ───────────────────────────────────────────────────── */
.help-section {
  margin-bottom: 16px;
}

.help-section:last-child {
  margin-bottom: 0;
}

.help-section-title {
  font-size: 11px;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.85);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.help-section-title .help-icon {
  font-size: 14px;
}

.help-text {
  font-size: 13px;
  color: rgba(200, 185, 145, 0.75);
  line-height: 1.65;
  margin-bottom: 6px;
}

/* ─── Paytable ────────────────────────────────────────────────────────── */
.paytable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 4px;
}

.paytable th {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(212, 175, 55, 0.45);
  text-align: left;
  padding: 6px 8px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  font-weight: 700;
}

.paytable td {
  font-size: 13px;
  padding: 5px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: rgba(220, 205, 165, 0.9);
  vertical-align: middle;
}

.paytable tr:last-child td {
  border-bottom: none;
}

.paytable .sym-cell {
  display: flex;
  align-items: center;
  gap: 6px;
}

.paytable .sym-emoji {
  font-size: 18px;
  line-height: 1;
}

.paytable .sym-name {
  font-size: 11px;
  color: rgba(200, 180, 130, 0.6);
}

.paytable .payout-val {
  color: #f5c518;
  font-weight: 800;
  text-shadow: 0 0 6px rgba(245, 197, 24, 0.3);
}

/* ─── Feature Rows ────────────────────────────────────────────────────── */
.feature-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: 8px;
  margin-bottom: 5px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-emoji {
  font-size: 17px;
  flex-shrink: 0;
  min-width: 40px;
  text-align: center;
}

.feature-desc {
  flex: 1;
  font-size: 13px;
  color: rgba(200, 185, 145, 0.75);
  line-height: 1.4;
}

.feature-desc strong {
  color: rgba(220, 205, 165, 0.95);
  font-weight: 700;
}

.feature-desc .highlight-gold {
  color: #f5c518;
  font-weight: 800;
  text-shadow: 0 0 6px rgba(245, 197, 24, 0.3);
}

.feature-desc .highlight-green {
  color: #00e87a;
  font-weight: 800;
  text-shadow: 0 0 6px rgba(0, 232, 122, 0.3);
}

/* ─── Help Divider ────────────────────────────────────────────────────── */
.help-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  margin: 14px 0;
  border: none;
}

/* ─── Slot Grid Container ─────────────────────────────────────────────── */
.slot-grid-container {
  position: relative;
  width: 100%;
  background:
    linear-gradient(180deg, #08061a 0%, #0e0b26 40%, #0a0820 100%);
  border: 2px solid rgba(212, 175, 55, 0.35);
  border-radius: 16px;
  padding: 10px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.08),
    inset 0 0 40px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(212, 175, 55, 0.12),
    0 8px 40px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(100, 60, 200, 0.08);
}

/* Верхний золотой блик */
.slot-grid-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.6) 30%,
    rgba(255, 220, 80, 0.9) 50%,
    rgba(212, 175, 55, 0.6) 70%,
    transparent 100%
  );
  z-index: 2;
  border-radius: 16px 16px 0 0;
}

/* Угловые декоративные акценты */
.slot-grid-container::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(90, 40, 180, 0.08) 0%, transparent 60%);
  z-index: 1;
}

/* ─── Slot Grid ────────────────────────────────────────────────────────── */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 5px;
  width: 100%;
  aspect-ratio: 5 / 3;
  position: relative;
  z-index: 2;
}

/* ─── Slot Cell ────────────────────────────────────────────────────────── */
.slot-cell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg,
    rgba(30, 20, 70, 0.9) 0%,
    rgba(15, 10, 40, 0.95) 100%
  );
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  overflow: hidden;
  transition: transform 0.15s, border-color 0.3s, box-shadow 0.3s;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

/* Тонкий блик сверху каждой ячейки */
.slot-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  z-index: 1;
}

.slot-cell .symbol {
  font-size: clamp(24px, 8vw, 44px);
  line-height: 1;
  filter:
    drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.06));
  transition: transform 0.3s ease;
  z-index: 2;
  position: relative;
}

/* ─── Spinning Animation ──────────────────────────────────────────────── */
.slot-cell.spinning {
  background: linear-gradient(160deg,
    rgba(40, 25, 90, 0.95) 0%,
    rgba(20, 12, 55, 1) 100%
  );
  border-color: rgba(212, 175, 55, 0.08);
}

.slot-cell.spinning .symbol {
  animation: symbolSpin 0.12s linear infinite;
}

@keyframes symbolSpin {
  0%   { transform: translateY(-100%); opacity: 0; }
  20%  { opacity: 0.7; }
  80%  { opacity: 0.7; }
  100% { transform: translateY(100%); opacity: 0; }
}

.slot-cell.landing .symbol {
  animation: symbolLand 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes symbolLand {
  0%   { transform: translateY(-60%) scale(0.8); opacity: 0; }
  60%  { transform: translateY(8%) scale(1.08); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* ─── Win Highlight ───────────────────────────────────────────────────── */
.slot-cell.win-highlight {
  border-color: #f5c518 !important;
  background: linear-gradient(160deg,
    rgba(80, 55, 10, 0.9) 0%,
    rgba(50, 35, 5, 0.95) 100%
  ) !important;
  box-shadow:
    0 0 20px rgba(245, 197, 24, 0.45),
    0 0 8px rgba(245, 197, 24, 0.6),
    inset 0 0 20px rgba(245, 197, 24, 0.12);
  animation: winPulse 0.5s ease 3;
  z-index: 5;
}

@keyframes winPulse {
  0%, 100% {
    box-shadow:
      0 0 15px rgba(245, 197, 24, 0.4),
      0 0 6px rgba(245, 197, 24, 0.5),
      inset 0 0 15px rgba(245, 197, 24, 0.1);
  }
  50% {
    box-shadow:
      0 0 35px rgba(245, 197, 24, 0.7),
      0 0 15px rgba(245, 197, 24, 0.8),
      inset 0 0 30px rgba(245, 197, 24, 0.2);
  }
}

.slot-cell.win-highlight .symbol {
  animation: winSymbol 0.5s ease 3;
  filter:
    drop-shadow(0 0 8px rgba(245, 197, 24, 0.8))
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

@keyframes winSymbol {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.25); }
}

/* ─── Scatter Highlight ──────────────────────────────────────────────── */
.slot-cell.scatter-highlight {
  border-color: #00e87a !important;
  background: linear-gradient(160deg,
    rgba(0, 60, 30, 0.9) 0%,
    rgba(0, 35, 18, 0.95) 100%
  ) !important;
  box-shadow:
    0 0 20px rgba(0, 232, 122, 0.45),
    0 0 8px rgba(0, 232, 122, 0.6),
    inset 0 0 20px rgba(0, 232, 122, 0.1);
  animation: scatterPulse 0.4s ease 4;
}

@keyframes scatterPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 232, 122, 0.3); }
  50%       { box-shadow: 0 0 45px rgba(0, 232, 122, 0.65); }
}

/* ─── Cascade Remove ─────────────────────────────────────────────────── */
.slot-cell.cascade-remove .symbol {
  animation: cascadeOut 0.3s ease forwards;
}

@keyframes cascadeOut {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(0.3) rotate(180deg); opacity: 0; }
}

.slot-cell.cascade-drop .symbol {
  animation: cascadeDrop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes cascadeDrop {
  0%   { transform: translateY(-150%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ─── Multiplier Flash ───────────────────────────────────────────────── */
.slot-multiplier-flash {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center,
    rgba(10, 6, 30, 0.88) 0%,
    rgba(0, 0, 0, 0.78) 100%
  );
  z-index: 10;
  border-radius: 14px;
  pointer-events: none;
}

.slot-multiplier-flash .multiplier-text {
  font-size: 52px;
  font-weight: 900;
  color: #f5c518;
  text-shadow:
    0 0 20px rgba(245, 197, 24, 0.9),
    0 0 50px rgba(245, 197, 24, 0.5),
    0 0 100px rgba(245, 197, 24, 0.2);
  animation: multiplierPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  letter-spacing: -1px;
}

@keyframes multiplierPop {
  0%   { transform: scale(0) rotate(-10deg); opacity: 0; }
  55%  { transform: scale(1.35) rotate(3deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* ─── Freespin Banner ─────────────────────────────────────────────────── */
.freespin-banner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: radial-gradient(ellipse at center,
    rgba(0, 20, 10, 0.92) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 10;
  border-radius: 14px;
  pointer-events: none;
}

.freespin-banner .fs-text {
  font-size: 22px;
  font-weight: 900;
  color: #00e87a;
  text-shadow:
    0 0 15px rgba(0, 232, 122, 0.7),
    0 0 35px rgba(0, 232, 122, 0.35);
  animation: multiplierPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.freespin-banner .fs-count {
  font-size: 60px;
  font-weight: 900;
  color: #f5c518;
  text-shadow:
    0 0 25px rgba(245, 197, 24, 0.8),
    0 0 60px rgba(245, 197, 24, 0.4);
  animation: multiplierPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s forwards;
  opacity: 0;
  line-height: 1;
}

/* ─── Particles ───────────────────────────────────────────────────────── */
.particle-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 20;
  border-radius: 14px;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

@keyframes particleFly {
  0%   { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(0); opacity: 0; }
}

/* ─── Controls ─────────────────────────────────────────────────────────── */
.slot-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.slot-bet-section {
  display: flex;
  align-items: center;
  gap: 5px;
}

.slot-bet-label {
  font-size: 10px;
  color: rgba(200, 180, 120, 0.5);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.slot-bet-btn {
  padding: 8px 12px;
  background: linear-gradient(160deg, #1a1230 0%, #0f0b22 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 9px;
  color: rgba(220, 200, 140, 0.8);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.15s;
  min-height: 40px;
  min-width: 46px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.slot-bet-btn.active {
  background: linear-gradient(160deg, #3a2810 0%, #271c08 100%);
  border-color: rgba(245, 197, 24, 0.6);
  color: #f5c518;
  box-shadow:
    0 0 14px rgba(245, 197, 24, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(245, 197, 24, 0.15);
  text-shadow: 0 0 8px rgba(245, 197, 24, 0.4);
}

.slot-bet-btn:active:not(.active) {
  transform: scale(0.95);
  background: linear-gradient(160deg, #221540 0%, #160f2e 100%);
}

/* ─── Spin Button ──────────────────────────────────────────────────────── */
.slot-spin-btn {
  flex: 1;
  padding: 0 14px;
  background: linear-gradient(160deg,
    #c0392b 0%,
    #922b21 50%,
    #7b241c 100%
  );
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.15s;
  text-transform: uppercase;
  letter-spacing: 3px;
  min-height: 52px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 20px rgba(192, 57, 43, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 -2px 0 rgba(0, 0, 0, 0.3) inset;
}

/* Блик кнопки */
.slot-spin-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  border-radius: 12px 12px 0 0;
  pointer-events: none;
}

.slot-spin-btn::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: linear-gradient(160deg,
    rgba(212, 175, 55, 0) 0%,
    rgba(212, 175, 55, 0) 100%
  );
  z-index: -1;
  transition: background 0.2s;
}

.slot-spin-btn:active:not(:disabled) {
  transform: scale(0.97) translateY(1px);
  box-shadow:
    0 2px 10px rgba(192, 57, 43, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.slot-spin-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.slot-spin-btn.freespin-mode {
  background: linear-gradient(160deg,
    #00b85a 0%,
    #007d3d 50%,
    #006230 100%
  );
  box-shadow:
    0 4px 20px rgba(0, 184, 90, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 -2px 0 rgba(0, 0, 0, 0.3) inset;
  letter-spacing: 1px;
  font-size: 14px;
}

/* ─── Auto Spin Button ─────────────────────────────────────────────────── */
.slot-auto-btn {
  padding: 0 14px;
  background: linear-gradient(160deg, #1a1230 0%, #0f0b22 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  color: rgba(200, 180, 120, 0.55);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  min-height: 52px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.15s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

.slot-auto-btn.active {
  background: linear-gradient(160deg, #3a2810 0%, #271c08 100%);
  border-color: rgba(245, 197, 24, 0.5);
  color: #f5c518;
  box-shadow:
    0 0 14px rgba(245, 197, 24, 0.2),
    0 2px 10px rgba(0, 0, 0, 0.4);
  text-shadow: 0 0 8px rgba(245, 197, 24, 0.4);
}

.slot-auto-btn:active {
  transform: scale(0.97);
}

/* ─── Win Display ─────────────────────────────────────────────────────── */
.slot-win-display {
  text-align: center;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.slot-win-amount {
  font-size: 24px;
  font-weight: 900;
  color: #f5c518;
  text-shadow:
    0 0 12px rgba(245, 197, 24, 0.7),
    0 0 30px rgba(245, 197, 24, 0.3);
  animation: winAmountPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.5px;
}

@keyframes winAmountPop {
  0%   { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.slot-win-label {
  font-size: 11px;
  color: rgba(200, 180, 120, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

/* ─── Pulse animation (reused) ────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}