/* SPLASH SCREEN */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, #0e1a42 0%, #09101f 100%);
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-family: 'Audiowide', 'Orbitron', 'Segoe UI', Arial, sans-serif;
  text-align: center;
  overflow: hidden;
  animation: splashFadeIn 0.5s ease-in;
}

#splash-screen::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  z-index: -1;
  background: 
    radial-gradient(circle at 30% 40%, rgba(0, 226, 255, 0.4) 0%, transparent 35%),
    radial-gradient(circle at 70% 60%, rgba(0, 121, 255, 0.3) 0%, transparent 35%);
  animation: splashBgRotate 6s linear infinite;
}

.splash-content {
  background: rgba(17, 26, 51, 0.95);
  border-radius: 30px;
  box-shadow: 
    0 0 60px rgba(0, 226, 255, 0.8), 
    0 0 30px rgba(0, 226, 255, 0.4);
  border: 3px solid rgba(0, 226, 255, 0.6);
  padding: 40px 30px;
  max-width: 90%;
  width: 100%;
  max-width: 500px;
  color: #fff;
  backdrop-filter: blur(15px);
  transform: scale(0.8);
  animation: splashContentScale 0.8s ease-out forwards;
}

.splash-title {
  font-size: clamp(2.2em, 8vw, 3.5em);
  margin: 0 0 20px 0;
  color: #00e2ff;
  text-shadow: 
    0 0 40px #00e2ff, 
    0 0 20px #fff,
    0 0 10px #00e2ff;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-family: 'Audiowide', cursive;
  text-align: center;
  line-height: 1.2;
  animation: splashTitleGlow 2s ease-in-out infinite alternate;
}

.splash-tagline {
  margin: 0;
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(1.1em, 4vw, 1.4em);
  color: #ffdb57;
  text-shadow: 
    0 0 15px #ffdb57, 
    0 0 8px #fff;
  letter-spacing: 0.02em;
  line-height: 1.4em;
  text-align: center;
  animation: splashTaglineGlow 2.5s ease-in-out infinite alternate;
}

/* Splash Screen Animations */
@keyframes splashFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes splashBgRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes splashContentScale {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes splashTitleGlow {
  from {
    text-shadow: 
      0 0 40px #00e2ff, 
      0 0 20px #fff,
      0 0 10px #00e2ff;
  }
  to {
    text-shadow: 
      0 0 60px #00e2ff, 
      0 0 30px #fff,
      0 0 15px #00e2ff;
  }
}

@keyframes splashTaglineGlow {
  from {
    text-shadow: 
      0 0 15px #ffdb57, 
      0 0 8px #fff;
  }
  to {
    text-shadow: 
      0 0 25px #ffdb57, 
      0 0 12px #fff;
  }
}

/* Splash screen fade out animation */
.splash-fade-out {
  animation: splashFadeOut 0.5s ease-out forwards;
}

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

/* Mobile optimization for splash screen */
@media (max-width: 480px) {
  .splash-content {
    padding: 30px 20px;
    margin: 0 15px;
  }
  
  .splash-title {
    margin-bottom: 15px;
  }
}

@media (max-height: 600px) {
  .splash-content {
    padding: 25px 20px;
  }
  
  .splash-title {
    margin-bottom: 10px;
  }
}

/* MOBILE-FIRST MENU DESIGN */

/* MOBILE MAIN MENU */
#main-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, #0e1a42 0%, #09101f 100%);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--primary);
  animation: fadeIn 0.7s;
  font-family: 'Audiowide', 'Orbitron', 'Segoe UI', Arial, sans-serif;
  text-align: center;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 15px;
  box-sizing: border-box;
  /* Mobile touch scrolling */
  -webkit-overflow-scrolling: touch;
}

#main-menu::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  z-index: -1;
  background: 
    radial-gradient(circle at 30% 40%, rgba(0, 226, 255, 0.4) 0%, transparent 35%),
    radial-gradient(circle at 70% 60%, rgba(0, 121, 255, 0.3) 0%, transparent 35%);
}

/* MOBILE MENU CONTENT */
.menu-content {
  background: rgba(17, 26, 51, 0.98);
  border-radius: 25px;
  box-shadow: 
    0 0 50px rgba(0, 226, 255, 0.6), 
    0 0 20px rgba(0, 226, 255, 0.3);
  border: 3px solid rgba(0, 226, 255, 0.5);
  padding: 30px 25px;
  max-width: 95%;
  width: 100%;
  max-width: 400px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(10px);
  box-sizing: border-box;
  padding-top: calc(env(safe-area-inset-top,0px) + 120px) !important;
}

