/* Ana sayfa — üst canlı band (2 satır: sayaçlar + kayan paketler) */
.dodo-live-band {
  --dodo-band-green-1: #064e3b;
  --dodo-band-green-2: #059669;
  --dodo-band-green-3: #10b981;
  --dodo-band-green-4: #bbf7d0;
  --dodo-band-text: #ecfdf5;
  --dodo-band-muted: rgba(236, 253, 245, 0.78);
  position: relative;
  z-index: 40;
  background: linear-gradient(
    90deg,
    var(--dodo-band-green-1) 0%,
    var(--dodo-band-green-2) 30%,
    var(--dodo-band-green-3) 55%,
    var(--dodo-band-green-2) 80%,
    var(--dodo-band-green-1) 100%
  );
  color: var(--dodo-band-text);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 11px;
  line-height: 1.2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 2px 10px rgba(5, 150, 105, 0.22);
}
.dodo-live-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, transparent 45%);
  pointer-events: none;
}
.dodo-live-band__wrap {
  position: relative;
  z-index: 1;
}
.dodo-live-band__row {
  width: 100%;
}
.dodo-live-band__row--stats {
  display: flex;
  align-items: center;
  gap: 10px 12px;
  min-height: 34px;
  padding: 5px 12px;
  flex-wrap: wrap;
}
.dodo-live-band__row--stats.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.dodo-live-band__live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 3px 9px 3px 7px;
}
.dodo-live-band__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #86efac;
  animation: dodo-band-pulse 2s ease-out infinite;
}
@keyframes dodo-band-pulse {
  0% { box-shadow: 0 0 0 0 rgba(134, 239, 172, 0.65); }
  70% { box-shadow: 0 0 0 7px rgba(134, 239, 172, 0); }
  100% { box-shadow: 0 0 0 0 rgba(134, 239, 172, 0); }
}
.dodo-live-band__chips {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 6px;
  flex-wrap: wrap;
}
.dodo-live-band__chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.dodo-live-band__chip > i {
  font-size: 10px;
  opacity: 0.85;
  color: var(--dodo-band-green-4);
}
.dodo-live-band__chip .dodo-live-band__num {
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #fff;
  line-height: 1;
}
.dodo-live-band__chip .dodo-live-band__lbl {
  font-size: 10px;
  font-weight: 500;
  color: var(--dodo-band-muted);
}
.dodo-live-band__row--ticker {
  background: rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 28px;
}
.dodo-live-band__marquee-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.dodo-live-band__marquee-viewport::before,
.dodo-live-band__marquee-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}
.dodo-live-band__marquee-viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(6, 78, 59, 0.95) 0%, transparent 100%);
}
.dodo-live-band__marquee-viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(6, 78, 59, 0.95) 0%, transparent 100%);
}
.dodo-live-band__marquee-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  padding: 6px 0;
  will-change: transform;
}
.dodo-live-band__marquee-track.is-css-marquee {
  animation: dodo-band-marquee 38s linear infinite;
}
.dodo-live-band__marquee-group {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
  padding-right: 32px;
}
.dodo-live-band__purchase {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--dodo-band-text);
  flex-shrink: 0;
}
.dodo-live-band__purchase > i {
  color: #86efac;
  font-size: 10px;
}
.dodo-live-band__purchase-prefix {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.04em;
}
.dodo-live-band__purchase strong {
  font-weight: 700;
  color: #fff;
}
.dodo-live-band__purchase em {
  font-style: normal;
  font-size: 10px;
  color: rgba(236, 253, 245, 0.5);
  margin-left: 2px;
}
.dodo-live-band__purchase--server strong {
  color: #d1fae5;
}
.dodo-live-band__purchase--domain strong {
  color: #fef08a;
}
@keyframes dodo-band-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .dodo-live-band__pulse {
    animation: none;
  }
  .dodo-live-band__marquee-track {
    animation-duration: 90s;
  }
}
@media (max-width: 767px) {
  .dodo-live-band__row--stats {
    padding: 5px 10px;
    gap: 6px 8px;
  }
  .dodo-live-band__chip .dodo-live-band__lbl {
    display: none;
  }
  .dodo-live-band__chip {
    padding: 4px 8px;
  }
  .dodo-live-band__chip--chart .dodo-live-band__lbl,
  .dodo-live-band__chip--reply .dodo-live-band__lbl {
    display: inline;
  }
  .dodo-live-band__chip--users .dodo-live-band__lbl,
  .dodo-live-band__chip--server .dodo-live-band__lbl,
  .dodo-live-band__chip--hdd .dodo-live-band__lbl,
  .dodo-live-band__chip--globe .dodo-live-band__lbl {
    display: none;
  }
  .dodo-live-band__purchase-prefix {
    display: none;
  }
}
@media (min-width: 1025px) {
  :root:has(.dodo-live-band):has(.dodo-promo-bar:not([hidden])) {
    --dodo-mega-menu-top: 228px;
  }
  :root:has(.dodo-live-band):not(:has(.dodo-promo-bar:not([hidden]))) {
    --dodo-mega-menu-top: 186px;
  }
}
