.ny2026-banner {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px) scale(0.8);
  padding: 20px 40px;
  background: linear-gradient(135deg, #00c851, #28a745, #20c997);
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  border-radius: 50px;
  box-shadow: 
    0 12px 40px rgba(0, 200, 81, 0.6),
    0 0 60px rgba(255, 255, 255, 0.4);
  opacity: 0;
  z-index: 9999;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  animation: 
    ny2026BigEntrance 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards,
    ny2026BounceGlow 3s ease-in-out 1.5s infinite;
  border: 3px solid rgba(255,255,255,0.8);
}

.leaf-left, .leaf-right {
  font-size: 1.8rem;
  margin: 0 10px;
  animation: leafFloat 2s ease-in-out infinite;
}

.leaf-right { animation-delay: -0.5s; }

@keyframes ny2026BigEntrance {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-50px) scale(0.3) rotate(-10deg);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1.2) rotate(2deg);
  }
  70% {
    transform: translateX(-50%) translateY(-5px) scale(1.05) rotate(-2deg);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes ny2026BounceGlow {
  0%, 100% { 
    transform: translateX(-50%) scale(1);
    box-shadow: 
      0 12px 40px rgba(0, 200, 81, 0.6),
      0 0 60px rgba(255, 255, 255, 0.4);
  }
  50% { 
    transform: translateX(-50%) scale(1.08);
    box-shadow: 
      0 20px 60px rgba(0, 200, 81, 0.8),
      0 0 100px rgba(255, 255, 255, 0.7),
      inset 0 0 20px rgba(255,255,255,0.3);
  }
}

@keyframes leafFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(10deg); }
}

/* Fireworks glow rings */
.ny2026-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: fireworkGlow 2s ease-out 0.8s infinite;
  z-index: -1;
}

@keyframes fireworkGlow {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .ny2026-banner {
    animation: none;
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  .leaf-left, .leaf-right { animation: none; }
}