/* Smooth Right to Left Scroll */
    @keyframes scroll-rtl { 
      0% { transform: translateX(0); } 
      100% { transform: translateX(-50%); } 
    }
    
    .marquee-container { 
      display: flex; 
      width: max-content; 
      animation: scroll-rtl 90s linear infinite; 
    }
    
    .marquee-text { 
      padding: 0 10px; 
      white-space: nowrap; 
      display: flex; 
      align-items: center; 
    }
    
    /* The 3x3 Square-Dot Separator */
    .dot-square { 
      width: 14px; 
      height: 14px; 
      margin: 0 40px; 
      display: inline-block;
      background-image: radial-gradient(#555 1.5px, transparent 1.5px);
      background-size: 5px 5px;
    }

    @media (max-width: 768px) {
      .marquee-container { animation-duration: 50s; }
      .marquee-text { font-size: 14px !important; }
      div[style*="height: 80px"] { height: 60px !important; }
    }