/* MOBILE GAME TITLE */
.game-title {
  font-size: clamp(1.5em, 5.5vw, 2.2em) !important;
  margin: 0 0 30px 0;
  color: #00e2ff;
  text-shadow: 
    0 0 30px #00e2ff, 
    0 0 15px #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-family: 'Audiowide', cursive;
  text-align: center;
  line-height: 1.4 !important;
  margin-top: 0px !important;
  margin-bottom: 30px !important;
  white-space: normal !important;
  padding-top: 0px !important;
  word-wrap: break-word !important;
  position: relative;
}

/* MOBILE TAGLINE */
.tagline {
  margin: 0 0 30px 0;
  font-family: 'Exo 2', sans-serif;
  font-size: 1.1em;
  color: #ffdb57;
  text-shadow: 
    0 0 10px #ffdb57, 
    0 0 5px #fff;
  letter-spacing: 0.02em;
  line-height: 1.4em;
  text-align: center;
}

/* MOBILE MENU BUTTONS CONTAINER */
.menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 15px;
}

/* MOBILE MENU BUTTONS */
.menu-btn {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.7) 0%, 
    rgba(0, 226, 255, 0.1) 30%, 
    rgba(0, 226, 255, 0.15) 70%, 
    rgba(0, 0, 0, 0.7) 100%);
  color: #00e2ff;
  border: 2px solid rgba(0, 226, 255, 0.5);
  border-radius: 15px;
  padding: 18px 20px;
  font-size: 1.3em;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 0;
  box-shadow: 0 0 20px rgba(0, 226, 255, 0.2), inset 0 0 10px rgba(0, 226, 255, 0.05);
  font-family: 'Audiowide', 'Orbitron', 'Segoe UI', Arial, sans-serif;
  letter-spacing: 0.06em;
  width: 100%;
  text-shadow: 0 0 10px rgba(0, 226, 255, 0.8);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  /* Mobile touch optimization */
  min-height: 60px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  text-align: center;
  font-weight: 600;
}

/* MOBILE MENU BUTTON ACTIVE STATE */
.menu-btn:active {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.7) 0%, 
    rgba(0, 226, 255, 0.2) 30%, 
    rgba(0, 226, 255, 0.25) 70%, 
    rgba(0, 0, 0, 0.7) 100%);
  color: #00e2ff;
  transform: scale(0.97);
  box-shadow: 0 0 25px rgba(0, 226, 255, 0.4);
}

/* MOBILE MENU SCREENS */
.menu-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, #0e1a42 0%, #09101f 100%);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: 'Exo 2', 'Segoe UI', 'Arial', sans-serif;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 15px;
  box-sizing: border-box;
  /* Mobile touch scrolling */
  -webkit-overflow-scrolling: touch;
}

.menu-screen .menu-content {
  width: 100%;
  max-width: 450px;
  max-height: calc(100vh - 40px);
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 30px 25px;
  border-radius: 25px;
  box-sizing: border-box;
  /* Ensure content is always scrollable */
  -webkit-overflow-scrolling: touch;
  /* Add bottom margin for mobile scrolling */
  margin-bottom: 20px;
}

/* MOBILE MENU SCREEN HEADINGS */
.menu-screen h2 {
  font-size: 2em;
  margin-top: 0;
  margin-bottom: 30px;
  color: #00e2ff;
  text-shadow: 
    0 0 25px #00e2ff, 
    0 0 10px #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  font-family: 'Audiowide', cursive;
  align-self: center;
}

/* MOBILE BACK BUTTON */
.back-btn {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.7) 0%, 
    rgba(0, 226, 255, 0.1) 30%, 
    rgba(0, 226, 255, 0.15) 70%, 
    rgba(0, 0, 0, 0.7) 100%);
  color: #00e2ff;
  border: 2px solid rgba(0, 226, 255, 0.5);
  border-radius: 15px;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 226, 255, 0.2), inset 0 0 10px rgba(0, 226, 255, 0.05);
  font-family: 'Audiowide', 'Orbitron', 'Segoe UI', Arial, sans-serif;
  letter-spacing: 0.06em;
  margin-top: 30px;
  text-shadow: 0 0 10px rgba(0, 226, 255, 0.8);
  transition: all 0.2s ease;
  /* Mobile touch optimization */
  min-height: 55px;
  touch-action: manipulation;
  text-align: center;
  font-weight: 600;
}

