/*
 * ==========================================================================
 *  FRUIT SPIN — Cute Fruity Theme
 *  Lunex Club
 * ==========================================================================
 */

/* ===== STAGE BACKGROUND ===== */
.fs-stage {
  background: url('/img/fruitspin/cherry_blast_game_background.webp') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

/* Dark overlay so the machine is readable over busy background */
.fs-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 5, 24, 0.55);
  pointer-events: none;
  z-index: 0;
}

.fs-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 107, 138, 0.08) 0%, transparent 60%);
}

/* ===== FLOATING FRUIT DECORATIONS ===== */
.fs-float {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 40px;
  height: 40px;
  opacity: 0.35;
}
.fs-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fs-float-1 {
  top: 8%; left: 6%;
  animation: fsFruitBob 8s ease-in-out infinite;
}
.fs-float-2 {
  top: 15%; right: 8%;
  animation: fsFruitBob 10s ease-in-out infinite 1s;
}
.fs-float-3 {
  bottom: 20%; left: 4%;
  animation: fsFruitBob 12s ease-in-out infinite 2s;
}
.fs-float-4 {
  bottom: 12%; right: 5%;
  animation: fsFruitBob 9s ease-in-out infinite 0.5s;
  width: 32px; height: 32px;
}
.fs-float-5 {
  top: 55%; right: 12%;
  animation: fsFruitBob 11s ease-in-out infinite 3s;
  width: 34px; height: 34px;
}

@keyframes fsFruitBob {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.25; }
  25% { transform: translate(8px, -14px) rotate(8deg); opacity: 0.4; }
  50% { transform: translate(-4px, -20px) rotate(-5deg); opacity: 0.3; }
  75% { transform: translate(6px, -8px) rotate(4deg); opacity: 0.35; }
}

/* ===== MACHINE FRAME ===== */
.fs-machine {
  position: relative;
  z-index: 1;
  max-width: 520px;
  width: 94%;
  background: linear-gradient(180deg, #2a1548 0%, #221240 40%, #1c0e38 100%);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 20px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 20px 16px 16px;
}

/* ===== HEADER ===== */
.fs-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
}

.fs-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fs-title-img {
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 138, 0.5));
  margin-top: -40px;
}

/* Info button */
.fs-info-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 107, 138, 0.4);
  background: rgba(255, 107, 138, 0.1);
  color: #ff6b8a;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}
.fs-info-btn:hover {
  background: rgba(255, 107, 138, 0.25);
  border-color: #ff6b8a;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 14px rgba(255, 107, 138, 0.3);
}

/* ===== REELS CONTAINER ===== */
.fs-reels-frame {
  background: linear-gradient(180deg, #130a22, #0e0818, #130a22);
  border-radius: 16px;
  padding: 6px;
  border: 2px solid rgba(255, 107, 138, 0.15);
  box-shadow:
    inset 0 4px 20px rgba(0, 0, 0, 0.6),
    inset 0 -2px 10px rgba(0, 0, 0, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

/* Top and bottom fade bars */
.fs-reels-frame::before,
.fs-reels-frame::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 24px;
  z-index: 10;
  pointer-events: none;
}
.fs-reels-frame::before {
  top: 0;
  background: linear-gradient(180deg, rgba(19, 10, 34, 0.9) 0%, transparent 100%);
}
.fs-reels-frame::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(19, 10, 34, 0.9) 0%, transparent 100%);
}

.fs-reels {
  display: flex;
  gap: 3px;
  position: relative;
}

/* ===== INDIVIDUAL REEL ===== */
.fs-reel {
  flex: 1;
  height: calc(var(--fs-sym-h, 84px) * 3);
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  background: linear-gradient(180deg, #160c28, #1a0f30, #160c28);
}

.fs-reel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 3;
}

/* Reel divider glow */
.fs-reel + .fs-reel::after {
  content: '';
  position: absolute;
  left: -2px;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 107, 138, 0.12), transparent);
  pointer-events: none;
}

/* ===== REEL STRIP ===== */
.fs-strip {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

/* ===== SYMBOL CELLS ===== */
.fs-symbol {
  width: 100%;
  height: var(--fs-sym-h, 84px);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  flex-shrink: 0;
  position: relative;
  transition: background 0.3s, transform 0.3s;
  padding: 6px;
  box-sizing: border-box;
}
.fs-sym-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.fs-symbol + .fs-symbol::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
}

