/* Floating Bonus Button Styles */
.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, #ff6600, #ff8800);
  color: white;
  padding: 12px 22px;
  border-radius: 0 0 12px 12px;
  cursor: pointer;
  font-weight: bold;
  writing-mode: vertical-rl;
  animation: wiggle 3s infinite;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
  border: 2px solid #fff;
}

.bonus-content {
  background: linear-gradient(135deg, #2a2a2a, #404040);
  padding: 30px 25px;
  border-radius: 0 12px 12px 0;
  width: 280px;
  text-align: center;
  color: white;
  border: 3px solid #ff6600;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.bonus-amount {
  font-size: 34px;
  font-weight: bold;
  color: #ff6600;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(255, 102, 0, 0.3);
}

.bonus-plus {
  font-size: 26px;
  margin: 12px 0;
  opacity: 0.9;
  color: #fff;
}

.bonus-percent {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #ff6600;
  text-shadow: 0 2px 4px rgba(255, 102, 0, 0.3);
}

.bonus-claim-btn {
  background: linear-gradient(45deg, #ff6600, #ff8800);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  animation: pulse 2s infinite;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bonus-claim-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.6);
}

@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.08); }
}

@media (max-width: 768px) {
  .floating-bonus {
    left: -250px;
  }
  
  .bonus-content {
    width: 250px;
    padding: 25px 20px;
  }
  
  .bonus-amount,
  .bonus-percent {
    font-size: 28px;
  }
  
  .bonus-claim-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .floating-bonus {
    left: -220px;
  }
  
  .bonus-content {
    width: 220px;
    padding: 20px 15px;
  }
  
  .bonus-amount,
  .bonus-percent {
    font-size: 24px;
  }
  
  .bonus-plus {
    font-size: 20px;
  }
  
  .bonus-claim-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
}