/* MOBILE BACK BUTTON ACTIVE STATE */
.back-btn:active {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.7) 0%, 
    rgba(0, 226, 255, 0.2) 30%, 
    rgba(0, 226, 255, 0.25) 70%, 
    rgba(0, 0, 0, 0.7) 100%);
  transform: scale(0.97);
  box-shadow: 0 0 25px rgba(0, 226, 255, 0.4);
}

/* COINS CONTAINER */
.coins-container {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 206, 0, 0.15);
  border-radius: 50px;
  padding: 8px 20px;
  margin: 15px 0 20px 0;
  border: 3px solid rgba(255, 206, 0, 0.4);
  box-shadow: 0 0 15px rgba(255, 206, 0, 0.3);
  align-self: center;
}

/* STATIC COINS DISPLAY IN CORNER */
.coins-container.static-coins {
  position: fixed;
  top: 20px;
  right: 20px;
  margin: 0;
  z-index: 6001; /* Higher than splash screen and menu */
  background: rgba(255, 206, 0, 0.2);
  border: 3px solid rgba(255, 206, 0, 0.6);
  box-shadow: 0 0 20px rgba(255, 206, 0, 0.4);
  backdrop-filter: blur(10px);
  align-self: auto;
  /* Mobile touch optimization */
  pointer-events: auto;
  user-select: none;
  /* Smooth transitions */
  transition: all 0.3s ease;
}

/* Mobile responsive adjustments for static coins */
@media (max-width: 480px) {
  .coins-container.static-coins {
    top: 15px;
    right: 15px;
    padding: 6px 16px;
    gap: 10px;
  }
  
  .coins-container.static-coins .coins-icon {
    font-size: 1.3em;
  }
  
  .coins-container.static-coins .coins-value {
    font-size: 1.4em;
  }
}

/* Ensure static coins display above splash screen */
@media (max-height: 600px) {
  .coins-container.static-coins {
    top: 10px;
    right: 10px;
    padding: 5px 14px;
  }
}

/* Hide coins during gameplay - only when game container is actively displayed */
#game-container:not(.hidden) ~ .coins-container.static-coins {
  display: none !important;
}

/* Also hide coins when the main game container is displayed (fallback) */
body:has(#game-container:not(.hidden)) .coins-container.static-coins {
  display: none !important;
}

.coins-icon {
  font-size: 1.5em;
  color: #ffce00;
  text-shadow: 0 0 12px rgba(255, 206, 0, 0.7);
}

.coins-value {
  font-size: 1.6em;
  font-weight: bold;
  color: #ffce00;
  font-family: 'Audiowide', cursive;
  text-shadow: 0 0 15px rgba(255, 206, 0, 0.5);
}

/* CHARACTER LEVEL DISPLAY */
.character-level {
  background: rgba(0, 226, 255, 0.15);
  border-radius: 25px;
  padding: 5px 15px;
  margin-bottom: 15px;
  color: #00e2ff;
  font-weight: bold;
  font-family: 'Audiowide', cursive;
  font-size: 1em;
  display: inline-block;
}

/* UPGRADE BUTTONS */
.upgrade-btn {
  background: linear-gradient(to bottom, rgba(255, 206, 0, 0.3), rgba(255, 159, 0, 0.3));
  color: #ffce00;
  border: 3px solid rgba(255, 206, 0, 0.5);
  border-radius: 15px;
  padding: 15px 20px;
  font-family: 'Audiowide', cursive;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  box-shadow: 0 0 15px rgba(255, 206, 0, 0.2);
  text-shadow: 0 0 8px rgba(255, 206, 0, 0.6);
  /* Mobile touch optimization */
  min-height: 55px;
  touch-action: manipulation;
  font-weight: 600;
  text-align: center;
}

.upgrade-btn:active:not(:disabled) {
  background: linear-gradient(to bottom, rgba(255, 206, 0, 0.4), rgba(255, 159, 0, 0.4));
  transform: scale(0.97);
}

