#hlgp-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
#hlgp-modal {
    background: #fff;
    padding: 20px 30px;
    width: 400px;
    max-width: 90%;
    border-radius: 8px;
    position: relative;
    font-family: Helvetica, Arial, sans-serif;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    border-top: 4px solid #3498db;
    outline: 2px solid rgba(52,152,219,0.25);
}
.hlgp-accent-bar {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: #3498db;
    border-radius: 8px 8px 0 0;
}
.hlgp-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #888;
    transition: color 0.3s;
}
.hlgp-close:hover { color: #3498db; }
.hlgp-logo {
    max-width: 120px;
    margin: 10px auto;
    display: block;
}
.hlgp-text {
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.6;
}
#hlgp-form label {
    display: block;
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}
#hlgp-form input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: none;
    border-radius: 7px;
    background: #F5F5F5;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
}
#hlgp-form input:focus {
    box-shadow: 0 0 5px rgba(52,152,219,0.4);
}
#hlgp-form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #3498db, #2c80b9);
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}
#hlgp-form button:hover {
    background: linear-gradient(135deg, #2c80b9, #1f5d85);
}
.hlgp-text a {
    color: #3498db;
    text-decoration: underline;
}
.hlgp-text a:hover {
    color: #2c80b9;
}
