.uc-wrap {
    background: #FFF9E5;
    background-image: none;
    padding: 60px 20px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    user-select: none;
}

.uc-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 680px;
    height: 520px;
}

.uc-card {
    position: absolute;
    width: 210px;
    height: 390px;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(.34,1.2,.64,1), opacity 0.45s ease, box-shadow 0.45s ease;
    cursor: pointer;
    will-change: transform;
}

.uc-card::after {
    content: '';
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 5px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    z-index: 10;
    pointer-events: none;
}

.uc-card img,
.uc-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.uc-card.pos-left {
    opacity: 0.65;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 2px solid #000;
}

.uc-card.pos-center {
    transform: translateX(0) rotate(0deg) scale(1);
    opacity: 1;
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2), 0 8px 20px rgba(0,0,0,0.15);
    border: 2px solid #000;
}

.uc-card.pos-right {
    opacity: 0.65;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 2px solid #000;
}

.uc-card.pos-left:hover,
.uc-card.pos-right:hover {
    opacity: 0.85;
    z-index: 2;
}

.uc-dots {
    display: flex;
    gap: 7px;
    margin-top: 28px;
}

.uc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.uc-dot.on {
    background: #f72585;
    width: 22px;
    border-radius: 4px;
}

.uc-arrows {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.uc-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.2);
    color: #000;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.uc-btn:hover {
    background: #f72585;
    border-color: #f72585;
    transform: scale(1.06);
}

@media (max-width: 600px) {
    .uc-stage { height: 420px; }
    .uc-card  { width: 170px; height: 310px; }
}
