#epp-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
#epp-popup {
    position: relative;
}
#epp-close {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 24px;
    background: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    z-index: 10000;
}
#epp-countdown {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
}
.timer-box {
    background: yellow;
    padding: 5px 8px;
    border-radius: 8px;
    font-weight: bold;
}
