    /* Banner container */
    .top-banner {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: #ff4d4d; /* Red background */
      color: white;
      font-weight: bold;
      overflow: hidden;
      height: 40px;
      display: flex;
      align-items: center;
      z-index: 9999;
    }

    /* Scrolling text */
    .scrolling-text {
      display: inline-block;
      padding-left: 100%;
      white-space: nowrap;
      animation: scroll-left 30s linear infinite;
    }

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

    /* Close button */
    .close-banner {
      position: absolute;
      right: 10px;
      background: none;
      border: none;
      color: white;
      font-size: 20px;
      cursor: pointer;
    }