.catch-game-container {
  position: relative;
  width: 100%;
  height: 500px;
  background: #e0f2fe;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #bae6fd;
}

.basket {
  position: absolute;
  bottom: 20px;
  width: 73px;
  height: 62px;
  background-size: contain !important;
  background-position: center !important;
  transform-origin: bottom center;
  animation: rockBasket 1s ease-in-out infinite;
}

@keyframes rockBasket {
  0% { transform: rotate(-10deg); }
  50% { transform: rotate(15deg); }
  100% { transform: rotate(-10deg); }
}

.rare-item {
  filter: drop-shadow(0 0 8px gold);
  animation: rare-glow 1s ease-in-out infinite alternate;
}

@keyframes rare-glow {
  from { filter: drop-shadow(0 0 4px gold); }
  to { filter: drop-shadow(0 0 12px gold); }
}

.falling-item {
  position: absolute;
  width: 45px;
  height: 45px;
  background-size: contain !important;
  background-position: center !important;
  pointer-events: none;
  /* Debug styles */
  /*border: 2px solid rgba(255, 0, 0, 0.5);
  background-color: rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);*/
}

/* Spinning animations */
@keyframes spinLeft {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

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

.spin-left {
  animation: spinLeft 2s linear infinite;
}

.spin-right {
  animation: spinRight 2s linear infinite;
}

/* Rest of your existing styles... */
.compact-game {
  max-width: 500px !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;
}

.stat-group {
  text-align: center;
}

.stat-label {
  font-size: 12px;
  color: #666;
}

.stat-value {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-align: center;
}

.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:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.mobile-instructions {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  padding: 0.5rem;
}