.wlc-btn {
    padding: 12px 25px;
    background: linear-gradient(45deg,#ED3237,#3E3E3E);
    border: none;
    border-radius: 100px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}
.wlc-btn:hover { opacity: 0.85; }

.wlc-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
}
.wlc-modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: fadeInUp 0.3s ease;
}
.wlc-close {
    float: right;
    font-size: 22px;
    cursor: pointer;
}
.wlc-form input, .wlc-form button {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
}
.wlc-submit {
    background: #ED3237;
    color: #fff;
    border: none;
    cursor: pointer;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
