/* ADA banner - from ADABanner.tsx */
#banner.ada-banner {
  margin-bottom: 40px;
}
.ada-banner .ada-banner-inner {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(to right, #f97316, #ea580c, #dc2626);
}
.ada-banner-shimmer {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  background-size: 200% 200%;
  animation: ada-shimmer 20s linear infinite alternate;
}
@keyframes ada-shimmer {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

/* Particles */
.ada-banner-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
}
.ada-banner-particle-1  { left: 5%;  top: 10%; animation: ada-float 4s ease-in-out infinite 0s; }
.ada-banner-particle-2  { left: 15%; top: 60%; animation: ada-float 5s ease-in-out infinite 0.5s; }
.ada-banner-particle-3  { left: 25%; top: 30%; animation: ada-float 3.5s ease-in-out infinite 1s; }
.ada-banner-particle-4  { left: 35%; top: 80%; animation: ada-float 4.5s ease-in-out infinite 0.2s; }
.ada-banner-particle-5  { left: 45%; top: 20%; animation: ada-float 5.5s ease-in-out infinite 1.2s; }
.ada-banner-particle-6  { left: 55%; top: 70%; animation: ada-float 3s ease-in-out infinite 0.8s; }
.ada-banner-particle-7  { left: 65%; top: 40%; animation: ada-float 4.2s ease-in-out infinite 0.3s; }
.ada-banner-particle-8  { left: 75%; top: 90%; animation: ada-float 5.2s ease-in-out infinite 1.5s; }
.ada-banner-particle-9  { left: 85%; top: 15%; animation: ada-float 3.8s ease-in-out infinite 0.6s; }
.ada-banner-particle-10 { left: 92%; top: 55%; animation: ada-float 4.8s ease-in-out infinite 1s; }
.ada-banner-particle-11 { left: 10%; top: 45%; animation: ada-float 5.3s ease-in-out infinite 0.4s; }
.ada-banner-particle-12 { left: 50%; top: 5%; animation: ada-float 3.2s ease-in-out infinite 1.3s; }
.ada-banner-particle-13 { left: 70%; top: 25%; animation: ada-float 4.4s ease-in-out infinite 0.1s; }
.ada-banner-particle-14 { left: 30%; top: 95%; animation: ada-float 5.1s ease-in-out infinite 0.9s; }
.ada-banner-particle-15 { left: 90%; top: 35%; animation: ada-float 3.6s ease-in-out infinite 0.7s; }
@keyframes ada-float {
  0% { transform: translateY(0) translateX(0); opacity: 0.3; }
  40% { opacity: 0.6; }
  100% { transform: translateY(-250px) translateX(10px); opacity: 0; }
}

/* Content */
.ada-banner-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 2rem;
}
.ada-banner-text {
  text-align: center;
}
.ada-banner .ada-banner-content h1 {
  margin: 0 0 0.25rem;
  font-size: 1.75rem;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.ada-banner-subheadline {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
}
@media (min-width: 768px) {
  .ada-banner .ada-banner-content h1 { font-size: 2.25rem; }
  .ada-banner-subheadline { font-size: 1.1rem; }
}
.ada-banner-icons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.ada-banner-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ada-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 1.25rem;
  animation: ada-icon-bounce 2s ease-in-out infinite;
}
.ada-banner-icon-item:nth-child(1) .ada-icon-wrap { animation-delay: 0s; }
.ada-banner-icon-item:nth-child(2) .ada-icon-wrap { animation-delay: 0.2s; }
.ada-banner-icon-item:nth-child(3) .ada-icon-wrap { animation-delay: 0.4s; }
.ada-banner-icon-item:nth-child(4) .ada-icon-wrap { animation-delay: 0.6s; }
.ada-banner-icon-item:nth-child(5) .ada-icon-wrap { animation-delay: 0.8s; }
.ada-banner-icon-item:nth-child(6) .ada-icon-wrap { animation-delay: 1s; }
@keyframes ada-icon-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Bottom accent line */
.ada-banner-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(to right, #facc15, #fb923c, #f87171);
  animation: ada-accent-width 1.5s ease-out 0.3s both;
}
@keyframes ada-accent-width {
  from { width: 0%; }
  to { width: 100%; }
}

/* Scanning line */
.ada-banner-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  animation: ada-scan 3s linear infinite;
}
@keyframes ada-scan {
  0% { left: 0%; }
  100% { left: 100%; }
}
