.hw-guest-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.hw-guest-modal-content {
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: hwModalFadeIn 0.3s ease-out;
}

.hw-guest-modal-content h3 {
    margin-top: 0;
    color: #d9534f;
    font-size: 22px;
}

.hw-guest-modal-content p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #444;
    line-height: 1.5;
}

#hw-guest-redirect-btn {
    background: #007cba;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
    width: 100%;
}

#hw-guest-redirect-btn:hover {
    background: #005a87;
}

@keyframes hwModalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}