@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}
@keyframes parallax-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.float-anim {
  animation: parallax-float 5s ease-in-out infinite;
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shimmer-btn {
  background: linear-gradient(90deg, #00c8e0 0%, #0077a8 40%, #00c8e0 80%, #0077a8 100%);
  background-size: 200% auto;
  animation: shimmer 2.5s linear infinite;
}
.prose {
  color: #e2e8f0;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 100%;
}
.prose h2 {
  color: #00c8e0;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #1e3a5f;
  padding-bottom: 0.4rem;
}
.prose h3 {
  color: #7dd3e8;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1rem;
  color: #cbd5e1;
}
.prose a {
  color: #00c8e0;
  text-decoration: underline;
}
.prose a:hover {
  color: #7dd3e8;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
}
.prose li {
  margin-bottom: 0.4rem;
}
.prose blockquote {
  border-left: 4px solid #00c8e0;
  padding-left: 1rem;
  color: #94a3b8;
  font-style: italic;
  margin: 1.5rem 0;
}
.prose img {
  max-width: 100%;
  border-radius: 0.75rem;
  margin: 1.5rem auto;
  display: block;
}
.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.5rem;
  color: #e2e8f0;
}
.prose thead {
  background: #0d2445;
}
.prose th {
  padding: 0.6rem 1rem;
  text-align: left;
  color: #00c8e0;
  font-weight: 700;
  border: 1px solid #1e3a5f;
}
.prose td {
  padding: 0.5rem 1rem;
  border: 1px solid #1e3a5f;
  color: #cbd5e1;
}
.prose tr:nth-child(even) {
  background: #0a1a30;
}
.nav-glass {
  background: rgba(6, 13, 31, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,200,224,0.15);
}
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: #b91c1c;
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.provider-tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  background: rgba(0,200,224,0.12);
  color: #7dd3e8;
  font-size: 0.85rem;
  margin: 0.25rem;
  border: 1px solid rgba(0,200,224,0.25);
  transition: background 0.2s;
}
.provider-tag:hover {
  background: rgba(0,200,224,0.25);
}
