.floating-spin-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: auto;
  height: auto;
  padding: 15px 25px;
  background: #066cfa;
  color: white;
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(6, 108, 250, 0.3);
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.floating-spin-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(6, 108, 250, 0.4);
}

.floating-spin-button i {
  font-size: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.spin-wheel-card:hover {
  transform: translateY(-5px);
}

.spin-wheel-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.spin-wheel-card p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.spin-wheel-card .btn-primary {
  background-color: white;
  color: #ff6b6b;
  border: none;
  padding: 0.8rem 2rem;
  font-weight: bold;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.spin-wheel-card .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.spin-wheel-card small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Modal Styles */
#spinWheelModal .modal-content {
  border-radius: 15px;
  border: none;
}

#spinWheelModal .modal-header {
  background: #066cfa;
  color: white;
  border-radius: 15px 15px 0 0;
  border: none;
  padding: 1.5rem;
}

#spinWheelModal .modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

#spinWheelModal .modal-title i {
  font-size: 1.8rem;
}

#spinWheelModal .btn-close {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 8px;
  border-radius: 50%;
  opacity: 1;
  transition: background-color 0.3s ease;
}

#spinWheelModal .btn-close:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

#spinWheelModal .modal-body {
  padding: 2rem;
  background: #f8f9fa;
}

.reward-message {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.reward-message h4 {
  color: #ff6b6b;
  margin-bottom: 1rem;
}

.login-message,
.spin-limit-message {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.canvas-container {
  position: relative;
  margin: 0 auto;
  width: 300px;
  height: 300px;
}
