.rp-ticker {
    --rp-ticker-bg: #0c0c12;
    --rp-ticker-gold: #ffb800;
    --rp-ticker-gold-light: #ffce47;
    --rp-ticker-muted: #9698a8;
    --rp-ticker-name: #c9cad6;
    --rp-ticker-line: rgba(255, 255, 255, 0.07);
    background: var(--rp-ticker-bg);
    border-bottom: 1px solid var(--rp-ticker-line);
    color: var(--rp-ticker-muted);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 12.5px;
    line-height: 1.6;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.rp-ticker *,
.rp-ticker *::before,
.rp-ticker *::after {
    box-sizing: border-box;
}

.rp-ticker__viewport {
    overflow: hidden;
}

.rp-ticker__track {
    animation: rp-ticker-scroll var(--rp-ticker-duration, 34s) linear infinite;
    display: flex;
    width: max-content;
    will-change: transform;
}

.rp-ticker:hover .rp-ticker__track,
.rp-ticker:focus-within .rp-ticker__track {
    animation-play-state: paused;
}

.rp-ticker__group {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
    min-width: 100vw;
    padding: 9px 0;
    white-space: nowrap;
    width: max-content;
}

.rp-ticker__label {
    align-items: center;
    color: var(--rp-ticker-gold);
    display: inline-flex;
    flex: 0 0 auto;
    font-family: Montserrat, Inter, system-ui, sans-serif;
    font-size: 12px;
    font-weight: 700;
    gap: 7px;
    padding: 0 16px;
    text-transform: uppercase;
}

.rp-ticker__live {
    animation: rp-ticker-blink 1.4s infinite;
    background: #ef4444;
    border-radius: 50%;
    display: inline-block;
    height: 7px;
    width: 7px;
}

.rp-ticker__winner {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    gap: 8px;
    padding: 4px 14px;
}

.rp-ticker__name {
    color: var(--rp-ticker-name);
}

.rp-ticker__amount {
    color: var(--rp-ticker-gold-light);
    font-family: Montserrat, Inter, system-ui, sans-serif;
    font-weight: 700;
}

@keyframes rp-ticker-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes rp-ticker-blink {
    50% {
        opacity: 0.3;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rp-ticker__viewport {
        overflow-x: auto;
    }

    .rp-ticker__track,
    .rp-ticker__live {
        animation: none;
    }
}

