/**
 * LED лента – црна позадина, од крај до крај (full width), стандарден bold фонт
 */
.dentoria-led-ticker-wrap {
  background: #0a0a0a;
  color: #fff;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding: 0.6em 0.75em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  box-sizing: border-box;
  border-bottom: 2px solid #1a1a1a;
}

/* 6 копии: лентата е подолга од екранот → десно секогаш има текст. Една единица = 1/6 → loop без прекин */
.dentoria-led-ticker-content {
  display: inline-block;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.dentoria-led-ticker-item {
  white-space: nowrap;
}

.dentoria-led-ticker-icon,
.dentoria-led-ticker-sep {
  display: inline-flex;
  align-items: center;
  margin: 0 0.5em;
  vertical-align: middle;
  color: #fff;
  opacity: 0.9;
}

.dentoria-led-ticker-tooth {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

.dentoria-led-ticker-link {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  padding: 0;
}

.dentoria-led-ticker-link:hover,
.dentoria-led-ticker-link:focus {
  color: #e8e8e8;
  text-decoration: none;
}

.dentoria-led-ticker-link:hover .dentoria-led-ticker-icon,
.dentoria-led-ticker-link:hover .dentoria-led-ticker-sep,
.dentoria-led-ticker-link:focus .dentoria-led-ticker-icon,
.dentoria-led-ticker-link:focus .dentoria-led-ticker-sep {
  opacity: 1;
}

.dentoria-led-ticker-track {
  display: flex;
  width: max-content;
  animation: dentoria-led-ticker-scroll 40s linear infinite;
}

.dentoria-led-ticker-wrap:hover .dentoria-led-ticker-track {
  animation-play-state: paused;
}

/* Поместување за една единица (1 / N копии) → ист изглед при reset = непрекинат loop */
@keyframes dentoria-led-ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / var(--ticker-copies, 6)));
  }
}

@media (max-width: 782px) {
  .dentoria-led-ticker-wrap {
    font-size: 0.9rem;
    padding: 0.5em 0;
  }
}
