/* Redirect Modal Styles */
.nenghui-redirect-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nenghui-redirect-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nenghui-redirect-modal {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    border-radius: 16px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.nenghui-redirect-modal-overlay.active .nenghui-redirect-modal {
    transform: translateY(0);
}

.nenghui-redirect-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.nenghui-redirect-message {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.nenghui-redirect-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.nenghui-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    outline: none;
}

.nenghui-btn-primary {
    background: #007cba;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.2);
}

.nenghui-btn-primary:hover {
    background: #006ba1;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 124, 186, 0.3);
}

.nenghui-btn-secondary {
    background: rgba(255, 255, 255, 0.5);
    color: #555;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.nenghui-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #333;
}
