::-webkit-scrollbar {
    width: 0px;
}
    
::-webkit-scrollbar-track {
    border-radius: 0px;
}
    
::-webkit-scrollbar-thumb {
    background: transparent !important;
    border-radius: 0px;
}

.S9gUrf-YoZ4jf {
    display: none !important;
}

.bonus-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.bonus-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.bonus-modal-content {
  background: oklch(15.4% .006 148);
  border-radius: 24px;
  padding: 90px;
  max-width: 554px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.7) translateY(50px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: white;
}

.bonus-modal-overlay.show .bonus-modal-content {
  transform: scale(1) translateY(0);
}

.bonus-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  animation: bonusPulse 2s infinite;
  box-shadow: 
    0 0 30px rgba(255, 215, 0, 0.4),
    0 0 60px rgba(255, 215, 0, 0.2);
}

@keyframes bonusPulse {
  0%, 100% { 
    transform: scale(1); 
  }
  50% { 
    transform: scale(1.1); 
  }
}

.bonus-modal-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.bonus-amount {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  padding: 12px 24px;
  border-radius: 12px;
  display: inline-block;
}

.bonus-modal-message {
  font-size: 18px;
  line-height: 1.6;
  color: oklch(85% .02 148);
  margin-bottom: 32px;
  opacity: 0.9;
}

.bonus-modal-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.bonus-btn {
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 140px;
}

.bonus-btn-primary {
  color: white;
}

.bonus-btn-secondary {
  background: transparent;
  color: oklch(70% .02 148);
  border: 2px solid oklch(40% .04 148);
}

.bonus-btn-secondary:hover {
  background: oklch(25% .04 148);
  color: white;
  border-color: oklch(50% .06 148);
}

.bonus-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: oklch(60% .02 148);
  cursor: pointer;
  font-size: 24px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.bonus-close-btn:hover {
  background: oklch(30% .04 148);
  color: white;
}

.bonus-confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  animation: confettiFall 3s linear infinite;
}

.bonus-confetti:nth-child(odd) {
  background: #10b981;
  animation-delay: -0.5s;
}

.bonus-confetti:nth-child(3n) {
  background: #3b82f6;
  animation-delay: -1s;
}

@keyframes confettiFall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Responsivo */
@media (max-width: 480px) {
  .bonus-modal-content {
    padding: 24px;
    margin: 20px;
  }
  
  .bonus-modal-title {
    font-size: 24px;
  }
  
  .bonus-amount {
    font-size: 20px;
  }
  
  .bonus-modal-message {
    font-size: 16px;
  }
  
  .bonus-modal-buttons {
    flex-direction: column;
  }
  
  .bonus-btn {
    width: 100%;
  }
}