/* ===== SPIN — MOTION BLUR ===== */
.fs-reel.spinning .fs-symbol {
  filter: blur(2px);
  opacity: 0.7;
}

/* ===== STOP — LANDING BOUNCE ===== */
.fs-reel.stopping .fs-strip {
  animation: fsReelLand 0.4s cubic-bezier(0.22, 1.0, 0.36, 1) forwards;
}

@keyframes fsReelLand {
  0% { transform: translateY(calc(var(--fs-sym-h, 84px) * -0.3)); }
  55% { transform: translateY(calc(var(--fs-sym-h, 84px) * 0.06)); }
  75% { transform: translateY(calc(var(--fs-sym-h, 84px) * -0.02)); }
  100% { transform: translateY(0); }
}

/* Flash on reel stop */
.fs-reel.just-stopped::before {
  animation: fsReelFlash 0.3s ease-out;
}
@keyframes fsReelFlash {
  0% { box-shadow: inset 0 0 30px rgba(255, 107, 138, 0.25); }
  100% { box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.4); }
}

/* ===== PAYLINE WIN EFFECTS ===== */
.fs-symbol.payline-win {
  animation: fsPaylinePulse 0.7s ease-in-out 3;
  z-index: 5;
  position: relative;
}

@keyframes fsPaylinePulse {
  0%, 100% {
    transform: scale(1);
    background: transparent;
    filter: none;
  }
  15% {
    transform: scale(1.08);
  }
  50% {
    transform: scale(1.18);
    background: radial-gradient(circle, rgba(255, 107, 138, 0.25), transparent 70%);
    filter: drop-shadow(0 0 16px rgba(255, 107, 138, 0.7)) brightness(1.3);
  }
  85% {
    transform: scale(1.06);
  }
}

.fs-symbol.payline-win::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 8px;
  border: 2px solid rgba(255, 107, 138, 0.5);
  box-shadow: 0 0 14px rgba(255, 107, 138, 0.35), inset 0 0 14px rgba(255, 107, 138, 0.1);
  pointer-events: none;
  animation: fsPaylineBorder 0.7s ease-in-out 3;
}

@keyframes fsPaylineBorder {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== WIN DISPLAY ===== */
.fs-win-display {
  text-align: center;
  min-height: 34px;
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #7c6b9a;
  transition: all 0.3s;
}

.fs-win-display.win {
  background: linear-gradient(180deg, #ffb3c6, #ff6b8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.2rem;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 138, 0.5));
  animation: fsWinReveal 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes fsWinReveal {
  0% { transform: scale(0.3) translateY(10px); opacity: 0; }
  50% { transform: scale(1.2) translateY(-3px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* ===== SCREEN FLASH ON WIN ===== */
.fs-stage.flash-win::before {
  animation: fsScreenFlash 0.5s ease-out;
}

@keyframes fsScreenFlash {
  0% {
    background:
      radial-gradient(ellipse at 50% 50%, rgba(255, 107, 138, 0.3) 0%, transparent 60%),
      radial-gradient(ellipse at 25% 20%, rgba(255, 107, 138, 0.15) 0%, transparent 50%),
      radial-gradient(ellipse at 75% 80%, rgba(232, 67, 147, 0.12) 0%, transparent 50%),
      radial-gradient(ellipse at 50% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 40%);
  }
  100% {
    background:
      radial-gradient(ellipse at 50% 50%, transparent 0%, transparent 60%),
      radial-gradient(ellipse at 25% 20%, rgba(255, 107, 138, 0.15) 0%, transparent 50%),
      radial-gradient(ellipse at 75% 80%, rgba(232, 67, 147, 0.12) 0%, transparent 50%),
      radial-gradient(ellipse at 50% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 40%);
  }
}

/* ===== COIN PARTICLE RAIN ===== */
.fs-coin-particle {
  position: absolute;
  pointer-events: none;
  z-index: 20;
  opacity: 0;
  animation: fsCoinFall linear forwards;
}
.fs-particle-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(255, 107, 138, 0.4));
}

@keyframes fsCoinFall {
  0% { opacity: 1; transform: translateY(0) rotate(0deg) scale(1); }
  70% { opacity: 1; }
  100% { opacity: 0; transform: translateY(calc(100vh)) rotate(720deg) scale(0.5); }
}

/* ===== SPIN BUTTON ===== */
.fs-spin-btn {
  background: linear-gradient(135deg, #ff6b8a, #ff4f7a, #e8447a) !important;
  background-size: 200% 200% !important;
  color: #fff !important;
  border: none !important;
  font-weight: 800 !important;
  font-size: 1.05rem !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 20px rgba(255, 107, 138, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
  border-radius: 14px !important;
}

.fs-spin-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s;
  pointer-events: none;
}
.fs-spin-btn:hover::before {
  left: 120%;
}

.fs-spin-btn:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(255, 107, 138, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}
.fs-spin-btn:active:not(:disabled) {
  transform: translateY(0) scale(0.97);
}
.fs-spin-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  filter: saturate(0.4) brightness(0.8);
}

/* ===== BUNDLE CARD (10x Spin) ===== */
.fs-bundle-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(232, 67, 147, 0.1), rgba(255, 107, 138, 0.06));
  border: 1px solid rgba(255, 107, 138, 0.2);
  border-radius: 14px;
  gap: 10px;
}

.fs-bundle-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fs-bundle-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff6b8a, #e84393);
  color: #fff;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(232, 67, 147, 0.3);
}

.fs-bundle-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.fs-bundle-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: #e2d5f0;
  letter-spacing: 0.3px;
}

