.lg-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lg-modal {
    background: white;
    border-radius: 12px;
    padding: 32px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lg-modal.lg-modal-show {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.lg-modal-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.lg-modal-icon svg {
    width: 56px;
    height: 56px;
}

.lg-modal-title {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.lg-modal-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #666;
    text-align: center;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.lg-modal-question {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-align: center;
    line-height: 1.5;
    margin: 0 0 24px 0;
}

.lg-modal-actions {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.lg-modal-btn {
    font-family: 'Inter', sans-serif;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    width: 100%;
}

.lg-modal-btn-primary {
    background: #a1907d;
    color: white;
    box-shadow: 0 2px 8px rgba(161, 144, 125, 0.3);
}

.lg-modal-btn-primary:hover {
    background: #8a7c69;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(161, 144, 125, 0.4);
}

.lg-modal-btn-primary:active {
    transform: translateY(0);
}

.lg-modal-btn-secondary {
    background: #f5f5f5;
    color: #333;
    border: 2px solid #e0e0e0;
}

.lg-modal-btn-secondary:hover {
    background: #ebebeb;
    border-color: #d0d0d0;
    color: #a1907d;
}

@media (max-width: 600px) {
    .lg-modal {
        padding: 24px 20px;
        max-width: calc(100vw - 40px);
    }
    
    .lg-modal-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .lg-modal-title {
        font-size: 19px;
    }
    
    .lg-modal-text,
    .lg-modal-question {
        font-size: 14px;
    }
    
    .lg-modal-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .lg-modal-actions {
        gap: 10px;
    }
}