.hstp-wrapper {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    position: relative;
}

.hstp-wrapper.top {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.hstp-wrapper.bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
}

.hstp-track {
    display: flex;
    width: max-content;
    animation-name: hstp-scroll;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.hstp-content {
    padding: 0 60px;
}

/* Smooth Infinite Loop */
@keyframes hstp-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Responsive Schriftgrößen */
@media (max-width: 1024px) {
    .hstp-wrapper {
        font-size: var(--hstp-size-tablet);
    }
}

@media (max-width: 767px) {
    .hstp-wrapper {
        font-size: var(--hstp-size-mobile);
    }
}