.upgrade-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  color: #b89e00;
}

.reset-btn {
  background: linear-gradient(to bottom, rgba(255, 79, 101, 0.3), rgba(220, 40, 60, 0.3));
  color: #ff4f65;
  border: 3px solid rgba(255, 79, 101, 0.5);
  border-radius: 15px;
  padding: 15px 20px;
  font-family: 'Audiowide', cursive;
  font-size: 0.9em;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  box-shadow: 0 0 15px rgba(255, 79, 101, 0.2);
  text-shadow: 0 0 8px rgba(255, 79, 101, 0.6);
  /* Mobile touch optimization */
  min-height: 50px;
  touch-action: manipulation;
  font-weight: 600;
  text-align: center;
}

.reset-btn:active:not(:disabled) {
  background: linear-gradient(to bottom, rgba(255, 79, 101, 0.4), rgba(220, 40, 60, 0.4));
  transform: scale(0.97);
}

.reset-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  color: #b85555;
}

/* CHARACTERS HEADER LAYOUT */
.characters-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
  position: relative;
}

.characters-header h2 {
  margin: 0;
  align-self: center;
}

/* BACK BUTTON TOP POSITION */
.back-btn-top {
  align-self: center;
  margin-top: 10px;
}

/* MENU BUTTON VARIATIONS */
.menu-btn.danger {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.7) 0%, 
    rgba(255, 71, 87, 0.1) 30%, 
    rgba(255, 71, 87, 0.15) 70%, 
    rgba(0, 0, 0, 0.7) 100%);
  color: #ff4757;
  border-color: rgba(255, 71, 87, 0.5);
  text-shadow: 0 0 10px rgba(255, 71, 87, 0.8);
  box-shadow: 0 0 20px rgba(255, 71, 87, 0.2), inset 0 0 10px rgba(255, 71, 87, 0.05);
}

.menu-btn.danger:active {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.7) 0%, 
    rgba(255, 71, 87, 0.2) 30%, 
    rgba(255, 71, 87, 0.25) 70%, 
    rgba(0, 0, 0, 0.7) 100%);
  box-shadow: 0 0 25px rgba(255, 71, 87, 0.4);
}

.menu-btn.debug {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.7) 0%, 
    rgba(255, 193, 7, 0.1) 30%, 
    rgba(255, 193, 7, 0.15) 70%, 
    rgba(0, 0, 0, 0.7) 100%);
  color: #ffc107;
  border-color: rgba(255, 193, 7, 0.5);
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.8);
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.2), inset 0 0 10px rgba(255, 193, 7, 0.05);
}

.menu-btn.debug:active {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.7) 0%, 
    rgba(255, 193, 7, 0.2) 30%, 
    rgba(255, 193, 7, 0.25) 70%, 
    rgba(0, 0, 0, 0.7) 100%);
  box-shadow: 0 0 25px rgba(255, 193, 7, 0.4);
}

/* PUSH BUTTON */
.push-btn {
  background: rgba(255, 140, 0, 0.8);
  color: white;
  border: 2px solid #ff8c00;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
}

.push-btn:disabled {
  background: rgba(100, 100, 100, 0.5);
  color: #666;
  border-color: #666;
  cursor: not-allowed;
}

/* PUSH TARGET CELLS */
.cell[data-push-target="true"] {
  border: 3px dashed #ff8c00 !important;
  background: rgba(255, 140, 0, 0.2) !important;
  animation: pulsePushTarget 1s infinite;
}

@keyframes pulsePushTarget {
  0% {
    border-color: rgba(255, 140, 0, 0.8);
    background: rgba(255, 140, 0, 0.2);
  }
  50% {
    border-color: rgba(255, 140, 0, 1);
    background: rgba(255, 140, 0, 0.3);
  }
  100% {
    border-color: rgba(255, 140, 0, 0.8);
    background: rgba(255, 140, 0, 0.2);
  }
}

/* REWARD AD BUTTON */
.menu-btn.reward-ad-btn {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.7) 0%, 
    rgba(255, 193, 7, 0.15) 30%, 
    rgba(255, 193, 7, 0.2) 70%, 
    rgba(0, 0, 0, 0.7) 100%);
  color: #ffc107;
  border-color: rgba(255, 193, 7, 0.6);
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.8);
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.menu-btn.reward-ad-btn:active {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.7) 0%, 
    rgba(255, 193, 7, 0.25) 30%, 
    rgba(255, 193, 7, 0.3) 70%, 
    rgba(0, 0, 0, 0.7) 100%);
  box-shadow: 0 0 25px rgba(255, 193, 7, 0.5);
}

