
#awl-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px);
    z-index: 999999; display: flex; align-items: center; justify-content: center;
}
#awl-popup {
    background: #fff; padding: 40px; border-radius: 15px; width: 90%; max-width: 400px;
    position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.3); text-align: center;
}
#awl-close {
    position: absolute; top: 15px; right: 20px; font-size: 28px; cursor: pointer; color: #aaa;
}
#awl-popup h2 { font-size: 24px; margin-bottom: 25px; color: #333; font-weight: 500; }
.awl-field { margin-bottom: 15px; }
#awl-popup input {
    width: 100%; padding: 14px; border: 1px solid #e0e0e0; border-radius: 8px; font-size: 16px; outline: none;
}
#awl-submit {
    width: 100%; padding: 16px; background: #54a8c1; color: #fff; border: none;
    border-radius: 8px; font-size: 16px; font-weight: bold; cursor: pointer; transition: background 0.3s;
}
#awl-submit:hover { background: #2f697a; }