    
        .tilda-marquee-container {
            width: 100%;
            background: #111;
            padding: 30px 0;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border-top: 2px solid #ffcc00;
            border-bottom: 2px solid #ffcc00;
            margin: 40px 0;
        }
        
        .tilda-marquee-track {
            display: flex;
            white-space: nowrap;
            will-change: transform;
        }
        
        .tilda-marquee-text {
            color: #fff;
            font-size: 24px;
            font-weight: bold;
            padding: 0 35px;
            position: relative;
            display: flex;
            align-items: center;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
            white-space: nowrap;
        }
        
        .tilda-marquee-text:after {
            content: "•";
            position: absolute;
            right: 0;
            color: #ffcc00;
            font-size: 20px;
        }
        
        .tilda-marquee-text:last-child:after {
            display: none;
        }
        
        .tilda-marquee-text i {
            color: #ffcc00;
            margin-right: 10px;
            font-size: 20px;
        }
        
        @media (max-width: 768px) {
            .tilda-marquee-text {
                font-size: 18px;
                padding: 0 25px;
            }
        }
        
        @media (max-width: 480px) {
            .tilda-marquee-text {
                font-size: 16px;
                padding: 0 15px;
            }
            
            .tilda-marquee-text:after {
                font-size: 16px;
            }
            
            .tilda-marquee-container {
                padding: 20px 0;
            }
        }
    