/* Floating Right Side Indicators */
.hero-right-indicators {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 10;
  width: 100%;
  max-width: 280px;
  padding: 0 1rem;
}

.floating-indicator {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.85), rgba(40, 40, 40, 0.75));
  border: 2px solid rgba(6, 190, 222, 0.20);
  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(6, 190, 222, 0.40);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.floating-indicator.highlight {
  border-color: rgba(6, 190, 222, 0.50);
  background: linear-gradient(135deg, rgba(6, 190, 222, 0.08), rgba(74, 171, 223, 0.04));
  box-shadow: 0 8px 32px rgba(6, 190, 222, 0.15);
}

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

.indicator-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #06BEDE;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(6, 190, 222, 0.35);
}

.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 - Top Right, Slide Down */
.toast-winner-container {
  position: fixed;
  top: 80px;
  right: 30px;
  z-index: 1000;
  pointer-events: none;
}

.winner-toast {
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.3s ease-out, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

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

.winner-toast.hide {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.25s ease-in, transform 0.25s ease-in;
}

.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 {
    top: 70px;
    right: 15px;
  }
  
  .toast-content {
    max-width: 280px;
    padding: 0.8rem 1rem;
  }
}