.modal {
    background: var(--bg-light);
    border: 2px solid var(--pro-secondary);
    border-radius: 10px;
    padding: 40px 36px;
    width: 100%;
    max-width: 460px;
    margin: auto;
    position: fixed;
    transition: opacity 0.3s;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}

.modal::backdrop {
    background: rgba(0,0,0,0.6);
}

.modal header {
    margin-bottom: 30px;
}

.modal header h1 {
    font-size: 1.2em !important;
}

.modal-close {
    background: var(--pro-danger);
    color: var(--white);
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

.btn-primary-modal {
    background: rgba(0,0,0,0.07);
    color: var(--pro-gray);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.8em !important;
    text-transform: uppercase !important;
}

.btn-primary-modal:hover {
    background: #00c0ad;
    color: rgba(255,255,255,0.9) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 217, 195, 0.3);
}

.btn-secondary-modal {
    background: var(--pro-secondary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1em !important;
    text-transform: uppercase !important;
}

.btn-secondary-modal:hover {
    background: var(--pro-primary);
    color: var(--pro-secondary) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 217, 195, 0.3);
}