/* ================================
   REPLAY OVERLAY
================================ */
#uug-replay-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.15);
    backdrop-filter: blur(1px);
}

#uug-replay-overlay.show {
    display: flex;
}

.uug-replay-card {
    width: min(92%, 420px);
    padding: 26px 22px;
    border-radius: 18px;
    text-align: center;
    background: linear-gradient(135deg,#16a34a,#22c55e);
    box-shadow: 0 25px 60px rgba(0,0,0,.4);
}

.uug-replay-title {
    font-size: 22px;
    font-weight: 900;
    color: #fde047;
    margin-bottom: 14px;
}

.uug-replay-guest p {
    font-size: 14px;
    color: #fff;
    opacity: .9;
}

.uug-replay-guest strong {
    color: #ffffff;
}

.uug-replay-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 18px;
}

.uug-btn-again,
.uug-btn-other {
    border: none;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.uug-btn-again { 
    background:#fde047; 
}

.uug-btn-other { 
    background:#38bdf8; 
    color:#fff; 
}


/* ================================
   GET READY OVERLAY (FINAL)
================================ */
#uug-get-ready-overlay{
    position: fixed;
    inset: 0;
    z-index: 999998; /* below replay, above page */
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.15);
    backdrop-filter: blur(1px);
}

#uug-get-ready-overlay.show{
    display:flex;
}

.uug-get-ready-card{
    width: min(92%, 420px);
    padding: 22px;
    border-radius: 16px;
    text-align:center;
    background: linear-gradient(135deg,#16a34a,#22c55e);
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
    color:#fff;
    font-weight:700;
}



#uug-get-ready-text strong {
    color: #fde047;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 0.5px;
}
