.floating-bonus {
  position: fixed;
  left: -280px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  transition: left 0.4s ease;
}

.floating-bonus.open {
  left: 0;
}

.bonus-toggle {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: linear-gradient(45deg, #ff4500, #ff6500);
  color: white;
  padding: 10px 15px;
  border-radius: 0 0 15px 15px;
  cursor: pointer;
  font-weight: bold;
  writing-mode: vertical-rl;
  animation: wiggle 3s infinite;
}

.bonus-content {
  background: linear-gradient(135deg, #1a4f3a, #2d7a5f);
  padding: 25px 20px;
  border-radius: 0 15px 15px 0;
  width: 230px;
  text-align: center;
  color: white;
  border: 3px solid #ff4500;
}

.bonus-amount {
  font-size: 32px;
  font-weight: bold;
  color: #ff4500;
  margin-bottom: 10px;
}

.bonus-plus {
  font-size: 24px;
  margin: 10px 0;
  opacity: 0.8;
}

.bonus-percent {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.bonus-claim-btn {
  background: #ff4500;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  animation: pulse 2s infinite;
}

@keyframes wiggle {
  0%, 100% { transform: translateY(-50%) rotate(-90deg); }
  25% { transform: translateY(-55%) rotate(-90deg); }
  75% { transform: translateY(-45%) rotate(-90deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