.menu-btn.reward-ad-btn:disabled {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.7) 0%, 
    rgba(100, 100, 100, 0.1) 30%, 
    rgba(100, 100, 100, 0.15) 70%, 
    rgba(0, 0, 0, 0.7) 100%);
  color: #666;
  border-color: rgba(100, 100, 100, 0.3);
  text-shadow: none;
  box-shadow: none;
}

/* BONUS COINS BUTTON */
.menu-btn.bonus-coins {
  color: #ffdb57;
  border-color: rgba(255, 219, 87, 0.6);
  text-shadow: 0 0 10px rgba(255, 219, 87, 0.8);
  box-shadow: 0 0 20px rgba(255, 219, 87, 0.3);
}

.menu-btn.bonus-coins:active {
  box-shadow: 0 0 25px rgba(255, 219, 87, 0.5);
}

.menu-btn.bonus-coins.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  color: #999;
  border-color: rgba(100, 100, 100, 0.3);
  text-shadow: none;
  box-shadow: none;
}

.menu-btn.bonus-coins.cooldown {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.7) 0%, 
    rgba(255, 152, 0, 0.1) 30%, 
    rgba(255, 152, 0, 0.15) 70%, 
    rgba(0, 0, 0, 0.7) 100%);
  color: #ff9800;
  animation: none;
}

/* AD OPTIONS AND END ACTIONS */
.ad-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.end-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid rgba(0, 226, 255, 0.3);
}

/* DRUID ACTION PANEL */
.character-action-panel.druid .character-action-btn.druid-btn {
  background: linear-gradient(to bottom, #228B22, #1B5E20);
  color: #E8FFE8;
  border: 3px solid #32CD32;
  box-shadow: 0 0 15px rgba(34, 139, 34, 0.5);
}

.character-action-panel.druid .cooldown-text.druid-cooldown {
  color: #32CD32;
  text-shadow: 0 0 8px rgba(34, 139, 34, 0.4);
}

/* GAMBLER ACTION PANEL */
.character-action-panel.Gambler .character-action-btn.gambler-btn {
  background: linear-gradient(to bottom, rgba(255, 23, 68, 0.2), rgba(255, 23, 68, 0.4));
  border-color: rgba(255, 23, 68, 0.6);
  color: #FF1744;
  text-shadow: 0 0 8px rgba(255, 23, 68, 0.6), 0 0 15px rgba(255, 7, 58, 0.4);
}

.character-action-panel.Gambler .cooldown-text.gambler-cooldown {
  color: #FF1744;
}

/* MUSICIAN ACTION PANEL */
.character-action-panel.Musician .character-action-btn.musician-btn {
  background: linear-gradient(to bottom, rgba(255, 0, 255, 0.2), rgba(255, 0, 255, 0.4));
  border-color: rgba(255, 0, 255, 0.6);
  color: #FF00FF;
  text-shadow: 0 0 8px rgba(255, 0, 255, 0.6), 0 0 15px rgba(153, 51, 255, 0.4);
}

.character-action-panel.Musician .cooldown-text.musician-cooldown {
  color: #FF00FF;
}

/* Gambler-specific button */
.character-action-btn.gambler-btn {
  background: linear-gradient(to bottom, #FF1744, #FF073A);
  color: #000000;
  border: 3px solid #FF1744;
  box-shadow: 0 0 15px rgba(255, 23, 68, 0.8), 0 0 25px rgba(255, 7, 58, 0.6);
}

.character-action-btn.gambler-btn:not(:disabled):hover {
  background: linear-gradient(to bottom, #FF4569, #FF2D5A);
  box-shadow: 0 0 20px rgba(255, 23, 68, 1), 0 0 35px rgba(255, 7, 58, 0.8);
  transform: translateY(-2px);
}

/* Musician-specific button */
.character-action-btn.musician-btn {
  background: linear-gradient(to bottom, #FF00FF, #9933FF);
  color: #000000;
  border: 3px solid #FF00FF;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.8), 0 0 25px rgba(153, 51, 255, 0.6);
} 