.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #1e1e1e;
    color: white;
    width: 320px;
    padding: 25px;
    border-radius: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.modal-content h2 {
    margin-bottom: 15px;
    font-size: 22px;
}

.modal-content input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: none;
    outline: none;
}

.modal-content button {
    width: 100%;
    padding: 10px;
    background: #e11d48;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.modal-content button:hover {
    background: #be123c;
}
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #aaa;
}

.close:hover {
    color: white;
}