    .controls {
      text-align: center;
      margin-bottom: 15px;
    }
    select, button {
      margin: 0 10px;
      padding: 6px 12px;
      font-size: 0.5em;
      border-radius: 4px;
      border: none;
    }
    .ticker-wrapper {
      overflow: hidden;
      background: #1e1e1e;
      border: 2px solid #333;
      border-radius: 8px;
      padding: 15px;
      box-sizing: border-box;
    }
    .ticker-track {
      display: flex;
      width: max-content;
      animation: scroll-loop 700s linear infinite;
    }
    .ticker-track.paused {
      animation-play-state: paused;
    }
    .ticker, .ticker.clone {
      display: flex;
      white-space: nowrap;
    }
    .headline {
      display: inline-block;
      margin-right: 60px;
    }
    .headline a {
      color: #66ccff;
      text-decoration: none;
    }
    .headline a:hover {
      text-decoration: underline;
    }
    .source {
      display: block;
      font-size: 0.8em;
      color: #ffcc00;
      margin-top: 4px;
    }
    @keyframes scroll-loop {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
  