/* Floating Right Side Indicators */
.hero-right-indicators {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
}

.floating-indicator {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.85), rgba(40, 40, 40, 0.75));
  border: 2px solid rgba(255, 215, 0, 0.25);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  text-align: center;
  backdrop-filter: blur(15px);
  min-width: 180px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.floating-indicator:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.floating-indicator.highlight {
  border-color: rgba(255, 215, 0, 0.6);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
}

.floating-indicator.highlight .indicator-value {
  animation: pulse 2.5s ease-in-out infinite;
}

.indicator-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFD700;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.4);
}

.indicator-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
  line-height: 1.2;
}

/* Toast Winner Notifications - Bottom Right */
.toast-winner-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  pointer-events: none;
}

.winner-toast {
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
}

.winner-toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast-content {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(34, 197, 94, 0.1));
  border: 2px solid rgba(34, 197, 94, 0.4);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(34, 197, 94, 0.3);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 320px;
  animation: subtle-glow 2s ease-in-out infinite alternate;
}

.toast-icon {
  font-size: 1.5rem;
  color: #22c55e;
  flex-shrink: 0;
  animation: bounce-icon 2s ease-in-out infinite;
}

.toast-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.toast-winner-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.toast-winner-amount {
  font-size: 0.8rem;
  font-weight: 600;
  color: #22c55e;
  line-height: 1.2;
  margin-top: 0.1rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

@keyframes subtle-glow {
  0%, 100% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(34, 197, 94, 0.3); }
  50% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 25px rgba(34, 197, 94, 0.5); }
}

@keyframes bounce-icon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .hero-right-indicators {
    right: 20px;
    gap: 0.5rem;
  }
  
  .floating-indicator {
    min-width: 140px;
    padding: 0.8rem 1rem;
  }
  
  .indicator-value {
    font-size: 1.2rem;
  }
  
  .indicator-label {
    font-size: 0.6rem;
  }
  
  .toast-winner-container {
    bottom: 20px;
    right: 20px;
  }
  
  .toast-content {
    max-width: 280px;
    padding: 0.8rem 1rem;
  }
}