.vpc-07edd29f-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    white-space: nowrap;
    user-select: none;
    cursor: grab;
}

.vpc-07edd29f-wrapper:active {
    cursor: grabbing;
}

.vpc-07edd29f-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: max-content;
}

.vpc-07edd29f-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateZ(0); /* Hardware accel */
}

/* Aspect Ratios based on height */
.vpc-07edd29f-item.ratio-4-3 {
    aspect-ratio: 4 / 3;
}

.vpc-07edd29f-item.ratio-3-4 {
    aspect-ratio: 3 / 4;
}

.vpc-07edd29f-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.5s ease;
}

.vpc-07edd29f-placeholder {
    width: 100%;
    height: 100%;
    background: #333;
}

/* Minimal Play Button */
.vpc-07edd29f-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 3;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.vpc-07edd29f-play-button svg {
    width: 20px;
    height: 20px;
    margin-left: 2px; /* slight visual center offset for play icon */
}

/* Updated Overlay - Permanent, Bottom, Gradient */
.vpc-07edd29f-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Gradient for better text readability */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 30px 20px 20px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    z-index: 2;
    opacity: 1; /* Always visible */
    pointer-events: none; /* Let clicks pass to video if needed */
}

.vpc-07edd29f-title {
    color: #fff;
    margin: 0;
    font-size: 18px;
    font-weight: 500; /* Medium weight */
    font-family: 'Delight-Medium', sans-serif; /* Fallback to sans-serif */
    letter-spacing: 0.5px;
    text-align: left;
    transform: none; /* Removed hover transform */
    transition: color 0.3s ease;
}

/* Hover Interactions */
.vpc-07edd29f-item:hover .vpc-07edd29f-video {
    opacity: 1;
    transform: scale(1.03); /* Slightly reduced scale for elegance */
}

.vpc-07edd29f-item:hover .vpc-07edd29f-play-button {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
}
