#uctov {
    position: fixed;
    inset: 0;
    background: rgba(5, 46, 22, .78);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: uctFi .3s ease;
}

@keyframes uctFi {
    from { opacity: 0; }
    to   { opacity: 1; }
}

#uctcard {
    background: #fff;
    border-radius: 24px;
    padding: 36px 32px 28px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 80px rgba(5, 46, 22, .3), 0 4px 16px rgba(0,0,0,.08);
    animation: uctSu .32s cubic-bezier(.4, 0, .2, 1);
    position: relative;
}

@keyframes uctSu {
    from { transform: translateY(22px) scale(.97); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
}

#ucticon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #052e16;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 8px 24px rgba(5, 46, 22, .25);
}

#ucttitle {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #0a1a0d;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.28;
}

#ucttext {
    font-size: 14.5px;
    color: rgba(5, 46, 22, .52);
    line-height: 1.85;
    margin-bottom: 22px;
    font-weight: 300;
}

.uct-progress {
    width: 100%;
    height: 3px;
    background: rgba(5, 46, 22, .08);
    border-radius: 2px;
    margin-bottom: 22px;
    overflow: hidden;
}

.uct-progress-fill {
    height: 100%;
    background: #052e16;
    border-radius: 2px;
    transition: width .35s cubic-bezier(.4, 0, .2, 1);
}

.uct-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 22px;
}

.uct-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(5, 46, 22, .12);
    cursor: pointer;
    transition: background .2s, transform .2s;
    border: none;
    padding: 0;
    flex-shrink: 0;
}

.uct-dot.active {
    background: #052e16;
    transform: scale(1.3);
}

.uct-dot:hover:not(.active) {
    background: rgba(5, 46, 22, .25);
}

.uct-acts {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.uct-main {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #052e16;
    color: #a7f3d0;
    border-radius: 99px;
    padding: 11px 24px;
    font-size: 13.5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .2s, transform .15s;
    text-decoration: none;
}

.uct-main:hover {
    background: #14532d;
    transform: translateY(-1px);
}

.uct-skip {
    background: transparent;
    border: none;
    color: rgba(5, 46, 22, .35);
    font-size: 13px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    padding: 10px 14px;
    border-radius: 99px;
    transition: color .2s, background .2s;
}

.uct-skip:hover {
    color: #052e16;
    background: rgba(5, 46, 22, .05);
}

.uct-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 1.5px solid rgba(5, 46, 22, .14);
    color: rgba(5, 46, 22, .55);
    border-radius: 99px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background .2s, border-color .2s;
}

.uct-cta:hover {
    background: rgba(5, 46, 22, .05);
    border-color: rgba(5, 46, 22, .25);
}

.uct-step-tag {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(5, 46, 22, .3);
    margin-bottom: 18px;
}

@media (max-width: 520px) {
    #uctcard {
        padding: 28px 20px 22px;
        border-radius: 18px;
    }

    #ucttitle {
        font-size: 19px;
    }

    #ucttext {
        font-size: 13.5px;
    }
}
