.ticker-bar {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: black;
    color: #fff;
    overflow: hidden;
    font-size: 16px;
    padding: 10px 0;
    padding-left: 60px; /* 👈 Add this */
  }
  
  .ticker-label {
    flex: 0 0 auto;
    background-color: #ff4d4f; /* Accent red or brand color */
    color: #fff;
    padding: 8px 16px;
    font-weight: bold;
    font-family: 'Segoe UI', sans-serif;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    margin-right: 10px;
  }
  
  .ticker-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
  }
  
  .ticker-items {
    display: inline-block;
    white-space: nowrap;
    animation: tickerScroll 20s linear infinite;
  }
  
  .ticker-item {
    display: inline-block;
    margin: 0 50px;
    font-weight: 500;
  }
  
  @keyframes tickerScroll {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  