.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: #e77575;
  color: white;
  padding: 5px 0; /* Уменьшено для большего текста */
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 28px; /* Буквы выше */
  text-transform: uppercase;
  line-height: 1.2; /* Текст на весь фон по высоте */
  letter-spacing: 2px;
  word-spacing: 8px;
  display: flex;
  align-items: center; /* Вертикальное центрирование */
  height: 50px; /* Фиксированная высота контейнера */
}

.marquee-text {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

.marquee-container:hover .marquee-text {
  animation-play-state: paused;
}

/* Мобильная адаптивность */
@media (max-width: 768px) {
  .marquee-container {
    font-size: 24px;
    padding: 4px 0;
    height: 45px;
    letter-spacing: 1.5px;
    word-spacing: 6px;
  }
  .marquee-text {
    animation-duration: 15s;
  }
}

@media (max-width: 480px) {
  .marquee-container {
    font-size: 20px;
    padding: 3px 0;
    height: 40px;
    letter-spacing: 1px;
    word-spacing: 4px;
  }
}
