.news-ticker {
  display: flex;
  align-items: center;
  background: #c40000;
  color: #fff;
  height: 40px;
  overflow: hidden;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.news-label {
  background: #900000;
  padding: 0 15px;
  font-weight: bold;
  white-space: nowrap;
}

.news-content {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: tickerMove 35s linear infinite;
}

.news-content span {
  margin-right: 60px;
}

@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}