.fs-bundle-desc {
  font-size: 0.7rem;
  color: #9a8bb8;
}
.fs-bundle-desc span {
  color: #ff6b8a;
  font-weight: 700;
}

.fs-bundle-btn {
  background: linear-gradient(135deg, #e84393, #d63384) !important;
  color: #fff !important;
  border: none !important;
  font-weight: 800 !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 16px !important;
  border-radius: 10px !important;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 3px 14px rgba(232, 67, 147, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

.fs-bundle-btn:hover:not(:disabled) {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 20px rgba(232, 67, 147, 0.45);
}
.fs-bundle-btn:active:not(:disabled) {
  transform: scale(0.97);
}
.fs-bundle-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  filter: saturate(0.4);
}

/* ===== MULTI-SPIN HUD ===== */
.fs-multi-hud {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 10px;
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(232, 67, 147, 0.1), rgba(255, 107, 138, 0.08));
  border: 1px solid rgba(255, 107, 138, 0.25);
  border-radius: 14px;
}
.fs-multi-hud.hidden {
  display: none;
}

.fs-multi-progress,
.fs-multi-total {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.fs-multi-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: #9a8bb8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fs-multi-counter {
  font-size: 1.15rem;
  font-weight: 900;
  color: #e84393;
}

.fs-multi-amount {
  font-size: 1.15rem;
  font-weight: 900;
  color: #ff6b8a;
  transition: transform 0.2s;
}
.fs-multi-amount.bump {
  animation: fsMultiBump 0.3s ease;
}

@keyframes fsMultiBump {
  0% { transform: scale(1); }
  50% { transform: scale(1.35); color: #4ade80; }
  100% { transform: scale(1); }
}

/* ===== PAYTABLE DISPLAY ===== */
.fs-paytable {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.fs-pay-item {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.65rem;
  color: #7c6b9a;
  background: rgba(255, 107, 138, 0.04);
  border: 1px solid rgba(255, 107, 138, 0.06);
  padding: 3px 7px;
  border-radius: 8px;
}
.fs-pay-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}
.fs-pay-val {
  color: #c9b3e0;
  font-weight: 700;
}

/* ===== INFO PANEL OVERLAY ===== */
.fs-info-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 5, 24, 0.8);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  animation: fsInfoFadeIn 0.25s ease;
}
.fs-info-overlay.active {
  display: flex;
}

