

.scroller-section {
    position: relative;
    padding: 40px 0;
    margin-bottom: 100px;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 5;
    overflow: hidden;
}

.scroller-label {
    text-align: center;
    font-size: 0.7rem;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.8;
}

.scroller-wrap {
    width: 100%;
    overflow: hidden;
    display: flex;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.scroller-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scrollServers 60s linear infinite;
}

.scroller-track span {
    font-family: var(--font-main);
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 40px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
}

.scroller-track span::after {
    content: '•';
    position: absolute;
    right: -45px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.5;
    -webkit-text-stroke: 0;
}

.scroller-track span:hover {
    color: #fff;
    -webkit-text-stroke: 1px #fff;
    text-shadow: 0 0 30px var(--primary-glow);
    transform: scale(1.05);
}

@keyframes scrollServers {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .scroller-track span {
        font-size: 2rem;
        margin: 0 20px;
    }
    .scroller-track span::after {
        right: -25px;
    }
}