/* MODAL STYLES */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 10% auto;
    padding: 2.5rem;
    border: 1px solid #DC2626;
    width: 90%;
    max-width: 450px;
    border-radius: 16px;
    position: relative;
    text-align: center;
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.2);
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    color: #9ca3af;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #fff;
}

.modal-header h2 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.modal-header p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.modal-form input {
    width: 100%;
    padding: 14px;
    margin-bottom: 1rem;
    background: #000;
    border: 1px solid #333;
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
}

.modal-form input:focus {
    border-color: #DC2626;
    outline: none;
}

.modal-submit {
    width: 100%;
    padding: 14px;
    background: #DC2626;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.2s, background 0.3s;
}

.modal-submit:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}