:root {
    --nouram-red: #C70039;
    --nouram-yellow: #FFC300;
}

.nouram-login-popup__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.nouram-login-popup__card {
    width: 100%;
    max-width: 410px;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.24);
    animation: nouramPopupIn 0.25s ease-out;
    position: relative;
}

.nouram-login-popup__x {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 3;
}

.nouram-login-popup__head {
    background: linear-gradient(135deg, var(--nouram-red), var(--nouram-yellow));
    padding: 22px;
    color: #fff;
}

.nouram-login-popup__tag {
    background: rgba(255,255,255,0.2);
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 700;
}

.nouram-login-popup__title {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    line-height: 1.15;
}

.nouram-login-popup__title span {
    color: #fff5d0;
}

.nouram-login-popup__subtitle {
    font-size: 13px;
    margin-top: 10px;
    line-height: 1.6;
}

.nouram-login-popup__body {
    padding: 20px;
}

.nouram-login-popup__reward {
    background: #fff4d6;
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid #ffe08a;
}

.nouram-login-popup__reward-amount {
    font-weight: 800;
    font-size: 18px;
    line-height: 1.2;
    color: #7c2a00;
}

.nouram-login-popup__reward-note {
    font-size: 12px;
    margin-top: 4px;
    color: #7a5a00;
}

.nouram-google-official-btn--popup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 46px;
    padding: 12px 16px 12px 12px;
    background: #ffffff;
    color: #1f1f1f;
    text-decoration: none;
    border-radius: 16px;
    border: 1px solid #dadce0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    font-weight: 700;
    font-size: 14px;
    transition: all 0.25s ease;
}

.nouram-google-official-btn--popup:hover {
    transform: translateY(-1px);
    background: #fcfcfc;
    box-shadow: 0 6px 16px rgba(0,0,0,0.10);
}

.nouram-google-official-btn__icon-wrap {
    width: 22px;
    height: 22px;
    min-width: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nouram-google-official-btn__icon {
    width: 18px;
    height: 18px;
    display: block;
}

.nouram-login-popup__benefits {
    margin-top: 16px;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.7;
    color: #333;
}

.nouram-login-popup__note {
    font-size: 11px;
    text-align: center;
    margin-top: 12px;
    color: #666;
    line-height: 1.6;
}

@keyframes nouramPopupIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}