.rh-showcase-container {
    width: 100%;
    margin: 60px 0;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    overflow: hidden;
}

.rh-showcase-headline {
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 800;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #2c3e50 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Outfit', 'Inter', sans-serif;
}

.rh-counter {
    display: inline-block;
}

.rh-slider-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* Gradient fade effects at edges */
.rh-slider-wrap::before,
.rh-slider-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.rh-slider-wrap::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.rh-slider-wrap::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.rh-slider-track {
    display: flex;
    width: max-content;
    animation: scroll-right linear infinite;
    gap: 80px;
    align-items: center;
}

.rh-slider-track:hover {
    animation-play-state: paused;
}

.rh-logo-item {
    flex: 0 0 auto;
    width: 180px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rh-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.rh-logo-item img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Support for dark mode if theme has it */
[data-theme="dark"] .rh-slider-wrap::before {
    background: linear-gradient(to right, #1a1a1a 0%, rgba(26, 26, 26, 0) 100%);
}

[data-theme="dark"] .rh-slider-wrap::after {
    background: linear-gradient(to left, #1a1a1a 0%, rgba(26, 26, 26, 0) 100%);
}

[data-theme="dark"] .rh-showcase-headline {
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}