/* src/styles/games/clickGame.css */
.compact-game {
  max-width: 400px !important;
  margin: 0 auto;
}

.compact-game .game-content {
  padding: 12px;
}

.compact-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  background: #f8f9fa;
  padding: 8px;
  border-radius: 4px;
}

.compact-stat {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.compact-button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #3b82f6;
  color: white;
}

.compact-button:hover:not(:disabled) {
  background-color: #2563eb;
}

.compact-button.button-click {
  background-color: #dbeafe;
  color: #1e40af;
}

.compact-button.button-click:hover:not(:disabled) {
  background-color: #bfdbfe;
}

.compact-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Golden click styles */
.compact-button.button-click.golden-click {
  background: linear-gradient(45deg, #ffd700, #ffb347);
  color: #1e3a8a;
  border: 2px solid #ffd700;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
  animation: golden-pulse 1s infinite alternate;
}

.compact-button.button-click.golden-click:hover:not(:disabled) {
  background: linear-gradient(45deg, #ffcd00, #ffa327);
  border-color: #ffcd00;
}

@keyframes golden-pulse {
  from {
      box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  }
  to {
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  }
}