@keyframes fsInfoFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fs-info-panel {
  background: linear-gradient(135deg, #221240, #2d1650);
  border: 1px solid rgba(255, 107, 138, 0.25);
  border-radius: 22px;
  padding: 28px 24px 22px;
  max-width: 420px;
  width: 92%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 107, 138, 0.08);
  color: #e2d5f0;
  position: relative;
  animation: fsInfoSlideIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes fsInfoSlideIn {
  from { transform: scale(0.9) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.fs-info-panel h3 {
  text-align: center;
  margin: 0 0 18px;
  font-size: 1.15rem;
  font-weight: 900;
  background: linear-gradient(180deg, #ffb3c6, #ff6b8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fs-info-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: #9a8bb8;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
.fs-info-close:hover {
  color: #ff6b8a;
}

.fs-info-section {
  margin-bottom: 16px;
}
.fs-info-section:last-child {
  margin-bottom: 0;
}

.fs-info-section h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: #9a8bb8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 8px;
}

.fs-info-desc {
  font-size: 0.85rem;
  color: #c9b3e0;
  line-height: 1.5;
  margin: 0 0 8px;
}

/* Symbol info grid */
.fs-info-symbols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.fs-info-sym {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  background: rgba(255, 107, 138, 0.05);
  border: 1px solid rgba(255, 107, 138, 0.08);
  border-radius: 10px;
}
.fs-info-sym-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}
.fs-info-sym-details {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.fs-info-sym-name {
  font-size: 0.6rem;
  color: #9a8bb8;
}
.fs-info-sym-val {
  font-size: 0.8rem;
  font-weight: 800;
  color: #ff6b8a;
}

/* Cluster multiplier rows */
.fs-info-clusters {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fs-info-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 12px;
  background: rgba(255, 107, 138, 0.05);
  border-radius: 8px;
  font-size: 0.85rem;
}
.fs-info-row span:first-child {
  color: #c9b3e0;
}
.fs-info-row span:last-child {
  color: #ff6b8a;
  font-weight: 800;
}

/* ===== RESPONSIVE ===== */
:root {
  --fs-sym-h: 84px;
}

@media (max-width: 600px) {
  :root {
    --fs-sym-h: 62px;
  }

  .fs-machine {
    padding: 14px 10px 10px;
    border-radius: 20px;
    max-width: 100%;
    width: 96%;
  }
  .fs-title-img {
    height: 52px;
  }

  .fs-header {
    margin-bottom: 10px;
  }

  .fs-info-btn {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }

  .fs-info-symbols {
    grid-template-columns: repeat(2, 1fr);
  }

  .fs-info-panel {
    padding: 22px 16px 18px;
  }

  .fs-reels-frame {
    padding: 4px;
    border-radius: 12px;
  }

  .fs-reels {
    gap: 2px;
  }

  .fs-sym-img {
    width: 85%;
    height: 85%;
  }

  .fs-win-display {
    font-size: 0.85rem;
    min-height: 28px;
    margin-top: 8px;
  }
  .fs-win-display.win {
    font-size: 1rem;
  }

  .fs-paytable {
    gap: 4px;
    margin-top: 6px;
  }
  .fs-pay-item {
    font-size: 0.55rem;
    padding: 2px 5px;
  }
  .fs-pay-icon {
    width: 16px;
    height: 16px;
  }

  .fs-float { display: none; }

  .fs-bundle-card {
    padding: 8px 10px;
    margin-top: 8px;
  }
  .fs-bundle-badge {
    width: 34px;
    height: 34px;
    font-size: 0.75rem;
    border-radius: 10px;
  }
  .fs-bundle-title {
    font-size: 0.7rem;
  }
  .fs-bundle-desc {
    font-size: 0.6rem;
  }
  .fs-bundle-btn {
    font-size: 0.6rem !important;
    padding: 6px 10px !important;
    border-radius: 8px !important;
  }

  .fs-multi-hud {
    gap: 16px;
    padding: 8px 14px;
    margin-top: 6px;
  }
  .fs-multi-counter,
  .fs-multi-amount {
    font-size: 0.95rem;
  }
  .fs-multi-label {
    font-size: 0.55rem;
  }
}

@media (max-width: 380px) {
  :root {
    --fs-sym-h: 54px;
  }
  .fs-sym-img {
    width: 88%;
    height: 88%;
  }
  .fs-machine {
    padding: 10px 6px 8px;
  }
  .fs-bundle-card {
    flex-direction: column;
    gap: 6px;
  }
  .fs-info-symbols {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== FREE SPINS BANNER ===== */
.fs-free-spins-banner {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(16, 185, 129, 0.9));
  color: #fff;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35);
  animation: fsBannerPulse 2s ease-in-out infinite;
  white-space: nowrap;
}
.fs-free-spins-banner strong {
  color: #ffd700;
}
@keyframes fsBannerPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35); }
  50% { box-shadow: 0 4px 24px rgba(34, 197, 94, 0.55); }
}
.fs-spin-btn.free-spin-active {
  background: linear-gradient(135deg, #22c55e, #10b981) !important;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
}

/* Skip Button for Free Spins - inside banner */
.fs-free-spins-banner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fs-skip-btn {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.fs-skip-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #fcd34d, #fbbf24);
  transform: scale(1.05);
}
.fs-skip-btn:active:not(:disabled) {
  transform: scale(0.98);
}
.fs-skip-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}
